Re: Problem with RPCRouter.invoke()

2002-11-17 Thread Sebastian
Shame on me, I thought you meant the method... Yup, and that did it, now it works. Thanks you so much! Seb At 16:53 17.11.2002 -0500, you wrote: The class is not marked public .. that could be the problem. Sanjiva. - Original Message - From: "Sebastian" <[EMAIL PROTECTED]> To: <[EMAIL

Re: Problem with RPCRouter.invoke()

2002-11-17 Thread Sebastian
But the method itself is marked public, or do you mean in the deplyoment descriptor? Seb At 16:53 17.11.2002 -0500, you wrote: The class is not marked public .. that could be the problem. Sanjiva. > class Hello > { > public String sayHello() > { > return ("Hello World!"); >

Re: Problem with RPCRouter.invoke()

2002-11-17 Thread Sanjiva Weerawarana
The class is not marked public .. that could be the problem. Sanjiva. - Original Message - From: "Sebastian" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 17, 2002 5:32 AM Subject: Problem with RPCRouter.invoke() > Hi everyone, > > Maybe someone of you could help me

Re: Some performance measures

2002-11-17 Thread Sanjiva Weerawarana
"Pavel Ausianik" <[EMAIL PROTECTED]> writes: > Switching to SAX is hardly possible for the current SOAP implemenation. The > main reason is that it will require changing too many APIs were DOM directly > used. IMHO it doesn't make any sense for Apache SOAP to go down this the SAX direction .. that

Re: Some performance measures

2002-11-17 Thread WJCarpenter
> Axis is SAX based .. Sorry, then. My mistake. I guess I must've misinterpreted some comments on the Axis list (which I don't follow as closely). -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Some performance measures

2002-11-17 Thread Pavel Ausianik
Switching to SAX is hardly possible for the current SOAP implemenation. The main reason is that it will require changing too many APIs were DOM directly used. BTW you could run an java profiler itself on your code - and get a result easily, without having any change to code. Best regards, Pavel

Problem with RPCRouter.invoke()

2002-11-17 Thread Sebastian
Hi everyone, Maybe someone of you could help me with this problem I encountered while trying to invoke a method on a very simple example. This is the Class whose method I want to invoke: class Hello { public String sayHello() { return ("Hello World!"); } } Its Deployment Descr