473,399 Members | 2,146 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

calling Perl script from javascript

I want a js function to call a Perl script residing on a server.
The Perl script will return a string, to be used by the js.
Pseudo code:
<script>
stringvar = perlfunc_on_server(stringarg)
document.write(stringvar)
</script>

Can stringvar above be a url?

The perlfunc_on_server could take the form of a GET,
like http://www.myserver.com/cgi-bin/perl...?arg=stringarg

Any other kludge is okay, as long as it works.

I'm very experienced with Perl, but a newbie to js.
Source code would help. Thanks.

Jul 23 '05 #1
6 15868
Richard Trahan wrote:
I want a js function to call a Perl script residing on a server.
The Perl script will return a string, to be used by the js.
Pseudo code:
<script>
stringvar = perlfunc_on_server(stringarg)
document.write(stringvar)
</script>

Can stringvar above be a url?

The perlfunc_on_server could take the form of a GET,
like http://www.myserver.com/cgi-bin/perl...?arg=stringarg

Any other kludge is okay, as long as it works.

I'm very experienced with Perl, but a newbie to js.
Source code would help. Thanks.


Hi,

If you need JS to get some interaction with a SERVERSIDE script, you have
to:
1) call that script
2) receive the response and do something usefull with it.

the easiest way is to use a hidden frame (or a new window, as long as you
have a window) in which you replace the URL with your call to the
Perlscript.
The Perlscript has to respond in a way that can be used in javascript.
In such situations I always let the server respond with a normal HTML-page
that has an onLoad-handler that call some javascript-function.
That function contains serverside information you need.

Eg (php example because my Perl sucks)

<html>
<head>
<script type="text/javascript">
function passInfo(){
alert("I received: <?= $_GET["userid"] ?>");
}
</script>
</head>
<body onLoad="passInfo();">
Leave this empty, not needed.
</body>
</html>

if you call the above page in some hidden frame it will respond with an
alert saying 'I received: 23':
example.php?userid=23

The $_GET example is lame of course, but you can just do all your serverside
Perlstuff over there.
Instead of the alert you can call some JS-function in your main-page,
possibly passing the needed info from the server.

Stuff you need to know to do this is:
1) how you make (hidden) frames. (frame and frameset)
2) replace the content of a window
top.frames["framename"].location = .......
3) how to make calls to a JS-function in another window.
top.frames["someFrameName"].someFunction(1,2,3);

Hope that helps.
Good luck,
Erwin Moller
Jul 23 '05 #2


Richard Trahan wrote:
I want a js function to call a Perl script residing on a server.
The Perl script will return a string, to be used by the js.
Pseudo code:
<script>
stringvar = perlfunc_on_server(stringarg)
document.write(stringvar)
</script>
Well if you want to receive some text from the Perl script and display
it directly (document.write does that) I am not sure why you need
JavaScript at all, you could solve that on the server and use Perl to
read the text from the (other?) server and then include that in your
page with Perl.

Can stringvar above be a url?
What you can do with HTML is
<script type="text/javascript"
src="www.myserver.com/cgi-bin/perlfunc_on_server.pl?arg=stringarg"></script>
that way you simply need to make sure your perlfunc_on_server.pl sets
the Content-Type to application/x-javascript and sends syntactically
correct JavaScript back.
The perlfunc_on_server could take the form of a GET,
like http://www.myserver.com/cgi-bin/perl...?arg=stringarg

Any other kludge is okay, as long as it works.

I'm very experienced with Perl, but a newbie to js.
Source code would help.


The biggest problem could be the same origin policy governing
client-side scripting so while in theory in new browsers like Mozilla,
IE5+/Win, Safari you can make HTTP requests and receive the result you
can usually only connect back to the server the HTML page with the
script comes from.
See
http://www.faqts.com/knowledge_base/.../17226/fid/616
http://jibbering.com/2002/4/httprequest.html

There are also solutions using an iframe (usually a hidden one) to
perform the request to the server and returning some script that updates
the document containing the iframe but in this case too you are
restricted by the same origin policy.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 23 '05 #3
Thank you for your detailed reply.

Although a great idea, I cannot create an invisible frame
because the client window is an eBay ad. eBay software will
detect the frame creation code and delete the ad, as they
explicitly prohibit frames.

Is it true in general that js functions which take a string
argument will also take a url? I.e., can I do something like
alert(url(http://myserver.com)) ?

Jul 23 '05 #4
Richard Trahan wrote:
Is it true in general that js functions which take a string
argument will also take a url? I.e., can I do something like
alert(url(http://myserver.com)) ?


This is partly true. Because an URL is also a string. You could call the
function:

alert("http://myserver.com")
Jul 23 '05 #5
Martin Honnen wrote:

Thank you for responding.
What you can do with HTML is
<script type="text/javascript"
src="www.myserver.com/cgi-bin/perlfunc_on_server.pl?arg=stringarg"></script>

that way you simply need to make sure your perlfunc_on_server.pl sets
the Content-Type to application/x-javascript and sends syntactically
correct JavaScript back.


That's exactly what I'm looking for. Thank you so much. I have not
been able to find a decent textbook or tutorial that explains exactly
how the various MIMEs are used in CGI programming.
The texts on network programming are all obsessed with
sockets, not CGI. Do you know of a good book?
Jul 23 '05 #6
In article <cf**********@ngspool-d02.news.aol.com>,
"Andre Herbst" <mo*******@compuserve.de> wrote:
alert("http://myserver.com")


Of course, it is going to display a message box with:

http://myserver.com

Probably not what the OP wants, but not sure what the OP is hinting at.

Robert
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Shailan | last post by:
Hi Im having trouble with the following code that seems to be behave differently when called from the browser as opposed to the command line. The calling script is a cgi that forks, with the...
1
by: Richard Trahan | last post by:
I am using the following method to call a Perl script from js: <script type="text/javascript" src="http://myserver.com/cgi-bin/x.pl?x=abc" </script> The Perl writes an application/x-javascript...
3
by: phal | last post by:
Hi all; I code Perl for CGI, I using regular expression to check the validation of user input, because the form is small and it run only from my own computer, anyways if many people using my...
10
by: Tony Rice | last post by:
If I've loaded a set of functions in a webdocument like this: <script language="JavaScript" type="text/javascript" src="/js/foo.js"</script> Shouldn't I be able to call a function from...
1
by: stahl.karl | last post by:
Howdy, I have a CGI/Perl script that simply creates a few Javascript variables. For example: --------myCGI.pl---------------------------------------- print("Content-type:...
3
by: Nathan Gilbert | last post by:
I am wanting to use javascript to select between different *.css files dependent on the user's browser. I am also wanting to generate the html document containing this javascript dynamically using...
0
by: nghivo | last post by:
I have a Struts application developed following the MVC method (forms, actions, beans, etc).. I have a JSP page with 2 buttons A and B. When B is clicked, a Struts action will be executed. But...
22
by: Archanak | last post by:
Hi, I am using 2-level CSS Drop Down Menu in my perl/CGI program. here is the code. #!c:/perl/bin/perl.exe use CGI qw(:standard);
3
by: happyse27 | last post by:
Hi All, I am creating the perl script using html form(with embedded javascript inside). When using this html form with javascript alone, it works where the form validation will pop up...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.