Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Perl (http://www.velocityreviews.com/forums/f17-perl.html)
-   -   middleware, sort of (same question, different posting software) (http://www.velocityreviews.com/forums/t24778-middleware-sort-of-same-question-different-posting-software.html)

Tigerhillside 01-23-2004 06:43 PM

middleware, sort of (same question, different posting software)
 
I forgot I had a "real" newsreader available. So here is the
question you will see "soon" when google decides to post my other
question.


I have a server side script that takes a user's input in a form,
packages it, and sends it on to an external server. The external
server will then send back the response via http to my server
script. But not the same script. And there is the rub, I don't
know how the second script can get to my user.

Let me diagram this for clarity.

The logic is this:

Client -> me -> XS (external server) -> me -> client

Simple enough.

But as I see it, programmatically it goes like this:

browser -> me script1 -> XS

XS -> script2 -> browser

I can't open a pipe to the external server, I only have http
access. So I can't get the response back in the same script
AFAICT. My script1 and script2 know enough to know it is the same
transaction, but script2 can't find the browser/script1
conversation.

I suppose I could have script1 wait around until script2 writes a
token of some sort saying it got the results. That seems like a
hack, but if that is how it is done I can do that. Wait something
like 30 seconds, checking every second for the token. Is that how
it is done or is there a better way? Something like a named pipe
or something that script2 can get its hands on?

I know this is not, strictly speaking, a perl language question,
but it is on topic.


Thanks very much in advance.



Tigerhillside 01-23-2004 11:45 PM

Re: middleware, sort of (same question, different posting software)
 
In comp.lang.perl, Tigerhillside
<Tigerhillsideremove@removenetscape.net>, I read and responded

>I forgot I had a "real" newsreader available. So here is the
>question you will see "soon" when google decides to post my other
>question.
>
>
>I have a server side script that takes a user's input in a form,
>packages it, and sends it on to an external server. The external
>server will then send back the response via http to my server
>script. But not the same script. And there is the rub, I don't
>know how the second script can get to my user.
>
>Let me diagram this for clarity.
>
>The logic is this:
>
>Client -> me -> XS (external server) -> me -> client
>
>Simple enough.
>
>But as I see it, programmatically it goes like this:
>
>browser -> me script1 -> XS
>
>XS -> script2 -> browser
>
>I can't open a pipe to the external server, I only have http
>access. So I can't get the response back in the same script
>AFAICT. My script1 and script2 know enough to know it is the same
>transaction, but script2 can't find the browser/script1
>conversation.
>
>I suppose I could have script1 wait around until script2 writes a
>token of some sort saying it got the results. That seems like a
>hack, but if that is how it is done I can do that. Wait something
>like 30 seconds, checking every second for the token. Is that how
>it is done or is there a better way? Something like a named pipe
>or something that script2 can get its hands on?
>
>I know this is not, strictly speaking, a perl language question,
>but it is on topic.
>
>
>Thanks very much in advance.
>


Ok, I won't say I'm an idiot. After all, there are few bette ways
to solve a problem on your own than to ask someone for help. My
problem was that I misunderstood some documentation. (So much for
RTFM as a silver bullet.) There are two ways to do what I needed
from the external server. I could send my user to their web page,
in which case the response came back to one of my server pages.
Or I could just send the information, in which case I get a
response. But I thought that the only way I got my response was
via the other web page. Since I can get the response from the
calling script I can just use the LWP module and everything will
be fine. Thanks for being there anyway.




All times are GMT. The time now is 09:19 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57