cancel
Showing results for 
Search instead for 
Did you mean: 

How can i change webservice name in webdynpro

Former Member
0 Kudos

i am very new to designing in webdynpro..

i am using one webservice in my views to display all the retrieved files. but, the web service name had changed now.

is there only possible way to change all the fields mapping from the begining or else

can i rename/change the webservice name in my webdynpro project

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

try{
   Request_xxx req = 
     new Request_xxx() ;
   wdCotext.nodeXXX.bind(req) ;

   // Change your endpoint before request executed 
   req._setEndPoint("http://....") ;
   ... ;
}
catch( Exception e ){
}