cecan
cecan

Reputation: 25

Android ksoap2 wsdl

I´am using ksoap2 library. And I need to get namespace, method name, url and action name from http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl

Thx for help

Upvotes: 0

Views: 476

Answers (1)

Oguz Özkeroglu
Oguz Özkeroglu

Reputation: 3057

Try this:

String METHOD_NAME = "checkVat";
String NAMESPACE = "urn:ec.europa.eu:taxud:vies:services:checkVat";
String SOAP_ACTION = "";
String URL = "http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl";

Upvotes: 1

Related Questions