‎2007 Jun 19 8:52 AM
Hello Experts !
I'm in trouble with a WebService from the SalesForce CRM Application. I got the WSDL-File.
Now I try to generate an ABAP-Proxy for this SalesForce WebService.
The Proxy Generation failed with WSDL-Error...
The WSDL-Error in LogFile is described as, <extension> Tag is not supported.
Is there any other way to generate a WS-Proxy ABAP-Class ??
The funny thing is, on the Java-Side (NW04s - SPS9) the Proxy Generation for the SalesForce WebService works fine.
Thanx for your help.
Alex
‎2007 Jun 19 9:02 AM
Hi,
which server to connect is taken from the wsdl and not from the location of the wsdl. just store wsdl locally and use it for regeneration. when you consume the webservice, it will go to the appropriate server
<b>Reward points</b>
Regarsd
‎2007 Jun 19 9:02 AM
Hi,
which server to connect is taken from the wsdl and not from the location of the wsdl. just store wsdl locally and use it for regeneration. when you consume the webservice, it will go to the appropriate server
<b>Reward points</b>
Regarsd
‎2007 Jun 19 9:31 AM
thanks for your reply.
I allready tried to store the the wsdl file locally and used it for the proxy
generation. no success, unfortunately.
‎2007 Aug 01 5:07 PM
I had this problem too long back.. this is because the WSDL file contains an <extension> tag which is generated because the class thats represented in the WSDL file is a derived class, I had the problem when the WSDL was generated from a .NET application. to resolve that we had to change the .NET application to embed the parent class in the child rather than derive it..
See if this helps