I have a webservice in weblogic, and this webservice consumes another service from web. today I'm consuming with hardcode string like that
String service = "https://myApplication.com/resouces/getClients"
I'm looking for something like
String service = //go to weblogic find a variable "MyApplication" and return it's content
the problem is I have no idea how to create this variable in weblogic and retrive its value in my java application.