Invoking webservice

I have an inbound CSV file. I need to take the values from the CSV file and then invoke a webservice.

I am first converting the file into a record list by calling ConvertToValues. Do I need to transform it into an xml before I invoke the webservice? If yes, how?

Thanks

I am first converting the file into a record list by calling ConvertToValues. Do I need to transform it into an xml before I invoke the webservice?

Yes…you need to map ffValues to the desired XML format that WS is expecting Doc/literal (soap-http) or soap-rpc style etc…soapRequest/soapResponse you as a Consumer WSD.

Once you have the xmldata (documentToXMLString) create the soapData and invoke the WS (via WSDL)…creat webservice connector service out of the WSDL provided by your TP.

Please go thru the SOAPDevelopers userguide for more information and look in the webService section here in the forum.

HTH,
RMG