Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: config options for Inline::Java

by Anonymous Monk
on Nov 22, 2011 at 12:00 UTC ( [id://939442]=note: print w/replies, xml ) Need Help??


in reply to config options for Inline::Java

Can i set J2SDK path from env like this ? Because this is not working..

How?

What happens when you print out the value when you're running through the Basic debugging checklist?

Replies are listed 'Best First'.
Re^2: config options for Inline::Java
by Anonymous Monk on Nov 22, 2011 at 12:02 UTC

    Also, turn on Inline::Java DEBUG option! :D

Re^2: config options for Inline::Java
by bhagperl (Novice) on Nov 25, 2011 at 06:36 UTC

    I know where the script is failing, it is not able to take the right java path from J2SDK set as:

    use Inline (Java => <<'END_OF_JAVA_CODE' , === JAVA CODE HERE === END_OF_JAVA_CODE J2SDK => $ENV{'J2SDK'},(ie; THIS IS NOT WORKING) );

    J2SDK is not getting initialized by ENV variable J2SDK.

    where as : J2SDK => 'path-to-java' works !!

    But i don't want to use hard coded path for J2SDK setting.

    I want Inline JAVA to take the paths from environment variables.

    Please let me know if its possible.

    Thanks !

      Your test seems to indicate that there is a difference between 'path-to-java' and the contents of the environment variable. So why don't you print the contents of the variable and check for yourself:

      BEGIN { print "#",$ENV{'J2SDK'},"#\n" } use Inline ( ... ); use Data::Dumper; $Data::Dumper::Useqq=1; print "For comparision:\n",Dumper('path-to-java', $ENV{'J2SDK'});

      These tests will make sure that the environment variable doesn't change from the moment 'use' is executed (at an early phase of perl execution) to the start of the script and it also makes sure that you can see any hidden characters in the environment variable (Dumper + Useqq).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://939442]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-19 02:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found