I don't think configuration is really used (much) when using the command line tools. There are flags on the java2ws tool for portname and servicename and such that should be used.
That said, it would likely be better to just stick those values on the @WebService annotation and not have them in the config or command line. Dan On Friday 04 February 2011 11:51:55 pm jaybytez wrote: > Here is my configuration and annotations, it works right now...but the > values seem to be incorrect because if I used cxf tools to gen the wsdl > from the SEI, it's service name and port name don't match the > configuration. Can anyone tell me what the attributes endpointName and > serviceName match up to in the @WebService?: > > <jaxws:endpoint > id="jaxws.FooBusinessService" > endpointName="s:FooBusinessServiceEndpointServicePort" > serviceName="s:FooBusinessServiceEndpointService" > implementor="#memberBusinessServiceEndpoint" > > implementorClass="com.healthnet.hnfs.service.mem.FooBusinessService" > address="/FooBusinessServiceEndpointService" > xmlns:s="http://foo.com/services/mem"> > <jaxws:features> > <bean class="org.apache.cxf.feature.LoggingFeature"/> > </jaxws:features> > </jaxws:endpoint> > > @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED, use = > SOAPBinding.Use.LITERAL, style = SOAPBinding.Style.DOCUMENT) > @WebService(targetNamespace = "http://foo.com/services/mem") > public interface FooBusinessService extends BaseBusinessService { > > Thanks....jay -- Daniel Kulp [email protected] http://dankulp.com/blog
