Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Now coming back to original case, can anyone give me an idea how one can fetch the session information of IIS from perl code(I mean .pl codes not the perlscripted ASP code)?

If yes how can I initiate IIS session object in my perl code which would reurn me session data.
I've already explained in the first post that you can't access the IIS Session object anywhere EXCEPT from the ASP application. That's why I suggested dumping the Session data somewhere for the non-ASP code to read. Reread my original post.
Does ASP supports the encryptions as the same way as Perl does, to have a exact crypt->decrypt pair?
ASP isn't a language. From your post it is not clear what language you are using in your ASP. It suggests you are using PerlScript rather than VBScript. If you're using PerlScript, then yes, you can encrypt/decrypt in the same way you can in normal perl scripts. If you're using VBScript, you'll have to find an encryption component that uses a known encryption method so you can decrypt in perl.

But by far the easiest method is that which I described earlier: Iterate through the ASP Session collection and store the data on the server (database or file). Associate a random key with that data, and use that key in the querystring. So when you link to your Apache website, you do something like this:

http://apacheserver/myscript.pl?id=fh45sg#45dgf.
Your perl script then accesses and reads in the session data into a hash. Make sure that the key is as random as possible and difficult to guess someone else's key. Making them invalid after a certain time would also be a good precaution.

Simon Flack ($code or die)
$,=reverse'"ro_';s,$,\$,;s,$,lc ref sub{},e;$,
=~y'_"' ';eval"die";print $_,lc substr$@,0,3;

In reply to Re: IIS sessions from perl? by $code or die
in thread Perl Win32 Apache/IIS Session Management by learn_forever

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (1)
As of 2024-04-24 15:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found