Anne, I have tried invoking the method in the IVRService.wsdl with 3 different clients and the soap request is different for each client. Is this a problem in the wsdl that is causing it? Attached is the wsdl.
I invoked the StockQuoteService in the axis 2 example with a python client and the soap request looks like this which is again not correct and results in a error as it is missing the symbol element. <?xml version='1.0' encoding='utf-8'?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <getPrice SOAP-ENC:root="1"> <v1 xsi:type="xsd:string">IBM</v1> </getPrice> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Soap Response <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Heade r /><soapenv:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><fau ltstring>java.lang.RuntimeException: Unexpected subelement v1</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope> The soap request from a php client looks like this <?xml version='1.0' encoding='utf-8'?><SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SOAP-ENV:Body> Soap Response <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Heade r /><soapenv:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><fau ltstring>java.lang.RuntimeException: Unexpected subelement getPrice</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope> I am not able to figure out why there is a discrepancy each time. Please help. Please suggest a good non java client to test the service. Thanks Harish -----Original Message----- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 6:32 AM To: [email protected] Subject: Re: Getting error invoking axis2 service from php client - databinding jibx This message is still not accurate. <phone> must be namespace qualified. Anne On 1/25/07, Harish Hirasave <[EMAIL PROTECTED]> wrote: > Hello Anne, > > I tried with another client. I get the same error though it has phone > element in it. > > Request > > <?xml version='1.0' encoding='utf-8'?><SOAP-ENV:Envelope > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" > xmlns:xsd="http://www.w3.org/1999/XMLSchema" > SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> > <SOAP-ENV:Body><ns1:getEligibleIVRPromotions > xmlns:ns1="urn:IVRService"><phone > xsi:type="xsd:string">5127896161</phone></ns1:getEligibleIVRPromotions>< > /SOAP-ENV:Body> > </SOAP-ENV:Envelope> > > Response > > > ?xml version='1.0' encoding='utf-8'?><soapenv:Envelope > xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Heade > r > /><soapenv:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><fau > ltstring>Missing required element > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}phone</faultst > ring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope> > > > Thanks > Harish > > > > -----Original Message----- > From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 23, 2007 4:33 PM > To: [email protected] > Subject: Re: Getting error invoking axis2 service from php client - > databinding jibx > > The PHP client is not producing a valid message. According to the > WSDL, the request message is supposed to look like this: > > <SOAP-ENV:Body> > <getEligibleIVRPromotions > xmlns="http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd"> > <phone>7709733488</phone> > </getEligibleIVRPromotions> > </SOAP-ENV:Body> > > Anne > > On 1/23/07, Harish Hirasave <[EMAIL PROTECTED]> wrote: > > > > > > > > > > Hi, > > > > > > > > I generated a web service in axis2 using jibx data binding. When I > test the > > service using a Java client the service works and I get an output but > when I > > test it with a php client I get the following error > > > > > > > > > > > > 2007-01-23 14:39:34,007 DEBUG > > [org.apache.axis2.transport.http.AxisServlet] > > org.apache.axis2.AxisFault: Missing required element > > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}phone > > > > > > > > Below is the request and response soap envelope .I have also attached > the > > wsdl for reference. The request has the input parameter value > 7709733488 but > > the response says missing element. Please help. > > > > > > > > Request > > > > > > > > <?xml version='1.0' encoding='utf-8'?><SOAP-ENV:Envelope > > xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" > > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > > > > <SOAP-ENV:Body> > > > > > > > > <getEligibleIVRPromotions > > > xmlns="http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd">7709733 > 488</getEligibleIVRPromotions> > > > > </SOAP-ENV:Body> > > > > </SOAP-ENV:Envelope> > > > > > > > > Response > > > > > > > > <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope > > > xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Heade > r > > > /><soapenv:Body><soapenv:Fault><faultcode>soapenv:Client</faultcode><fau > ltstring>Missing > > required element > > > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}phone</faultst > ring><detail > > /></soapenv:Fault></soapenv:Body></soapenv:Envelope> > > > > > > > > Axis 2 log with the error > > > > > > > > 2007-01-23 15:44:50,939 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamReader is > > com.ctc.wstx.sr.ValidatingStreamReader > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}schema:schema > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}sequence:sequence > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}complexType:complexType > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}element:element > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://www.w3.org/2001/XMLSchema}schema:schema > > > > 2007-01-23 15:44:50,954 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] SPACE: [ > > > > ] > > > > 2007-01-23 15:44:51,110 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamWriter is > > com.ctc.wstx.sw.SimpleNsStreamWriter > > > > 2007-01-23 15:44:51,376 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamReader is > > com.ctc.wstx.sr.ValidatingStreamReader > > > > 2007-01-23 15:44:51,392 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] SPACE: [ > > > > > > > > ] > > > > 2007-01-23 15:44:51,392 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://schemas.xmlsoap.org/soap/envelope/}Envelope:Envelope > > > > 2007-01-23 15:44:51,439 DEBUG > > [org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder] > > Starting to process SOAP 1.1 message > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder] > > Build the OMElelment EnvelopeBy the StaxSOAPModelBuilder > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > {http://schemas.xmlsoap.org/soap/envelope/}Body:Body > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder] > > Build the OMElelment BodyBy the StaxSOAPModelBuilder > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > > > > > ] > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > START_ELEMENT: > > > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}getEligibleIVR > Promotions:getEligibleIVRPromotions > > > > 2007-01-23 15:44:51,454 DEBUG > > [org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder] > > Build the OMElelment getEligibleIVRPromotionsBy the > StaxSOAPModelBuilder > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "Transport" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "Transport" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'RequestURIBasedDispatcher' in Phase 'Transport' > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.engine.RequestURIBasedDispatcher] > > Checking for Service using target endpoint address : > > http://harish/axis2/services/IVRService > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.i18n.ProjectResourceBundle] > > org.apache.axis2.i18n.resource::handleGetObject(servicefound) > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.engine.AbstractDispatcher] Found > > AxisService : IVRService > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.engine.RequestURIBasedDispatcher] > > Attempted to check for Operation using target endpoint URI, but the > > operation fragment was missing > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'SOAPActionBasedDispatcher' in Phase 'Transport' > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.engine.SOAPActionBasedDispatcher] > > Checking for Operation using SOAPAction : urn:getEligibleIVRPromotions > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.i18n.ProjectResourceBundle] > > org.apache.axis2.i18n.resource::handleGetObject(operationfound) > > > > 2007-01-23 15:44:51,470 DEBUG > > [org.apache.axis2.engine.AbstractDispatcher] Found > > AxisOperation : getEligibleIVRPromotions > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "Transport" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "Security" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "Security" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "Security" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "PreDispatch" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "PreDispatch" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'AddressingFinalInHandler' in Phase 'PreDispatch' > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'AddressingSubmissionInHandler' in Phase 'PreDispatch' > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "PreDispatch" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "Dispatch" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "Dispatch" > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'AddressingBasedDispatcher' in Phase 'Dispatch' > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'SOAPMessageBodyBasedDispatcher' in Phase > > 'Dispatch' > > > > 2007-01-23 15:44:51,470 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'InstanceDispatcher' in Phase 'Dispatch' > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'AddressingWSDLValidationHandler' in Phase > > 'Dispatch' > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axis2.handlers.addressing.AddressingWSDLValidationHandler] > > checkAction: IS_ADDR_INFO_ALREADY_PROCESSED=null > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axis2.handlers.addressing.AddressingWSDLValidationHandler] > > checkUsingAddressing: WSAddressingFlag=unspecified > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "Dispatch" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "OperationInPhase" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "OperationInPhase" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "OperationInPhase" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "soapmonitorPhase" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "soapmonitorPhase" > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'null' in Phase 'soapmonitorPhase' > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamWriter is > > com.ctc.wstx.sw.SimpleNsStreamWriter > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [7709733488] > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}getEligibleIVR > Promotions:getEligibleIVRPromotions > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://schemas.xmlsoap.org/soap/envelope/}Body:Body > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > CHARACTERS: [ > > > > ] > > > > 2007-01-23 15:44:51,485 DEBUG > > [org.apache.axiom.om.impl.builder.StAXOMBuilder] > > END_ELEMENT: > > {http://schemas.xmlsoap.org/soap/envelope/}Envelope:Envelope > > > > 2007-01-23 15:44:51,485 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "soapmonitorPhase" > > > > 2007-01-23 15:44:51,642 DEBUG > > [org.apache.axis2.transport.http.AxisServlet] > > org.apache.axis2.AxisFault: Missing required element > > {http://bellsouth_ivrservice_axis2.webservice.rrt.com/xsd}phone > > > > 2007-01-23 15:44:51,642 DEBUG > > [org.apache.axis2.addressing.AddressingHelper] > > isReplyRedirected: FaultTo is null. Returning isReplyRedirected > > > > 2007-01-23 15:44:51,642 DEBUG > > [org.apache.axis2.addressing.AddressingHelper] > > isReplyRedirected: ReplyTo is null. Returning false > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "soapmonitorPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "soapmonitorPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'null' in Phase 'soapmonitorPhase' > > > > 2007-01-23 15:44:51,704 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamWriter is > > com.ctc.wstx.sw.SimpleNsStreamWriter > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "soapmonitorPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "OperationOutFaultPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "OperationOutFaultPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "OperationOutFaultPhase" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "PolicyDetermination" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "PolicyDetermination" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "PolicyDetermination" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > pre-condition for Phase "MessageOut" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > phase > > "MessageOut" > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Invoking > > Handler 'AddressingOutHandler' in Phase 'MessageOut' > > > > 2007-01-23 15:44:51,704 DEBUG > > [org.apache.axis2.handlers.addressing.AddressingHandler] > > Addressing is disabled ..... > > > > 2007-01-23 15:44:51,704 DEBUG [org.apache.axis2.engine.Phase] Checking > > post-conditions for phase "MessageOut" > > > > 2007-01-23 15:44:51,704 DEBUG > > [org.apache.axiom.om.util.StAXUtils] XMLStreamWriter is > > com.ctc.wstx.sw.SimpleNsStreamWriter > > > > 2007-01-23 15:44:51,704 ERROR [org.jboss.web.localhost.Engine] > > ErrorDispatcherValve[localhost]: Exception Processing > > ErrorPage[errorCode=500, > > location=/axis2-web/Error/error500.jsp] > > > > java.lang.IllegalStateException > > > > at > > org.apache.coyote.Response.reset(Response.java:340) > > > > at > > > org.apache.coyote.tomcat4.CoyoteResponse.reset(CoyoteResponse.java:628) > > > > at > > > org.apache.coyote.tomcat4.CoyoteResponse.reset(CoyoteResponse.java:824) > > > > at > > > org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherVa > lve.java:413) > > > > at > > > org.apache.catalina.valves.ErrorDispatcherValve.status(ErrorDispatcherVa > lve.java:327) > > > > at > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa > lve.java:181) > > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > > > > at > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java > :172) > > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > > > > at > > > org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAs > sociationValve.java:65) > > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > > > > at > > > org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577 > ) > > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > > > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > at > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. > java:174) > > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > > > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > at > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:197) > > > > at > > > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:78 > 1) > > > > at > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC > onnection(Http11Protocol.java:549) > > > > at > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:60 > 5) > > > > at > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool > .java:677) > > > > at java.lang.Thread.run(Thread.java:534) > > > > > > > > Thanks > > > > Harish > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
IVRService.wsdl
Description: IVRService.wsdl
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
