Im getting a similar error when accessing StockQuoteService
http://localhost:8080/axis2/rest/StockQuoteService?getPrice=IBM
SEVERE: Servlet /axis2- threw load() exception
org.apache.axis2.deployment.DeploymentException: Dispatch phase not found on
the global InFlow phase of the axis2.xml. Please recheck
AAR is located in
WEB-INF/services/StockQuoteService.aar
MAR's location
/WEB-INF/modules/addressing-1.1.mar
/WEB-INF/modules/rampart-1.1,mar
/WEB-INF/modules/soapmonitor-1.1.mar
the following Servlet classes are located in my webapp WEB-INF/classes
org.apache.axis2.transport.http.AxisRESTServlet
org.apache.axis2.transport.http.AxisAdminServlet
org.apache.axis2.transport.http.AxisServlet
web.xml has these mappings
<servlet-mapping>
<servlet-name>AxisRESTServlet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/servlet/AxisServlet</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>*.jws</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AxisAdminServlet</servlet-name>
<url-pattern>/axis2-admin/*</url-pattern>
</servlet-mapping>
\WEB-INF\conf\axis2.xml has these phases defined
<phaseOrder type="InFlow">
<!-- System pre defined phases -->
<phase name="Transport">
<handler name="RequestURIBasedDispatcher"
class="org.apache.axis2.engine.RequestURIBasedDispatcher">
<order phase="Transport"/>
</handler>
<handler name="SOAPActionBasedDispatcher"
class="org.apache.axis2.engine.SOAPActionBasedDispatcher">
<order phase="Transport"/>
</handler>
</phase>
<phase name="Security"/>
<phase name="PreDispatch"/>
<phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase">
<handler name="AddressingBasedDispatcher"
class="org.apache.axis2.engine.AddressingBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="SOAPMessageBodyBasedDispatcher"
class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="InstanceDispatcher"
class="org.apache.axis2.engine.InstanceDispatcher">
<order phase="Dispatch"/>
</handler>
</phase>
<!-- System pre defined phases -->
<!-- After Postdispatch phase module author or or service author can
add any phase he want -->
<phase name="OperationInPhase"/>
<phase name="soapmonitorPhase"/>
</phaseOrder>
<phaseOrder type="OutFlow">
<!-- user can add his own phases to this area -->
<phase name="soapmonitorPhase"/>
<phase name="OperationOutPhase"/>
<!--system predefined phase-->
<!--these phase will run irrespective of the service-->
<phase name="PolicyDetermination"/>
<phase name="MessageOut"/>
<phase name="Security"/>
</phaseOrder>
<phaseOrder type="InFaultFlow">
<phase name="PreDispatch"/>
<phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase">
<handler name="RequestURIBasedDispatcher"
class="org.apache.axis2.engine.RequestURIBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="SOAPActionBasedDispatcher"
class="org.apache.axis2.engine.SOAPActionBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="AddressingBasedDispatcher"
class="org.apache.axis2.engine.AddressingBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="SOAPMessageBodyBasedDispatcher"
class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher">
<order phase="Dispatch"/>
</handler>
<handler name="InstanceDispatcher"
class="org.apache.axis2.engine.InstanceDispatcher">
<order phase="PostDispatch"/>
</handler>
</phase>
<!-- user can add his own phases to this area -->
<phase name="OperationInFaultPhase"/>
<phase name="soapmonitorPhase"/>
</phaseOrder>
<phaseOrder type="OutFaultFlow">
<!-- user can add his own phases to this area -->
<phase name="soapmonitorPhase"/>
<phase name="OperationOutFaultPhase"/>
<phase name="PolicyDetermination"/>
<phase name="MessageOut"/>
</phaseOrder>
Advice ?
Martin --
---------------------------------------------------------------------------
This e-mail message (including attachments, if any) is intended for the use of
the individual or entity to which it is addressed and may contain information
that is privileged, proprietary , confidential and exempt from disclosure. If
you are not the intended recipient, you are notified that any dissemination,
distribution or copying of this communication is strictly prohibited.
---------------------------------------------------------------------------
Le present message electronique (y compris les pieces qui y sont annexees, le
cas echeant) s'adresse au destinataire indique et peut contenir des
renseignements de caractere prive ou confidentiel. Si vous n'etes pas le
destinataire de ce document, nous vous signalons qu'il est strictement interdit
de le diffuser, de le distribuer ou de le reproduire.
----- Original Message -----
From: Manoj Khangaonkar
To: [email protected]
Sent: Friday, January 05, 2007 8:29 PM
Subject: Re: Deployment Problem with Quick Start Sample
And if you are using the browser you need to use the REST url
http://mindleech:8080/axis2/rest/StockQuoteService?getPrice=IBM
On 1/5/07, Manoj Khangaonkar <[EMAIL PROTECTED]> wrote:
Doug,
The aar needs to be copied to webapps/axis2/web-inf/services directory. You
need to copy it
Look at your tomcat logs , there should be an error.
In 1.1.x -- the current trunk , rest is broken -see JIRA 1917 - i have
provided a patch.
One of the committers will need to commit the patch.
Mj
On 1/5/07, Doug Kunzman <[EMAIL PROTECTED] > wrote:
Hi-
I am using AXIS2 version 1.1 and attempted to deploy the quick start
sample using the upload facility. I noticed that the StockQuateService.aar got
copied to the /services directory rathern than the /WEB-INF directory as the
documentation describes. Which is correct? Can someone explain?
Also, when I type into a browser the following URL
http://mindleech:8080/axis2/services/StockQuoteService
I get the following message,
−
<soapenv:Fault>
<faultcode/>
−
<faultstring>
I can not find a service for this request to be serviced. Check the WSDL
and the request URI; nested exception is:
org.apache.axis2.AxisFault: I can not find a service for this
request to be serviced. Check the WSDL and the request URI
</faultstring>
<detail/>
</soapenv:Fault>
When I type,
http://mindleech:8080/axis2/rest/StockQuoteService?getPrice=IBM
I get no response. Can someone please help me troubleshoot this problem
doug
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]