Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Web Service

Former Member
0 Likes
612

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.

5 REPLIES 5
Read only

Former Member
0 Likes
530

Hi

Use the link

[original link is broken]

Regards

Pulkit Agrawal

Read only

athavanraja
Active Contributor
0 Likes
530

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

Read only

0 Likes
530

Thanks a lot DuraiRaj.

How to convert an RFC into an WebService? Whats the exact difference between an RFC and a Webservice?

Read only

0 Likes
530

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