cancel
Showing results for 
Search instead for 
Did you mean: 

Calling a Secure Web Service in Web Dynpro

Former Member
0 Kudos

Hi,

Can anyone please tell me how to call a secure web service in Web Dynpro??

Thanks in advance..

Anil

Accepted Solutions (1)

Accepted Solutions (1)

Abhinav_Sharma
Contributor
0 Kudos

Hi Anil,

You can call ur webservice in many ways.One which is the most basic is

create an object of the method which u want to call e.g:

RequsetXXXXX obj = new RequestXXXXX();

wdCOntext.curentRequestXXXXXElement().bind(obj);

obj._setUser(username);

obj._setPassword(pasword);

obj.execute();

please reward points if it helps.

Abhinav Sharma

Answers (0)