When I deploy a service as a WAR, I can provide the jboss-web.xml file where I overwrite the URL by definining a context-root tag (e.g., if my war is named my-service-1.0.0.war, I can use context-root to control the WSDL URL to be my-service without having the version on the end). Anyone know how to accomplish this same behavior with an ESB deployment? My service has this URL:
https://localhost:8180/checklist-service-1.0.0/ebws/peoplesoft-services/UpdateChecklistItemStatus?wsdl
The desired URL has the version number removed:
https://localhost:8180/checklist-service/ebws/peoplesoft-services/UpdateChecklistItemStatus?wsdl
I've tried dropping a jboss-web.xml file into the deployment without luck. Any help would be greatly appreciated. Thanks!