cancel
Showing results for 
Search instead for 
Did you mean: 

how to use web dynpro's web service to import XML file

Former Member
0 Kudos

Hi

I have an xml file and I want to use a web dynpro's web service to cosume this file which is existing on my local drive. Can anyone help me which steps I have to do to use this file as a web service using web dynpro.

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

You can refer below Wiki Article on SDN. I hope that will help you out.

[https://www.sdn.sap.com/irj/sdn/wiki?path=/display/emtech/consuming%2babap%2bweb%2bservices%2busing%2bflex]

Thanks.

Former Member
0 Kudos

Well you can't use a Web Service Model to just consume an XML file. The Web Service model is going to expect to generate a SOAP request and receive a SOAP response...

You may want to look at using FIleUpload to upload the file and then using an open source XML parsing library (JAXP or SAX) to parse the contents.

HTH.