more information would be helpful
what os?
what http server?

i just tested this on w2k, iis5 and it works fine

make sure if you are using iis that you have execute permissions set for the folder.
also check that the perl script runs successfully from the commandline.

here is the script i compiled and ran:

print "Content-type: text/html\n\n";
print "hello world<BR>\n";

for ( split /\&/, $ENV{QUERY_STRING} )  {
        my ( $name , $value ) = split /=/;
        print "$name is $value<BR>\n";
}

then i called it like so:
http://localhost/cgi-bin/test.exe?a=b&b=c


here is what i got back:
hello world<BR>
a is b<BR>
b is c<BR>


*********** REPLY SEPARATOR  ***********

On 10/18/2000 at 11:13 AM Kai Zdarsky wrote:

>Hi Perlers,
>
>I want to make an unreadable EXE-File from a CGI-Skript. This Script is
>called by a Java-Programm with parameters like this:
>
>    http://www.server.com/Test/Script.pl?a=1&b=2&;...
>
>Now the Script.pl should be an Exe-File. I tried 'perl2exe' but then my
>browser puts out the following CGI-Error:
>
>    error: parse exception
>
>Is it possible to make an unreadable File from a Perl-Script like above?
>Any help would be great.
>
>--
>Mit freundlichen Grüßen
>Kai Zdarsky
>
>___________________________________________________________________
>
>Kai Zdarsky                   grit - graphische Informationstechnik
>[EMAIL PROTECTED]               Beratungsgesellschaft mbH
>Buero Werne
>                              Buero Werne:
>                              Landwehrstr. 143
>                              D-59368 Werne
>                              +49-2389-9827-36
>                              +49-2389-9827-27 fax
>
>
>
>_______________________________________________
>Perl-Win32-Users mailing list
>[EMAIL PROTECTED]
>http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users



_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to