I have a VB.NET VS2010 solution with a WinForms project that calls a website project in the same solution.
I can enter this web method: <WebMethod()> Public Function GetStartUpData() As DataSet
and other web methods, but not the next method. I wonder if this is due to the fact that this is the only web method that uses a parameter of type Nullable.
The method works, I just can't get into it. If I try, I get an error:
Unable to automatically switch to server. it is impossible to determine the stopping place
This is mistake? Is there any work?
<WebMethod()> Public Function RetrieveOrdersByFilter( _ ByVal customerId As Nullable(Of Integer), _ ByVal fromDate As Nullable(Of Date), _ ByVal toDate As Nullable(Of Date), _ ByVal fromStatusCodeId As Nullable(Of Integer), _ ByVal toStatusCodeId As Nullable(Of Integer)) As DataSet
Chadd
source share