Song InHyuk wrote:
> I found a problem passing arguments from ASP.NET Application to a Cache'
> Web Method.
> 
> If I send an empty string argument from .NET, then a Cache Web Method 
> throws an error.
> Of course with some string, it works fine.
> 
> Cache Code is like this.
> 
> 1: ClassMethod FindAdmission(id As %String) As %XML.DataSet [ WebMethod ]
> 2: {
> 3:     if (id'="") // there is ID
> 4:     {
> 5:        ...
> 6:     }
> 7:     ...
> 8: }
> 
> I also tried to $Get(id) instead of just id at line No 3.

It is most likely that no error occurred on line 3.

You need to post the actual code that you ran and the actual 
error message that you got.

Reply via email to