.net 2.0 Web Service Bug? args is null

I wrote a sample web service like this:

[WebMethod]
public string Hello(string who) {
return "Hello " + who;
}

I test it in web test page and a sample .net 2.0 winform application,it's run as my will.

But when I wrote a delphi7 program,I found "who" arg is null,if you use arg as int ,it's 0.

I also test it in java.

I think it 's a bug in .net 2.0

why




Answer this question

.net 2.0 Web Service Bug? args is null