Link to home
Start Free TrialLog in
Avatar of wildzero
wildzero

asked on

Workig with a WSDL

Hi there,

Does anyone have any comments with working with WSDL's?
I need to use the Google Adwords API and that uses a WSDL
(see http://www.google.com/apis/adwords/developer/adwords_api_services.html#wsdl_list )

Does anyone have any suggestions using WSDLs?
SOLUTION
Avatar of atul_parmar
atul_parmar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wildzero
wildzero

ASKER

Ok I got two questions

#1
Do I make up the question myself like

var
  sRequest : string;
begin
sRequst := '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" >
<SOAP-ENV:Body>
<ns1:GetStockQuote xmlns:ns1="urn:xmethods-quotes">
<SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<symbol xsi:type="xsd:string">IBM</symbol>
</ns1:GetStockQuote>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>';

?

and then how do I sent that to the wsdl address?
that was just exmaple XML from
http://www.agnisoft.com/white_papers/soap3.asp
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial