Today's Page Hits: 83
This page validates as XHTML 1.0, and will look much better in a browser that supports web standards, but it is accessible to any browser or Internet device. It was created using techniques detailed at glish.com/css/.
Enable STS MEX endpoint
Back on this March, I published a tech tip in Sun Developer Network for securing Web services using WSIT with or without an STS.
Accomanying the tip, I also provided a sample application package.
Since then the MEX service for a Web service is implemeted as a seperate endpoint
in WSIT. With this change, to run the sample application of STS version with the current build of WSIT, one need to manually enable the MEX endpoint for the STS with the following modifications to the sample:
1. Add the entry
<endpoint
name="sts_mex"
implementation="com.sun.xml.ws.mex.server.MEXEndpoint"
url-pattern="/sts/mex" />
to the file etc\sts\sun-jaxws.xml.
2. Add the entry
<servlet-mapping>
<servlet-name>sts</servlet-name>
<url-pattern>/sts/mex </url-pattern>
</servlet-mapping>
to the file etc\sts\web.xml.
Posted at 11:19PM Aug 22, 2007 by jiandongg in Sun | Comments[0]