My endpoint url is the following: http://localhost:8080/axis/services/TZCServiceSoap
where I think TZCServiceSoap is the service name or port name, not sure which. Don't think you're supposed to have DecisionManagerImpl as part of the endpoint url, but my guess is it should be DecisionManager. Jan -----Original Message----- From: Burns, Scott [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 3:28 PM To: [email protected] Subject: ConfigurationException: No service named I am going through axis user guide and trying to get a client working. I have deployed my web service and I can see it listed in services, view the wsdl and even call my method via http. I am using tomcat tomcat50-jwsdp and axis-1_2_1. When I run my client I get the exception list in the subject. I have set my endpoint url to my targetNamespace in the wsdl but I still get this error. I am a unclear on what to put in for the first argument for the Qname. Any help would be greatly appreciated. Scott call.setOperationName( new QName("is this http://localhost/fpdpoc/services/DecisionManagerImpl", "execute") ); // client code try { //Options options = new Options(args); String endpointURL = "http://localhost/fpdpoc/services/DecisionManagerImpl"; //options.getURL(); Long treeId= new Long(1); Long batchId = new Long(1); /*args = options.getRemainingArgs(); if ((args == null) || (args.length < 1)) { treeId= new Long(1); } else { treeId= new Long(args[0]); }*/ Service service = new Service(); Call call = (Call) service.createCall(); call.setTargetEndpointAddress( new java.net.URL(endpointURL) ); call.setOperationName( new QName("http://localhost/fpdpoc/services/DecisionManagerImpl", "execute") ); call.addParameter( "arg1", XMLType.XSD_LONG, ParameterMode.IN); call.addParameter( "arg2", XMLType.XSD_LONG, ParameterMode.IN); call.setReturnType( org.apache.axis.encoding.XMLType.XSD_INT ); Integer ret = (Integer ) call.invoke( new Object[] { treeId, batchId } ); // Wsdl listing - <wsdl:definitions targetNamespace="http://localhost/fpdpoc/services/DecisionManagerImpl"> - <!-- WSDL created by Apache Axis version: 1.2.1 Built on Jun 14, 2005 (09:15:57 EDT) --> <wsdl:message name="setOutcomeLogDAOResponse"> </wsdl:message> <wsdl:message name="setWorkingDAOResponse"> </wsdl:message> <wsdl:message name="executeResponse"> </wsdl:message> - <wsdl:message name="executeRequest"> <wsdl:part name="treeId" type="xsd:long"/> <wsdl:part name="batchId" type="xsd:long"/> </wsdl:message> - <wsdl:message name="setOutcomeLogDAORequest"> <wsdl:part name="outcomeLogDao" type="xsd:anyType"/> </wsdl:message> <wsdl:message name="setOutcomeLibraryDAOResponse"> </wsdl:message> - <wsdl:message name="setWorkingDAORequest"> <wsdl:part name="workingDao" type="xsd:anyType"/> </wsdl:message> - <wsdl:message name="setOutcomeLibraryDAORequest"> <wsdl:part name="outcomeLibraryDao" type="xsd:anyType"/> </wsdl:message> - <wsdl:portType name="DecisionManagerImpl"> - <wsdl:operation name="setWorkingDAO" parameterOrder="workingDao"> <wsdl:input message="impl:setWorkingDAORequest" name="setWorkingDAORequest"/> <wsdl:output message="impl:setWorkingDAOResponse" name="setWorkingDAOResponse"/> </wsdl:operation> - <wsdl:operation name="setOutcomeLibraryDAO" parameterOrder="outcomeLibraryDao"> <wsdl:input message="impl:setOutcomeLibraryDAORequest" name="setOutcomeLibraryDAORequest"/> <wsdl:output message="impl:setOutcomeLibraryDAOResponse" name="setOutcomeLibraryDAOResponse"/> </wsdl:operation> - <wsdl:operation name="setOutcomeLogDAO" parameterOrder="outcomeLogDao"> <wsdl:input message="impl:setOutcomeLogDAORequest" name="setOutcomeLogDAORequest"/> <wsdl:output message="impl:setOutcomeLogDAOResponse" name="setOutcomeLogDAOResponse"/> </wsdl:operation> - <wsdl:operation name="execute" parameterOrder="treeId batchId"> <wsdl:input message="impl:executeRequest" name="executeRequest"/> <wsdl:output message="impl:executeResponse" name="executeResponse"/> </wsdl:operation> </wsdl:portType> - <wsdl:binding name="DecisionManagerImplSoapBinding" type="impl:DecisionManagerImpl"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> - <wsdl:operation name="setWorkingDAO"> <wsdlsoap:operation soapAction=""/> - <wsdl:input name="setWorkingDAORequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://impl.service.cl.ccr.com" use="encoded"/> </wsdl:input> - <wsdl:output name="setWorkingDAOResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/fpdpoc/services/DecisionManagerImpl" use="encoded"/> </wsdl:output> </wsdl:operation> - <wsdl:operation name="setOutcomeLibraryDAO"> <wsdlsoap:operation soapAction=""/> - <wsdl:input name="setOutcomeLibraryDAORequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://impl.service.cl.ccr.com" use="encoded"/> </wsdl:input> - <wsdl:output name="setOutcomeLibraryDAOResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/fpdpoc/services/DecisionManagerImpl" use="encoded"/> </wsdl:output> </wsdl:operation> - <wsdl:operation name="setOutcomeLogDAO"> <wsdlsoap:operation soapAction=""/> - <wsdl:input name="setOutcomeLogDAORequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://impl.service.cl.ccr.com" use="encoded"/> </wsdl:input> - <wsdl:output name="setOutcomeLogDAOResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/fpdpoc/services/DecisionManagerImpl" use="encoded"/> </wsdl:output> </wsdl:operation> - <wsdl:operation name="execute"> <wsdlsoap:operation soapAction=""/> - <wsdl:input name="executeRequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://impl.service.cl.ccr.com" use="encoded"/> </wsdl:input> - <wsdl:output name="executeResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/fpdpoc/services/DecisionManagerImpl" use="encoded"/> </wsdl:output> </wsdl:operation> </wsdl:binding> - <wsdl:service name="DecisionManagerImplService"> - <wsdl:port binding="impl:DecisionManagerImplSoapBinding" name="DecisionManagerImpl"> <wsdlsoap:address location="http://localhost/fpdpoc/services/DecisionManagerImpl"/> </wsdl:port> </wsdl:service> </wsdl:definitions> //stack trace DEBUG - ProjectResourceBundle.getBundle(264) | getBundle(org.apache.axis,org.apache.axis.i18n,resource,null,...) DEBUG - ProjectResourceBundle$Context.loadBundle(423) | loadBundle: Ignoring MissingResourceException: Can't find bundle for base name org.apache.axis.resource, locale en_US DEBUG - ProjectResourceBundle.getBundle(318) | Created org.apache.axis.i18n.resource, linked to parent null DEBUG - ProjectResourceBundle.getBundle(264) | getBundle(org.apache.axis,org.apache.axis.utils,resource,null,...) DEBUG - ProjectResourceBundle$Context.loadBundle(423) | loadBundle: Ignoring MissingResourceException: Can't find bundle for base name org.apache.axis.utils.resource, locale en_US DEBUG - ProjectResourceBundle$Context.loadBundle(423) | loadBundle: Ignoring MissingResourceException: Can't find bundle for base name org.apache.axis.resource, locale en_US DEBUG - ProjectResourceBundle.getBundle(328) | Root package not found, cross link to org.apache.axis.i18n.resource DEBUG - ProjectResourceBundle.getBundle(328) | Root package not found, cross link to org.apache.axis.i18n.resource DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(engineFactory) DEBUG - EngineConfigurationFactoryFinder$1.run(141) | Got EngineFactory: org.apache.axis.configuration.EngineConfigurationFactoryDefault DEBUG - AxisEngine.init(165) | Enter: AxisEngine::init DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(attachEnabled) DEBUG - JavaUtils.isAttachmentSupported(1282) | Attachment support is enabled? false DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(attachDisabled) WARN - JavaUtils.isAttachmentSupported(1285) | Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(oddDigits00) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(badChars01) DEBUG - AxisEngine.init(195) | Exit: AxisEngine::init DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(transport00) DEBUG - Call.setTransport(2102) | Transport is [EMAIL PROTECTED] DEBUG - OperationDesc.addParameter(265) | @922804 added parameter >name: arg1 typeEntry: null mode: IN position: 0 isReturn: false typeQName: {http://www.w3.org/2001/XMLSchema}long javaType: long inHeader: false outHeader: false @1815338<total parameters:1 DEBUG - OperationDesc.addParameter(265) | @922804 added parameter >name: arg2 typeEntry: null mode: IN position: 1 isReturn: false typeQName: {http://www.w3.org/2001/XMLSchema}long javaType: long inHeader: false outHeader: false @17e845a<total parameters:2 DEBUG - OperationDesc.setReturnType(173) | @922804setReturnType({http://www.w3.org/2001/XMLSchema}int) DEBUG - Call.invoke(2332) | Enter: Call::invoke(ns, meth, args) DEBUG - Call.getParamList(2026) | operation=name: null returnQName: null returnType: {http://www.w3.org/2001/XMLSchema}int returnClass: int elementQName:null soapAction: null style: rpc use: encoded numInParams: 2 method:null ParameterDesc[0]: name: arg1 typeEntry: null mode: IN position: 0 isReturn: false typeQName: {http://www.w3.org/2001/XMLSchema}long javaType: long inHeader: false outHeader: false ParameterDesc[1]: name: arg2 typeEntry: null mode: IN position: 1 isReturn: false typeQName: {http://www.w3.org/2001/XMLSchema}long javaType: long inHeader: false outHeader: false DEBUG - Call.getParamList(2028) | operation.getNumParams()=2 DEBUG - Call.getParamList(2051) | getParamList number of params: 2 DEBUG - Call.invoke(2386) | Enter: Call::invoke(RPCElement) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(attachEnabled) DEBUG - Message.isAttachmentSupportEnabled(284) | Attachment support is enabled? false DEBUG - SOAPPart.<init>(182) | Enter: SOAPPart ctor(FORM_SOAPENVELOPE) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setMsgForm) DEBUG - SOAPPart.setCurrentForm(374) | Setting current message form to: FORM_SOAPENVELOPE (currentMessage is now org.apache.axis.message.SOAPEnvelope) DEBUG - SOAPPart.<init>(188) | Exit: SOAPPart ctor() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(addBody00) DEBUG - SOAPBody.addBodyElement(168) | Adding body element to message... DEBUG - Call.invoke(2619) | Enter: Call::invoke() DEBUG - SOAPPart.getAsSOAPEnvelope(661) | Enter: SOAPPart::getAsSOAPEnvelope() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(currForm) DEBUG - SOAPPart.getAsSOAPEnvelope(662) | current form is FORM_SOAPENVELOPE DEBUG - MessageContext.setTargetService(748) | MessageContext: setTargetService(http://localhost/fpdpoc/services/DecisionManagerImpl) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(noService10) DEBUG - ConfigurationException.logException(110) | Exception: org.apache.axis.ConfigurationException: No service named http://localhost/fpdpoc/services/DecisionManagerImpl is available org.apache.axis.ConfigurationException: No service named http://localhost/fpdpoc/services/DecisionManagerImpl is available at org.apache.axis.configuration.FileProvider.getService(FileProvider.java: 233) at org.apache.axis.AxisEngine.getService(AxisEngine.java:311) at org.apache.axis.MessageContext.setTargetService(MessageContext.java:755) at org.apache.axis.client.Call.invoke(Call.java:2689) at org.apache.axis.client.Call.invoke(Call.java:2424) at org.apache.axis.client.Call.invoke(Call.java:2347) at org.apache.axis.client.Call.invoke(Call.java:1804) at com.ccr.cl.service.DecisionManagerWebServiceTest.main(DecisionManagerWeb ServiceTest.java:41) at org.apache.axis.configuration.FileProvider.getService(FileProvider.java: 233) at org.apache.axis.AxisEngine.getService(AxisEngine.java:311) at org.apache.axis.MessageContext.setTargetService(MessageContext.java:755) at org.apache.axis.client.Call.invoke(Call.java:2689) at org.apache.axis.client.Call.invoke(Call.java:2424) at org.apache.axis.client.Call.invoke(Call.java:2347) at org.apache.axis.client.Call.invoke(Call.java:1804) at com.ccr.cl.service.DecisionManagerWebServiceTest.main(DecisionManagerWeb ServiceTest.java:41) DEBUG - MessageContext.setService(792) | MessageContext: setServiceHandler(null) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(targetService) DEBUG - Call.invoke(2696) | Target service: http://localhost/fpdpoc/services/DecisionManagerImpl DEBUG - MessageContext.setTargetService(748) | MessageContext: setTargetService(null) DEBUG - MessageContext.setService(792) | MessageContext: setServiceHandler(null) DEBUG - SOAPPart.getAsSOAPEnvelope(661) | Enter: SOAPPart::getAsSOAPEnvelope() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(currForm) DEBUG - SOAPPart.getAsSOAPEnvelope(662) | current form is FORM_SOAPENVELOPE DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenv' - 'http://schemas.xmlsoap.org/soap/envelope/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenv' - 'http://schemas.xmlsoap.org/soap/envelope/' DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsd' - 'http://www.w3.org/2001/XMLSchema' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsi' - 'http://www.w3.org/2001/XMLSchema-instance' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Envelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Body DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://localhost/fpdpoc/services/DecisionManagerImpl]:execute DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'ns1' - 'http://localhost/fpdpoc/services/DecisionManagerImpl' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:arg1 DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element arg1 DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:arg2 DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element arg2 DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element ns1:execute DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenc' - 'http://schemas.xmlsoap.org/soap/encoding/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:multiRef DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element multiRef DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:multiRef DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenc' - 'http://schemas.xmlsoap.org/soap/encoding/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element multiRef DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Body DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Envelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - NSStack.pop(113) | NSPop (empty) DEBUG - Call.invoke(2743) | <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1 :execute soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://localhost/fpdpoc/services/DecisionManagerImpl"><arg1 href="#id0"/><arg2 href="#id1"/></ns1:execute><multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1</multiRef><m ultiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1</multiRef></ soapenv:Body></soapenv:Envelope> DEBUG - AxisClient.invoke(77) | Enter: AxisClient::invoke DEBUG - AxisClient.invoke(90) | EngineHandler: null DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(axisUserAgent) DEBUG - SimpleChain.invoke(79) | Enter: SimpleChain::invoke DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(enter00) DEBUG - HTTPSender.invoke(125) | Enter: HTTPSender::invoke DEBUG - SOAPPart.saveChanges(524) | Enter: SOAPPart::saveChanges DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenv' - 'http://schemas.xmlsoap.org/soap/envelope/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenv' - 'http://schemas.xmlsoap.org/soap/envelope/' DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsd' - 'http://www.w3.org/2001/XMLSchema' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsi' - 'http://www.w3.org/2001/XMLSchema-instance' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Envelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Body DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://localhost/fpdpoc/services/DecisionManagerImpl]:execute DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'ns1' - 'http://localhost/fpdpoc/services/DecisionManagerImpl' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:arg1 DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element arg1 DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:arg2 DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element arg2 DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element ns1:execute DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenc' - 'http://schemas.xmlsoap.org/soap/encoding/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:multiRef DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element multiRef DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:multiRef DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenc' - 'http://schemas.xmlsoap.org/soap/encoding/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element multiRef DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Body DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Envelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - NSStack.pop(113) | NSPop (empty) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setMsgForm) DEBUG - SOAPPart.setCurrentForm(374) | Setting current message form to: FORM_OPTIMIZED (currentMessage is now org.apache.axis.utils.ByteArray) DEBUG - SOAPPart.saveChanges(537) | Exit: SOAPPart::saveChanges(): [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(createdHTTP00) DEBUG - DefaultSocketFactory.create(122) | Created an insecure HTTP connection DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(xmlSent00) DEBUG - HTTPSender.writeToSocket(484) | XML sent: DEBUG - HTTPSender.writeToSocket(485) | --------------------------------------------------- DEBUG - HTTPSender.writeToSocket(519) | POST /fpdpoc/services/DecisionManagerImpl HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.2.1 Host: localhost Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 841 <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1 :execute soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://localhost/fpdpoc/services/DecisionManagerImpl"><arg1 href="#id0"/><arg2 href="#id1"/></ns1:execute><multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1</multiRef><m ultiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1</multiRef></ soapenv:Body></soapenv:Envelope> DEBUG - HTTPSender.readHeadersFromSocket(627) | HTTP/1.1 500 Internal Server Error DEBUG - HTTPSender.readHeadersFromSocket(627) | Content-Type text/xml;charset=utf-8 DEBUG - HTTPSender.readHeadersFromSocket(627) | Date Wed, 20 Jul 2005 19:13:58 GMT DEBUG - HTTPSender.readHeadersFromSocket(627) | Server Sun-Java-System/Web-Services-Pack-1.4 DEBUG - HTTPSender.readHeadersFromSocket(627) | Connection close DEBUG - SOAPPart.<init>(182) | Enter: SOAPPart ctor(FORM_INPUTSTREAM) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setMsgForm) DEBUG - SOAPPart.setCurrentForm(374) | Setting current message form to: FORM_INPUTSTREAM (currentMessage is now org.apache.axis.transport.http.SocketInputStream) DEBUG - SOAPPart.<init>(188) | Exit: SOAPPart ctor() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(no00) DEBUG - HTTPSender.readFromSocket(791) | no Content-Length DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(xmlRecd00) DEBUG - HTTPSender.readFromSocket(794) | XML received: DEBUG - HTTPSender.readFromSocket(795) | ----------------------------------------------- DEBUG - SOAPPart.getAsSOAPEnvelope(661) | Enter: SOAPPart::getAsSOAPEnvelope() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(currForm) DEBUG - SOAPPart.getAsSOAPEnvelope(662) | current form is FORM_INPUTSTREAM DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - DeserializationContext.startPrefixMapping(886) | Enter: DeserializationContext::startPrefixMapping(soapenv, http://schemas.xmlsoap.org/soap/envelope/) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startPrefixMapping(925) | Exit: DeserializationContext::startPrefixMapping() DEBUG - DeserializationContext.startPrefixMapping(886) | Enter: DeserializationContext::startPrefixMapping(xsd, http://www.w3.org/2001/XMLSchema) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startPrefixMapping(925) | Exit: DeserializationContext::startPrefixMapping() DEBUG - DeserializationContext.startPrefixMapping(886) | Enter: DeserializationContext::startPrefixMapping(xsi, http://www.w3.org/2001/XMLSchema-instance) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startPrefixMapping(925) | Exit: DeserializationContext::startPrefixMapping() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(http://schemas.xmlsoap.org/soap/env elope/, Envelope) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - DeserializationContext.pushNewElement(765) | Pushing element Envelope DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(http://schemas.xmlsoap.org/soap/env elope/, Body) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {soapenv}Body DEBUG - DeserializationContext.pushNewElement(765) | Pushing element Body DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(http://schemas.xmlsoap.org/soap/env elope/, Fault) DEBUG - BodyBuilder.onStartChild(109) | Enter: BodyBuilder::onStartChild() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {soapenv}Fault DEBUG - BodyBuilder.onStartChild(222) | Exit: BodyBuilder::onStartChild() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - DeserializationContext.pushNewElement(765) | Pushing element Fault DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(, faultcode) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {}faultcode DEBUG - DeserializationContext.pushNewElement(765) | Pushing element faultcode DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(, faultcode) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setValueInTarget00) DEBUG - DeserializerImpl.valueComplete(251) | Set value {http://schemas.xmlsoap.org/soap/envelope/}Server.userException in target [EMAIL PROTECTED] DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.SOAPFault:Fault DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(, faultstring) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {}faultstring DEBUG - DeserializationContext.pushNewElement(765) | Pushing element faultstring DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(, faultstring) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setValueInTarget00) DEBUG - DeserializerImpl.valueComplete(251) | Set value java.lang.NullPointerException in target [EMAIL PROTECTED] DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.SOAPFault:Fault DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(, detail) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {}detail DEBUG - DeserializationContext.pushNewElement(765) | Pushing element detail DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.startPrefixMapping(886) | Enter: DeserializationContext::startPrefixMapping(ns1, http://xml.apache.org/axis/) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - DeserializationContext.startPrefixMapping(925) | Exit: DeserializationContext::startPrefixMapping() DEBUG - DeserializationContext.startElement(1003) | Enter: DeserializationContext::startElement(http://xml.apache.org/axis/, hostname) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(pushHandler00) DEBUG - DeserializationContext.pushElementHandler(796) | Pushing handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(newElem00) DEBUG - MessageElement.<init>(239) | New MessageElement ([EMAIL PROTECTED]) named {ns1}hostname DEBUG - DeserializationContext.pushNewElement(765) | Pushing element hostname DEBUG - DeserializationContext.startElement(1067) | Exit: DeserializationContext::startElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(http://xml.apache.org/axis/, hostname) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.MessageElement:detail DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.endPrefixMapping(933) | Enter: DeserializationContext::endPrefixMapping(ns1) DEBUG - DeserializationContext.endPrefixMapping(945) | Exit: DeserializationContext::endPrefixMapping() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(, detail) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'ns1' - 'http://xml.apache.org/axis/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['http://xml.apache.org/axis/' hostname] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://xml.apache.org/axis/]:hostname DEBUG - SAXOutputter.characters(63) | SAXOutputter.characters ['salty'] DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['http://xml.apache.org/axis/' hostname] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element ns1:hostname DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - NSStack.pop(113) | NSPop (empty) DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.SOAPFault:Fault DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(http://schemas.xmlsoap.org/soap/envel ope/, Fault) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.SOAPBody:Body DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(http://schemas.xmlsoap.org/soap/envel ope/, Body) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to org.apache.axis.message.SOAPEnvelope:Envelope DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.endElement(1078) | Enter: DeserializationContext::endElement(http://schemas.xmlsoap.org/soap/envel ope/, Envelope) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(popHandler00) DEBUG - DeserializationContext.popElementHandler(829) | Popping handler [EMAIL PROTECTED] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - NSStack.pop(113) | NSPop (empty) DEBUG - DeserializationContext.endElement(1106) | Popped element stack to null DEBUG - DeserializationContext.endElement(1107) | Exit: DeserializationContext::endElement() DEBUG - DeserializationContext.endPrefixMapping(933) | Enter: DeserializationContext::endPrefixMapping(xsi) DEBUG - DeserializationContext.endPrefixMapping(945) | Exit: DeserializationContext::endPrefixMapping() DEBUG - DeserializationContext.endPrefixMapping(933) | Enter: DeserializationContext::endPrefixMapping(xsd) DEBUG - DeserializationContext.endPrefixMapping(945) | Exit: DeserializationContext::endPrefixMapping() DEBUG - DeserializationContext.endPrefixMapping(933) | Enter: DeserializationContext::endPrefixMapping(soapenv) DEBUG - DeserializationContext.endPrefixMapping(945) | Exit: DeserializationContext::endPrefixMapping() DEBUG - DeserializationContext.endDocument(858) | Enter: DeserializationContext::endDocument() DEBUG - DeserializationContext.endDocument(866) | Exit: DeserializationContext::endDocument() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(setMsgForm) DEBUG - SOAPPart.setCurrentForm(374) | Setting current message form to: FORM_SOAPENVELOPE (currentMessage is now org.apache.axis.message.SOAPEnvelope) DEBUG - SOAPPart.getAsSOAPEnvelope(724) | Exit: SOAPPart::getAsSOAPEnvelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'soapenv' - 'http://schemas.xmlsoap.org/soap/envelope/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsd' - 'http://www.w3.org/2001/XMLSchema' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'xsi' - 'http://www.w3.org/2001/XMLSchema-instance' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['http://schemas.xmlsoap.org/soap/envelope/' Envelope] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Envelope DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['http://schemas.xmlsoap.org/soap/envelope/' Body] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Body DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['http://schemas.xmlsoap.org/soap/envelope/' Fault] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://schemas.xmlsoap.org/soap/envelope/]:Fault DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['' faultcode] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:faultcode DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.characters(63) | SAXOutputter.characters ['soapenv:Server.userException'] DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['' faultcode] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element faultcode DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['' faultstring] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:faultstring DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.characters(63) | SAXOutputter.characters ['java.lang.NullPointerException'] DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['' faultstring] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element faultstring DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['' detail] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element []:detail DEBUG - NSStack.push(85) | NSPush (32) DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(register00) DEBUG - SerializationContext.registerPrefixForURI(469) | register 'ns1' - 'http://xml.apache.org/axis/' DEBUG - NSStack.push(85) | NSPush (32) DEBUG - NSStack.push(85) | NSPush (32) DEBUG - SAXOutputter.startElement(94) | SAXOutputter.startElement ['http://xml.apache.org/axis/' hostname] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(startElem00) DEBUG - SerializationContext.startElement(1031) | Start element [http://xml.apache.org/axis/]:hostname DEBUG - SAXOutputter.characters(63) | SAXOutputter.characters ['salty'] DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['http://xml.apache.org/axis/' hostname] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element ns1:hostname DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['' detail] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element detail DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['http://schemas.xmlsoap.org/soap/envelope/' Fault] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Fault DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['http://schemas.xmlsoap.org/soap/envelope/' Body] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Body DEBUG - NSStack.pop(119) | NSPop (32) DEBUG - SAXOutputter.endElement(109) | SAXOutputter.endElement ['http://schemas.xmlsoap.org/soap/envelope/' Envelope] DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(endElem00) DEBUG - SerializationContext.endElement(1141) | End element soapenv:Envelope DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - NSStack.pop(113) | NSPop (empty) DEBUG - SAXOutputter.endDocument(49) | SAXOutputter.endDocument DEBUG - HTTPSender.readFromSocket(796) | <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><soa penv:Fault><faultcode>soapenv:Server.userException</faultcode><faultstri ng>java.lang.NullPointerException</faultstring><detail><ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">salty</ns1:hostname></detail></s oapenv:Fault></soapenv:Body></soapenv:Envelope> DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(exit00) DEBUG - HTTPSender.invoke(157) | Exit: HTTPDispatchHandler::invoke DEBUG - SimpleChain.invoke(86) | Exit: SimpleChain::invoke DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(semanticCheck00) DEBUG - MustUnderstandChecker.invoke(55) | Doing SOAP semantic checks... DEBUG - SOAPPart.getAsSOAPEnvelope(661) | Enter: SOAPPart::getAsSOAPEnvelope() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(currForm) DEBUG - SOAPPart.getAsSOAPEnvelope(662) | current form is FORM_SOAPENVELOPE DEBUG - AxisClient.invoke(226) | Exit: AxisClient::invoke DEBUG - SOAPPart.getAsSOAPEnvelope(661) | Enter: SOAPPart::getAsSOAPEnvelope() DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(currForm) DEBUG - SOAPPart.getAsSOAPEnvelope(662) | current form is FORM_SOAPENVELOPE DEBUG - ProjectResourceBundle.handleGetObject(72) | org.apache.axis.i18n.resource::handleGetObject(toAxisFault00) java.lang.NullPointerException DEBUG - Call.invoke(2426) | Mapping Exception to AxisFault DEBUG - Call.invoke(2426) | NSPush (32) DEBUG - Call.invoke(2426) | NSPush (32) DEBUG - Call.invoke(2426) | org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG - Call.invoke(2426) | NSPop (empty) AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: java.lang.NullPointerException faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}hostname:salty java.lang.NullPointerException at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.ja va:221) at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.jav a:128) at org.apache.axis.encoding.DeserializationContext.endElement(Deserializati onContext.java:1087) at org.apache.xerces.parsers.AbstractSAXParser.endElement(AbstractSAXParser .java:585) at org.apache.xerces.impl.XMLNamespaceBinder.handleEndElement(XMLNamespaceB inder.java:898) at org.apache.xerces.impl.XMLNamespaceBinder.endElement(XMLNamespaceBinder. java:644) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XML DocumentFragmentScannerImpl.java:1008) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDis patcher.dispatch(XMLDocumentFragmentScannerImpl.java:1469) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDo cumentFragmentScannerImpl.java:329) at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:5 25) at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:5 81) at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152) at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java :1175) at javax.xml.parsers.SAXParser.parse(SAXParser.java:345) at org.apache.axis.encoding.DeserializationContext.parse(DeserializationCon text.java:227) at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696) at org.apache.axis.Message.getSOAPEnvelope(Message.java:424) at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java :796) at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.j ava:32) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83) at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165) at org.apache.axis.client.Call.invokeEngine(Call.java:2765) at org.apache.axis.client.Call.invoke(Call.java:2748) at org.apache.axis.client.Call.invoke(Call.java:2424) at org.apache.axis.client.Call.invoke(Call.java:2347) at org.apache.axis.client.Call.invoke(Call.java:1804) at com.ccr.cl.service.DecisionManagerWebServiceTest.main(DecisionManagerWeb ServiceTest.java:41)
