Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an tomcat instance running at port 8080 and a apache cxf webservice running at /services path. Now i dont want to expose this tomcat server directly so i use nginx as its proxy at port 80. The problem is the webservice endpoint is relative to the tomcat server so it is still at port 8080.

Is is possible to change this endpoint url so client's request will go to the nginx proxy ?

Thank you.

share|improve this question
This doesn't sound like a programming related question. It's more concerned with server configuration. – user647772 Mar 7 '11 at 8:55
1  
it still a programming related question as i think the solution might be adding an annotation to the code or at the cxf configuration – robinmag Mar 7 '11 at 9:48

1 Answer

<jaxws:endpoint id="aWebService"
    implementor="package.class"
    address="adressOfYourServer/nameOfYourService">

</jaxws:endpoint>

It's working for me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.