Application Development 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: 

question on web service

Former Member
0 Kudos

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

athavanraja
Active Contributor
0 Kudos

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

2 REPLIES 2

athavanraja
Active Contributor
0 Kudos

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

Former Member
0 Kudos

Get Solution from internal colleague