Archive

Posts Tagged ‘wsdl’

Magento Soap Errors With Cybersource Gateway

February 1st, 2012 Comments off

Just recently, our client has been getting SOAP errors when processing payments through the CyberSource payment gateway. The error is as follows:

Payment transaction failed.

Reason
SOAP-ERROR: Parsing WSDL: Couldn’t load from ‘https://ics2ws.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.26.wsdl’ : failed to load external entity “https://ics2ws.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.26.wsdl”

I need someone that can go into this and tr…

Fedex Shipping Api Error

January 25th, 2012 Comments off

Since we move our php ecommerce site(codeignitor) to new host, our fedex module stopped working.

Click on Create label button to get the error .

We have installed the following on the server still it did not work

–enable-soap’ ‘–enable-sockets’ ‘–enable-wddx’ ‘–

soap
Soap Client enabled
Soap Server enabled

Directive Local Value Master Value
soap.wsdl_cache 1 1
soap.wsdl_cache_dir /tmp /tmp
soap.wsdl_cache_enabled 1 1
soap.wsdl_cache_limit 5 5
soap.wsdl_cache_tt…

Php Web Service 2

November 14th, 2011 Comments off

I am attempting to get a php web service up and running. I got an example php web service php file from the web. This part works, when I send the following URL “http://www.xxxxxxx.com/dbaccess.php?type=read& user=46229436922& software=email” to the php file the correct info shows on the web browser window.
The following is what I can’t get right.
1. I need a wsdl file that work with the above web service. For retrieving data from a database.
2. The php web service above must be changed so its a…

Categories: Delphi, PHP Tags: , , , , , ,

Php Web Service

November 9th, 2011 Comments off

I am attempting to get a php web service up and running. I got an example php web service php file from the web. This part works, when I send the following URL “http://www.xxxxxxx.com/dbaccess.php?type=read& user=46229436922& software=email” to the php file the correct info shows on the web browser window.
The following is what I can’t get right.
1. I need a wsdl file that work with the above web service. For retrieving data from a database.
2. The php web service above must be changed so its able to accept data also to write to the database. Also with a wsdl file.

I need the wsdl file to be correct for it to connect to a Delphi project. All php and wsdl files are linked to the project.

This php web service project is meant to be an example project so I can develop it further.

Categories: Delphi, PHP Tags: , , , , , ,

Wsdl Api

September 18th, 2011 Comments off

Hi,

I need an WSDL API created for my affiliate network so I can download leads from another affiliate network and process each lead.

API Docs

http://luckypacificnetworks.com/affiliates/api/2/reports.asmx?op=Conversions

http://luckypacificnetworks.com/affiliates/api/3/reports.asmx?op=Conversions

http://luckypacificnetworks.com/affiliates/api/4/reports.asmx?op=Conversions

Soap Problems With Magento

November 19th, 2009 Comments off

We have had soap working with magento but has suddenly stopped working and causing errors in our script.

making this call twice seemed to fix the problem to the proxy and sessionID

<?
//$proxy = new SoapClient(‘http://www.xxx.co.uk/api/soap/?wsdl’, array(‘trace’=>1));
$proxy = new SoapClient(‘http://www.xxx.co.uk/api/soap/?wsdl’);
$sessionId = $proxy->login(‘xxx’, ‘xxx’);

$row_rsGetOrderInfo=$proxy->call($sessionId, ‘sales_order.info’, 100000324);
$trackitem_shipmethod=$row_rsGetOrderInfo[shipping_description];
echo “SHIP METHOD: $trackitem_shipmethod<BR><BR>”;

//try { $row_rsGetOrderInfo=$proxy->call($sessionId, ‘sales_order.info’, 100000319); } catch(SoapFault $soapFault){

//echo “<br><br>Fault: ” . var_dump($soapFault);
//echo “<br><br>Request :<br>”, htmlentities($proxy->__getLastRequest()), “<br>”;
//echo “<br><br>Response :<br>”, htmlentities($proxy->__getLastResponse()), “<br>”;

//}

//$proxy = new SoapClient(‘http://www.xxx.co.uk/api/soap/?wsdl’);
//$sessionId = $proxy->login(‘xxx’, ‘xxx’);

$row_rsGetOrderInfo=$proxy->call($sessionId, ‘sales_order.info’, 100000324);
$trackitem_shipmethod=$row_rsGetOrderInfo[shipping_description];
echo “SHIP METHOD: $trackitem_shipmethod<BR><BR>”;

?>

We then discovered last night that reinstantiate the SoapClient Object worked but today we have new / more problems with getting soap to work which previously worked:

Just worked out that I only need to reinstantiante the SoapClient object for it to work. I dont even need to log back in to the session.
i.e. I can do this first:
$proxy = new SoapClient(‘http://www.xxx.co.uk/api/soap/?wsdl’);
$sessionId = $proxy->login(‘xxx’, ‘xxx’);
Then execute a query:
try { $countries = $proxy->call($sessionId, ‘country.list’); } catch(Exception $e){ echo “<BR>ERROR Code : ” . $e->getCode() . “: ” . $e->getMessage(); }
Next time I just:
$proxy = new SoapClient(‘http://www.xxx.co.uk/api/soap/?wsdl’);
then execute another query.
And this works.
Are you there?
I’ve just recoded all that – run 5 test orders through successfully.
Noticed a small error with the order comments which I fixed.
Went to retest a single order and now getting a different error:
ERROR Code : 0: SOAP-ERROR: Parsing WSDL: Couldn’t load from ‘http://www.xxx.co.uk/api/soap/?wsdl’

Wsdl File

November 12th, 2009 Comments off

I have a wsdl file that has to be corrected so it generates no errors when parsed in Eclipse.
I need it to be corrected fast.
I will provide the interface specs (there are 2 methods only).

Categories: Java, JSP, XML Tags: , , ,

Php Wsdl Xml Get & Parse

September 8th, 2009 Comments off

Need to pull xml array from web service, parse result & write to file. Already have documentation Pdf (attached).

Here is snippet web service xml response:

<wsdl:definitions targetNamespace=”http://somedomain.org/”>

<wsdl:types>

<s:schema elementFormDefault=”qualified” targetNamespace=”http://somedomain.org/”>

<s:element name=”GetCurrencyList”>
<s:complexType/>
</s:element>

<s:element name=”GetCurrencyListResponse”>

<s:complexType>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”GetCurrencyListResult” type=”tns:ArrayOfCurrency”/>
</s:sequence>
</s:complexType>
</s:element>

<s:complexType name=”ArrayOfCurrency”>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”unbounded” name=”Currency” nillable=”true” type=”tns:Currency”/>
</s:sequence>
</s:complexType>

<s:complexType name=”Currency”>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”Code” type=”s:string”/>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”Name” type=”s:string”/>
</s:sequence>
</s:complexType>

<s:element name=”GetCurrencyCodes”>
<s:complexType/>
</s:element>

Categories: PHP, XML Tags: , , , , , ,

Idx Search Using Wsdl

June 2nd, 2009 Comments off

I am a real estate agent using IDXbroker.com (http://idxbroker.com/idx_broker.php) for my IDX integration for my websites. Their default search doesn’t work for my current situation. I need a custom search created.

I was told by the IDX company that it would take about 2-3 hours to create a custom search.

You must have knowledge and be an expert in WSDL Documentation and Services. Here is the link they supplied https://idxco.com/services/clientWSDL.php

According to IDXbroker.com technical support, The Windows Services need to “hook” the IDX feed.

I actually have many projects for different real estate websites. So if you have experience with real estate website design and knowledge of IDX, WSDL, PHP, MySQL and SEO this could be a long term relationship.

Soap / Wsdl Exchange In Php

March 26th, 2009 No comments

I have a PHP driven website and need to transfer data back and forth via SOAP with a provided WSDL. The WSDL is very complex and I have been unable to properly transfer my information via SOAP to get a valid response from the server. I need somebody to establish the initial connection via php with standard soap functionality and run a few back and forth data transfer tests. I need somebody who is experienced in using PHP functions and variables wth SOAP and WSDL and complex data types.

Bear