
Passing a valid Session Object from .NET to VB 6 objects
Anything is possible. I am not sure, however, that I am getting this. The
session will not tell you who the user is in a web service paradigm, unless
you authenticate the call to the service (via SOAP, I assume). Bearing this
in mind, you can just as easily authenticate on the SOAP message as put the
person in session, authenticate and then use the session ID.
As far as using a session ID to get user info, this should be fairly simple.
In traditional ASP, it was simply a matter of pulling the session ID. I have
not played with the .NET implementation, but I cannot imagine it would be
much more difficult.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
************************************************
Think Outside the Box!
************************************************
Quote:
> I am trying to access a VB6 object that is written to get its security and
> DB connection information out of the Session object.
> I want to wrap this object with a web service. My problem is that I need
to
> pass a valid session to the object to it. Is this possible?