Hi Markus, I'm trying to invoke services on the SoapServer but get every time AxisFault. Axis can not find the Service. The same behaviour if I invoke the service from remote Axis client. But the status.xsp is working properly. It seems that only the AdminService is known to Axis.
Any suggestions? Alexander XSP: <xsp:page language="java" xmlns:xsp="http://apache.org/xsp" xmlns:xsp-request="http://apache.org/xsp/request/2.0" xmlns:xscript="http://apache.org/xsp/xscript/1.0" xmlns:soap="http://apache.org/xsp/soap/3.0"> <page> <soap:call method="Cocoon-JVM-Memory" url="rpcrouter"> <getCPUInfo> </getCPUInfo> </soap:call> </page> </xsp:page> Exception: AxisFault faultCode: {http://xml.apache.org/axis/}Server.NoService faultString: The AXIS engine could not find a target service to invoke! targetService is null faultActor: null faultDetail: stackTrace: AxisFault faultCode: {http://xml.apache.org/axis/}Server.NoService faultString: The AXIS engine could not find a target service to invoke! targetService is null faultActor: null faultDetail: The AXIS engine could not find a target service to invoke! targetService is null at org.apache.axis.server.AxisServer.invoke(AxisServer.java:307) at org.apache.cocoon.components.axis.SoapServerImpl.invoke(SoapServerImpl.java:510) at org.apache.cocoon.reading.AxisRPCReader.generate(AxisRPCReader.java:260) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.processReader(AbstractCachingProcessingPipeline.java:801) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.process(AbstractProcessingPipeline.java:486) at org.apache.cocoon.components.treeprocessor.sitemap.ReadNode.invoke(ReadNode.java:119) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:84) at org.apache.cocoon.components.treeprocessor.sitemap.PreparableMatchNode.invoke(PreparableMatchNode.java:164) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:108) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:153) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:108) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:143) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:317) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:299) at org.apache.cocoon.Cocoon.process(Cocoon.java:600) at org.apache.cocoon.servlet.CocoonServlet.service(CocoonServlet.java:1074) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027) at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125) at java.lang.Thread.run(Thread.java:484) >>> Marcus Crafter <[EMAIL PROTECTED]> Tuesday, 11. March 2003 15:49:57 >>> Hi Alexander, Thanks for the report - I've taken this up on the dev list and we'll come up with a solution soon. Cheers, Marcus On Tue, Mar 11, 2003 at 03:01:40PM +0100, Alexander Enns wrote: > Hi Markus, > > the problem was realy the compiler settings. > I have changed the compiler setting to Javac. Now all working properly. > > At last I can begin to play with SoapServer. :-) > > Thanks for Your help, > > Alexander > > >>> Marcus Crafter <[EMAIL PROTECTED]> Tuesday, 11. March 2003 14:10:05 >>> > On Tue, Mar 11, 2003 at 01:38:07PM +0100, Stephan Michels wrote: > > > > > > On Tue, 11 Mar 2003, Marcus Crafter wrote: > > > > > Hi Alexander, > > > > > > On Tue, Mar 11, 2003 at 11:54:46AM +0100, Alexander Enns wrote: > > > > > > > > Java 1.3.1 > > > > ... > > > > > > > > java.lang.UnsupportedClassVersionError: org/apache/cocoon/www/test_xsp > > > > (Unsupported major.minor version 48.0) > > > > > > I suspect the XSP files have been compiled using jdk 1.4.x and > > > you're attempting to run them using jdk 1.3.1. Could that be the > > > case ? > > > > > > I'd clean out your work directory (ie. remove the xsp class files) > > > and see then if the problem persists. > > > > I got the same exception, but I doesn't use a 1.4 jdk. Can it be that > > we currently using a XSP compiler, which targets at 1.4? > > Could be. The default XSP compiler was changed recently from javac > to Eclipse. > > There's no chance that the XSP pages were compiled with jdk 1.4 > sometime in the past and are left over in your work directory ? > (it's happened to me :) ) > > If not, can you perform your same test using the Javac compiler > (the settings can be m.Base.invoke(ContainerBase.java:943odified in your > cocoon.xconf), and report > back your results ? > > Thanks! Cheers, > > Marcus > > -- > ..... > ,,$$$$$$$$$, Marcus Crafter > ;$' '$$$$: Computer Systems Engineer > $: $$$$: ManageSoft GmbH > $ o_)$$$: 82-84 Mainzer Landstrasse > ;$, _/\ &&:' 60327 Frankfurt Germany > ' /( &&& > \_&&&&' > &&&&. > &&&&&&&: > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- ..... ,,$$$$$$$$$, Marcus Crafter ;$' '$$$$: Computer Systems Engineer $: $$$$: ManageSoft GmbH $ o_)$$$: 82-84 Mainzer Landstrasse ;$, _/\ &&:' 60327 Frankfurt Germany ' /( &&& \_&&&&' &&&&. &&&&&&&: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]