cancel
Showing results for 
Search instead for 
Did you mean: 

Tutorial for consuming WebService using Webdynpro for ABAP only

Former Member
0 Kudos

Hi Gurus,

Can you list down the process and step by step guide and codes for consuming service using web dynpro for ABAP.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

for consuming webservice you need to create proxy class and this class can be used for using webservice.

check this link [webservice|http://help.sap.com/saphelp_nw04/helpdata/en/bf/d005244e9d1d4d92b2fe7935556b4c/frameset.htm]

you can also use wizardby following mehod after creating proxy class.

Right click on your webdynpro component Create->service Call

It will open a wizard and in the third step you can choose Webservice proxy as service type .

Regards

Naresh

Former Member
0 Kudos

Thanks Naresh.

Answers (1)

Answers (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Web Dynpro ABAP doesn't really consume Web Services directly. It can only interact with Web Service Proxy Classes (and that process is really no different than calling any normal classs). There is a service wizard, but mostly it just helps with creating the context that matches the interface of the proxy method.

Here is a link to a video that shows the process of creating and configuring the proxy. It was developed on 7.1 but a lot of the functionality (like SOAMANAGER) has been backported to 7.0 in the later support packages:

If you have an older SP level, you would still use LPCONFIG instead of SOAMANAGER. Here is a blog that shows the process at this older level:

Former Member
0 Kudos

Thanks Thomas this will be helpful. I will try this out.