Hi,
Can someone guide me on how to call the public property from web services. i got error
Server was unable to process request. ---> Object reference not set to an instance of an object.
Below is WS public property
Public Property LoginID() As String
Get
Return Me.loginIDField
End Get
Set
Me.loginIDField = value
End Set
End Property
Below is how i call from form1
Dim NewCustomer As New SendValueToWS.NewCustomerRegistrationWS.CustomerSvc
Dim NewCustomer1 As New SendValueToWS.NewCustomerRegistrationWS.RegistrationResult
NewCustomer1.LoginID = ""
NewCustomer.NewCustomerRegistration(NewCustomer1, "")
please help me to solve this