M
Mark
i have a very simple web service. this is called from a .net app
in this webservice if i wanted to capture the cookies in the header coming
from the calling app, how would i do this?
thanks.
Imports System.Web.Services
<System.Web.Services.WebService(Namespace:="urn:Example1")> _
Public Class Example1
Inherits System.Web.Services.WebService<WebMethod()> _
Public Function HelloWorld(ByVal name As String) As String
Return "Hello " & name
End Function
End Class
in this webservice if i wanted to capture the cookies in the header coming
from the calling app, how would i do this?
thanks.
Imports System.Web.Services
<System.Web.Services.WebService(Namespace:="urn:Example1")> _
Public Class Example1
Inherits System.Web.Services.WebService<WebMethod()> _
Public Function HelloWorld(ByVal name As String) As String
Return "Hello " & name
End Function
End Class