cancel
Showing results for 
Search instead for 
Did you mean: 

Get file path from HTTP service alias in Visual Admin

Former Member
0 Kudos

Hi All,

There is a HTTP service alias that's been defined in the Visual Administrator. The alias contains file path. How do I read the file path from HTTP service alias using webdynpro java.

Thanks,

Tom

Accepted Solutions (0)

Answers (1)

Answers (1)

srinivas_sistu
Active Contributor
0 Kudos

if the alias is available, then you can access the the service using the

URL "http://servername:portnumber/aliasname"

ex:

if ur alias name is test_alias

servername is tstser and portnumber is 50000

then ur URL becomes

http://tstser:50000/test_alias

and when ur accessing it, simply give

href="/test_alias";

hope it helps you

Srinivas.