CXF client applet ServiceConstructionException

2007-08-21 Thread doug
Hi, I think I have my server set up ok because if I visit this page: http://192.168.98.46:8080/pfc/services/ I get a list of the services I implemented: {http://impl.chat.serbices.servlet.pfc.mmsn.net.au/}ChatServiceImplPort {http://impl.rfio.serbices.servlet.pfc.mmsn.net.au/}RemoteFileImplPort

Re: CXF client applet ServiceConstructionException

2007-08-21 Thread Willem Jiang
Hi It looks like the Service Name is not a right one from the exception's message. Please check the Service QName with the wsdl which you get from the http://192.168.98.46:8080/pfc/services/PfC?wsdl Willem. doug wrote: Hi, I think I have my server set up ok because if I visit this page:

Re: CXF client applet ServiceConstructionException

2007-08-21 Thread doug
I get the following WSDL, but I am not sure exactly what the Service QName should be trying to match. Thanks Doug wsdl:definitions name=PfCServicesImplService targetNamespace=http://impl.serbices.servlet.pfc.mmsn.net.au/; wsdl:import

Re: CXF client applet ServiceConstructionException

2007-08-21 Thread Willem Jiang
The Service QName should be QName SERVICE = new QName(http://impl.serbices.servlet.pfc.mmsn.net.au/ , PfCServicesImplService); Willem. doug wrote: I get the following WSDL, but I am not sure exactly what the Service QName should be trying to match. Thanks Doug wsdl:definitions

Re: CXF client applet ServiceConstructionException

2007-08-21 Thread doug
Thanks Willem. Ok, that morphed the exception into: javax.xml.ws.WebServiceException: Port {urn:srv}PfC not found. My wsdl2java generated PfC_PfC_Client.java file records it as: private static final QName SERVICE_NAME = new QName(urn:srv, PfCService); I'm guessing I've screwed up my