Jump to content

rahulpragma

Members
  • Posts

    4
  • Joined

  • Last visited

rahulpragma's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The problem is that, Server doesn't not able to open this url: https://gw1.cardsaveonlinepayments.com:4430/ OR https://gw3.cardsaveonlinepayments.com:4430/?WSDL When you run this url from your browser then it would work and show you some kind of data like: "GetCardType CardDetailsTransaction CrossReferenceTransaction ThreeDSecureAuthentication" But when we try open the url using script then server show warning: "failed to open stream: Connection refused" Same error with cURL, SOAP or fopen. Please check here: http://thelightroomclothing.com/log/test.php Port 4430 is enable on server. I am not sure which settings to ajdust on server to make it work. Please share your experience if you could help.
  2. Strange Issue : Magento Block not rendering/Instantiating only in IE10 but works in all other browsers and IE versions Magento Block not rendering/Instantiating only in IE10 but works in all other browsers and IE versions I am using a extension 1 step checkout for magento. When user add a product in shopping cart, it redirect user directly to Checkout page and extension's checkout page is renders fine in all browsers including Chrome, Firefox, IE7, IE8, IE9. It looks like this: http://screencast.com/t/7NPPRF5jdJPj But when I check it in IE10, it shows me old magento default checkout page: http://screencast.com/t/xSkEUSv2D No cache issue. Here is url: devappliances4you.com.au/checkout/onepage/ (you need to add a product to see checkout form) Can anybody help me with this? Thank you in advance!
  3. REF: https://en.wikipedia.org/wiki/Content_delivery_network A content delivery network or content distribution network is a system of computers where our website is stored so it’s data (images/videos) can be served from multiple locations. However I dont want to use any online paid/unpaid CDN services but would like to setup CDN on my own high speed server. I did google a lot but dont see any such CDN script which i can install on my server. I am looking for such script which can support High level cache-control. Can you please share if you know any good CDN script developed in PHP? Thanks in advance.
  4. Hello, I tried to create a SOAP request but could not succeed. SOAP WADL url is http://www.mobipost.com.au/httpapi/Messaging.asmx?WSDL AND request should be like: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <AuthenticationHeader xmlns="http://messaging.mobipostapi.thirdscreen.com.au/"> <UserName>SAMPLE_USER</UserName> <Password>SAMPLE_PASS</Password> </AuthenticationHeader> </soap:Header> <soap:Body> <SendSMSToContacts xmlns="http://messaging.mobipostapi.thirdscreen.com.au/"> <oSMS> <MessageText>THIS IS MESSAGE</MessageText> </oSMS> <ContactIDs> <int>123456789</int> <int>987654321</int> </ContactIDs> </SendSMSToContacts> </soap:Body> </soap:Envelope> I tried: $url = 'http://www.mobipost.com.au/httpapi/Messaging.asmx?WSDL'; $client = new SoapClient($url); $result = $client->AuthenticationHeader(array('UserName' => 'SAMPLE_USER','Password' => 'SAMPLE_PASS')); $result = $client->SendSMSToContacts(array('MessageText' => 'THIS IS MESSAGE')); $result = $client->ContactIDs(array('123456789', '987654321')); But it shows Error: Fatal error: Uncaught SoapFault exception: [Client] Function ("AuthenticationHeader") is not a valid method for this service in D:\xampp\htdocs\globalmobile\send_message_v2.php:26 Stack trace: #0 D:\xampp\htdocs\globalmobile\send_message_v2.php(26): SoapClient->__call('AuthenticationH...', Array) #1 D:\xampp\htdocs\globalmobile\send_message_v2.php(26): SoapClient->AuthenticationHeader(Array) #2 {main} thrown in D:\xampp\htdocs\globalmobile\send_message_v2.php on line 26 Can you please help me to create valid SOAP request to communicate with WSDL server? Thank you in advance.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.