How can I get the url path of my web app from the service? For example http://myhost:myport/mywebapp.
I tried using
public void setOperationContext(OperationContext opCtx)
throws AxisFault
{
inMessageContext =opCtx.getMessageContext(WSDLConstants.
MESSAGE_LABEL_IN_VALUE);}
but the MessageContext seems to not have any properties loaded.
