‎2006 Sep 11 12:21 PM
What is a Web service means?
Would some one explain me a step by Step process in ABAP How to create a Web service?
Thanks.
‎2006 Sep 11 12:23 PM
‎2006 Sep 11 12:26 PM
‎2006 Sep 11 12:28 PM
webservice is a method which can take some input process it and gives some output which can be accessed from any application.
in ABAP world every RFC is a webservice.
check this link for the general definition of webservice
http://en.wikipedia.org/wiki/Webservice
Regards
Raja
‎2006 Sep 11 12:50 PM
Thanks a lot DuraiRaj.
How to convert an RFC into an WebService? Whats the exact difference between an RFC and a Webservice?
‎2006 Sep 11 12:56 PM
which version of SAP you are using?
for external applications to cosume your webservice, they would request you for the WSDL file - (Web Services Description Language) which descirbes about the webervice, like what are the import parameters, export parameters, connection details, etc.
in sap system to get the wsdl file of a RFC/webservice you can use the following url pattern
http://<abaphost>.domain.com:<port>/sap/bc/soap/wsdl11?services=<RFC NAME IN UPPERCASE>&sap-client=001
the application which want to consume your webservice, would create something called client proxy using this wsdl and it will execute the client proxy which would call the webservice to get the results.
Regards
Raja