Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is SOAP V2 url on Magento 1.7.0.0

Is the url for accessing Magento SOAP V2 changed in version 1.7.0.0? When I try to access the service on "http://www.somedomain.com/api/v2_soap?wsdl=1" in browser it gives an error "Invalid webservice adapter specified." Is this a bug or am I missing something? Thanks for any help

like image 960
Blazo Avatar asked May 07 '12 09:05

Blazo


2 Answers

Use

http://www.somedomain.com/index.php/api/v2_soap?wsdl=1

instead of

http://www.somedomain.com/api/v2_soap?wsdl=1

On 1.7 only the first url works, on 1.6 or lower, the second url also works.

like image 100
i.amniels Avatar answered Dec 04 '22 08:12

i.amniels


There is a different approach if you want to keep compatibility with old API calls. Take a look here https://stackoverflow.com/a/15897296/469995

like image 33
Sylvain Rayé Avatar answered Dec 04 '22 07:12

Sylvain Rayé