Hi to the list,
I have a service-implementation, that is a code-generated skeleton.
My client uses no stubs, just the plain AXIOM API.
The service works fine with SOAP1.1 but if the Client switches to SOAP1.2 I get
an AxisFault: Operation Not found EPR is
http://localhost:8080/axis2/services/LDAPQueryService and WSA Action = null
There was a similar post to this symptoms a few weeks ago which ended in the
hint to use Axis2 1.0
[http://marc.theaimsgroup.com/?l=axis-user&m=114716535915463&w=2=]
I use Axis2 1.0 - nightly build of 07.06.2006
Below is the working SOAP1.1 requestmessage and my client implementation (just
the relevant parts).
I also attached the debug-output of Axis for both SOAP1.1 and SOAP 1.2 - if
this might help.
Does anyone has any ideas why this happens?
Thanks for your time
Bille
-------------------------------------------------------
SOAP1.1-Request which works:
<?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header />
<soapenv:Body>
<sbr:getGroupsRequest
xmlns:sbr="http://localhost:8080/axis2/services/LDAPQueryService/xsd">
<sbr:dir>Wert1</sbr:dir>
</sbr:getGroupsRequest>
</soapenv:Body>
</soapenv:Envelope>
-------------------------------------------------------
Client :: switching to SOAP 1.2 with this 2 changes (see the comments)
...
EndpointReference targetEpr = new
EndpointReference("http://localhost:8080/axis2/services/LDAPQueryService");
// OMFactory fac = OMAbstractFactory.getOMFactory(); // decomment
for SOAP 1.1
SOAPFactory fac = OMAbstractFactory.getSOAP12Factory(); // comment for
SOAP 1.1
OMNamespace ns =
fac.createOMNamespace("http://localhost:8080/axis2/services/LDAPQueryService/xsd",
"sbr");
OMElement payload = fac.createOMElement("getGroupsRequest", ns);
OMElement param1 = fac.createOMElement("dir", ns);
param1.setText("Wert1");
payload.addChild(param1);
try {
Options options = new Options();
options.setTo(targetEpr);
//options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
options.setAction("urn:getGroups");
options.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); //
comment for SOAP 1.1
ServiceClient client = new ServiceClient();
client.setOptions(options);
OMElement response = client.sendReceive(payload);
}
...
______________________________________________________________
Verschicken Sie romantische, coole und witzige Bilder per SMS!
Jetzt bei WEB.DE FreeMail: http://f.web.de/?mc=021193
DEBUG-Output for SOAP 1.1
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamReader is
com.ctc.wstx.sr.ValidatingStreamReader
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Envelope:Envelope
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Starting to process
SOAP 1.1 message
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
EnvelopeBy the StaxSOAPModelBuilder
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Header:Header
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
HeaderBy the StaxSOAPModelBuilder
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Header:Header
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Body:Body
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
BodyBy the StaxSOAPModelBuilder
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}getGroupsRequest:getGroupsRequest
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
getGroupsRequestBy the StaxSOAPModelBuilder
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Transport"
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Transport"
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'RequestURIBasedDispatcher'
in Phase 'Transport'
2006-07-02 23:19:31,296 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.RequestURIBasedDispatcher - Checking for Service using
target endpoint address : http://localhost:8080/axis2/services/LDAPQueryService
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.i18n.ProjectResourceBundle -
org.apache.axis2.i18n.resource::handleGetObject(servicefound)
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.AbstractDispatcher - Found AxisService :
LDAPQueryService
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.RequestURIBasedDispatcher - Checking for Operation
using target endpoint uri fragment : null
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'SOAPActionBasedDispatcher'
in Phase 'Transport'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.SOAPActionBasedDispatcher - Checking for Operation
using SOAPAction : urn:getGroups
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.i18n.ProjectResourceBundle -
org.apache.axis2.i18n.resource::handleGetObject(operationfound)
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.AbstractDispatcher - Found AxisOperation : getGroups
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Transport"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Security"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Security"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Security"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "PreDispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "PreDispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingFinalInHandler' in
Phase 'PreDispatch'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - Starting
WS-Addressing Final IN handler ...
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - No Headers present
corresponding to WS-Addressing Final
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler
'AddressingSubmissionInHandler' in Phase 'PreDispatch'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - Starting
WS-Addressing Submission IN handler ...
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - No Headers present
corresponding to WS-Addressing Submission
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"PreDispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Dispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Dispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingBasedDispatcher'
in Phase 'Dispatch'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler
'SOAPMessageBodyBasedDispatcher' in Phase 'Dispatch'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'InstanceDispatcher' in Phase
'Dispatch'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Dispatch"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"OperationInPhase"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "OperationInPhase"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"OperationInPhase"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"soapmonitorPhase"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "soapmonitorPhase"
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'null' in Phase
'soapmonitorPhase'
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}dir:dir
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
dirBy the StaxSOAPModelBuilder
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - CHARACTERS: [Wert1]
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}dir:dir
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}getGroupsRequest:getGroupsRequest
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Body:Body
2006-07-02 23:19:31,306 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://schemas.xmlsoap.org/soap/envelope/}Envelope:Envelope
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"soapmonitorPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.AxisEngine - checkUsingAddressing:
WSAddressingFlag=unspecified
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
localhost.axis2.services.ldapqueryservice.LDAPQueryServiceMessageReceiverInOut
- ####### up to invoke BusinessLogic in MessageReceiver
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
localhost.axis2.services.ldapqueryservice.LDAPQueryServiceMessageReceiverInOut
- Incoming Request: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header
/><soapenv:Body><sbr:getGroupsRequest
xmlns:sbr="http://localhost:8080/axis2/services/LDAPQueryService/xsd"><sbr:dir>Wert1</sbr:dir></sbr:getGroupsRequest></soapenv:Body></soapenv:Envelope>
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_DOCUMENT:
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}getGroupsResponse:getGroupsResponse
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT: kid:kid
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - CHARACTERS: [ResponseTest]
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT: kid:kid
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}getGroupsResponse:getGroupsResponse
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
localhost.axis2.services.ldapqueryservice.LDAPQueryServiceMessageReceiverInOut
- Outgoing Response: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header
/><soapenv:Body><getGroupsResponse
xmlns="http://localhost:8080/axis2/services/LDAPQueryService/xsd"><kid>ResponseTest</kid></getGroupsResponse></soapenv:Body></soapenv:Envelope>
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"OperationOutPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "OperationOutPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"OperationOutPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"soapmonitorPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "soapmonitorPhase"
2006-07-02 23:19:31,316 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'null' in Phase
'soapmonitorPhase'
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"soapmonitorPhase"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"PolicyDetermination"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "PolicyDetermination"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"PolicyDetermination"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "MessageOut"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "MessageOut"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingOutHandler' in
Phase 'MessageOut'
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.handlers.addressing.AddressingOutHandler - Addressing is
disabled .....
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "MessageOut"
2006-07-02 23:19:31,326 [http-8080-Processor24] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
----------------------------------------------------------------------------------------------------------------------------------------------------
DEBUG-Output for SOAP 1.2
2006-07-02 23:26:56,696 [http-8080-Processor25] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamReader is
com.ctc.wstx.sr.ValidatingStreamReader
2006-07-02 23:26:56,696 [http-8080-Processor25] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://www.w3.org/2003/05/soap-envelope}Envelope:Envelope
2006-07-02 23:26:56,696 [http-8080-Processor25] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Starting to process
SOAP 1.2 message
2006-07-02 23:26:56,696 [http-8080-Processor25] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
EnvelopeBy the StaxSOAPModelBuilder
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://www.w3.org/2003/05/soap-envelope}Header:Header
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
HeaderBy the StaxSOAPModelBuilder
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - END_ELEMENT:
{http://www.w3.org/2003/05/soap-envelope}Header:Header
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://www.w3.org/2003/05/soap-envelope}Body:Body
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
BodyBy the StaxSOAPModelBuilder
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.om.impl.builder.StAXOMBuilder - START_ELEMENT:
{http://localhost:8080/axis2/services/LDAPQueryService/xsd}getGroupsRequest:getGroupsRequest
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder - Build the OMElelment
getGroupsRequestBy the StaxSOAPModelBuilder
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Transport"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Transport"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'RequestURIBasedDispatcher'
in Phase 'Transport'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.RequestURIBasedDispatcher - Checking for Service using
target endpoint address : http://localhost:8080/axis2/services/LDAPQueryService
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.i18n.ProjectResourceBundle -
org.apache.axis2.i18n.resource::handleGetObject(servicefound)
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.AbstractDispatcher - Found AxisService :
LDAPQueryService
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.RequestURIBasedDispatcher - Checking for Operation
using target endpoint uri fragment : null
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'SOAPActionBasedDispatcher'
in Phase 'Transport'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.SOAPActionBasedDispatcher - Checking for Operation
using SOAPAction : null
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Transport"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Security"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Security"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Security"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "PreDispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "PreDispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingFinalInHandler' in
Phase 'PreDispatch'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - Starting
WS-Addressing Final IN handler ...
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - No Headers present
corresponding to WS-Addressing Final
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler
'AddressingSubmissionInHandler' in Phase 'PreDispatch'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - Starting
WS-Addressing Submission IN handler ...
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.handlers.addressing.AddressingInHandler - No Headers present
corresponding to WS-Addressing Submission
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"PreDispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "Dispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "Dispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingBasedDispatcher'
in Phase 'Dispatch'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.i18n.ProjectResourceBundle -
org.apache.axis2.i18n.resource::handleGetObject(checkingoperation)
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.AddressingBasedDispatcher - Checking for Operation
using WSAAction : null
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler
'SOAPMessageBodyBasedDispatcher' in Phase 'Dispatch'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher - Checking for
Operation using SOAP message body's first child's local name : getGroupsRequest
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'InstanceDispatcher' in Phase
'Dispatch'
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "Dispatch"
2006-07-02 23:26:56,706 [http-8080-Processor25] DEBUG
org.apache.axis2.i18n.ProjectResourceBundle -
org.apache.axis2.i18n.resource::handleGetObject(operationnotfoundforepr)
2006-07-02 23:26:56,716 [http-8080-Processor25] DEBUG
org.apache.axis2.transport.http.AxisServlet - org.apache.axis2.AxisFault:
Operation Not found EPR is
http://localhost:8080/axis2/services/LDAPQueryService and WSA Action = null
2006-07-02 23:26:56,726 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase
"PolicyDetermination"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "PolicyDetermination"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase
"PolicyDetermination"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking pre-condition for Phase "MessageOut"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking phase "MessageOut"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Invoking Handler 'AddressingOutHandler' in
Phase 'MessageOut'
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axis2.engine.Phase - Checking post-conditions for phase "MessageOut"
2006-07-02 23:26:56,736 [http-8080-Processor25] DEBUG
org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is
com.ctc.wstx.sw.SimpleNsStreamWriter
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]