When I specify <SoapDocumentMethod(OneWay:=True)>
on my webservice it doesn't seem to get called. If I remove that the webservice works properly. Also, everything works fine on the development machine just not on the server.
Here is my web method:
<SoapDocumentMethod(OneWay:=True)> _
<WebMethod()> _
Public Sub Write(ByVal processGroupId As Integer)
xslClass.xslHelper.writeDatabase(processGroupId)
End Sub
Here is my calling code:
Dim svc As New svcWriteFiles.WriteDatabaseService
svc.WriteAsync(e.CommandArgument)
Any ideas?