Wow, that's a lot of Ps...

Anyway, I've got a simple webapp I'm trying to deploy (it works locally
under Tomcat, Resin, etc), but what's happening on the remote site (running
under Resin 3.x) is that the web service methods aren't receiving the
parameters for some reason.

For example:

public class TestSvc {

    public String example1(String name) {
        return "Hello " + name + ", what's up?";
    }
}

In this case, the response I get back from the server is:

 "Hello  , what's up"

That is, the string is empty. If I write a web service with integers as
parameters, I get a SOAP error along the lines of:

 For input string: ""

What is going on here? I have no idea why it works locally but not remotely,
nor do I know how to debug the problem. Could someone help?

TIA

Reply via email to