djencks 2005/04/11 22:17:58
Modified: modules/core/src/java/org/openejb/server/axis
WSContainer.java
Log:
Another attempt to publish all the wsdls and schemas via http. I have no
indications that this fails.
Revision Changes Path
1.9 +3 -3
openejb/modules/core/src/java/org/openejb/server/axis/WSContainer.java
Index: WSContainer.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/server/axis/WSContainer.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- WSContainer.java 7 Apr 2005 14:59:25 -0000 1.8
+++ WSContainer.java 12 Apr 2005 02:17:58 -0000 1.9
@@ -82,11 +82,11 @@
service.setOption("className",
serviceEndpointInterface.getName());
serviceDesc.setImplClass(serviceEndpointInterface);
- HandlerInfoChainFactory handlerInfoChainFactory = new
HandlerInfoChainFactory(serviceInfo.getHanlderInfos());
+ HandlerInfoChainFactory handlerInfoChainFactory = new
HandlerInfoChainFactory(serviceInfo.getHandlerInfos());
service.setOption(org.apache.axis.Constants.ATTR_HANDLERINFOCHAIN,
handlerInfoChainFactory);
ClassLoader classLoader = ejbContainer.getClassLoader();
- AxisWebServiceContainer axisContainer = new
AxisWebServiceContainer(location, wsdlURI.toString(), service, classLoader);
+ AxisWebServiceContainer axisContainer = new
AxisWebServiceContainer(location, wsdlURI, service, serviceInfo.getWsdlMap(),
classLoader);
if (soapHandler != null) {
soapHandler.addWebService(location.getPath(), axisContainer);
}