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

question on web service

Former Member
0 Likes
423

I have an ABAP Function Module, /abc/web_service_test. And i create service provider for the FM. In the Provider's WSDL, the name "/abc/web_service_test" is translated into "_-abc_-webServiceTest".

My questions are: why '/' is translated into "_-" and how to solve the problem ?

Thanks in advance,

Johneny

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
388

when you develop a webservice based on ABAP FM the path for the same would be

sap/bc/str/rfc/sap/yourwebservicename

in your case it if the FM name is left to have /s it would look like

sap/bc/str/rfc/sap//abc/web_service_test. where abc would be treated like a folder, thus the system automatically translates this to -abc-webServiceTest

I have an ABAP Function Module, /abc/web_service_test. And i create service provider for the FM. In the Provider's WSDL, the name "/abc/web_service_test" is translated into "_-abc_-webServiceTest".

My questions are: why '/' is translated into "_-" and how to solve the problem ?

Thanks in advance,

Johneny

2 REPLIES 2
Read only

athavanraja
Active Contributor
0 Likes
389

when you develop a webservice based on ABAP FM the path for the same would be

sap/bc/str/rfc/sap/yourwebservicename

in your case it if the FM name is left to have /s it would look like

sap/bc/str/rfc/sap//abc/web_service_test. where abc would be treated like a folder, thus the system automatically translates this to -abc-webServiceTest

Read only

Former Member
0 Likes
388

Get Solution from internal colleague