On Fri, 2006-11-17 at 11:26 +0800, Yang Zhonghua (Dr) wrote: > > The run time error msg: > > org.apache.axis2.AxisFault: HTTP Transport error : '404' - > '/axis2/services/AskService'; nested exception is: > org.apache.axis2.AxisFault: HTTP Transport error : '404' - > '/axis2/services/AskService'; nested exception is: > org.apache.axis2.AxisFault: HTTP Transport error : '404' - > '/axis2/services/AskService'; nested exception is: > org.apache.axis2.AxisFault: HTTP Transport error : '404' - > '/axis2/services/AskService'
HTTP error code 404 means the URI you're sending to has not been found: ===== 404 Not Found The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable. ===== This problem has nothing to do with Axis2 because its not even going to Axis2 on the server (as we never generate a 404). Have you deployed the server side correctly? (Is it Axis2 on the server?) Sanjiva. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
