show/hide this revision's text 4 added 280 characters in body; edited title

Using a the javax.script package on for javascript with an external src attribute

Say I have some javascript that looks like..if run in a browser would be typed like this...

  <script type="text/javascript"
      src="http://someplace.net/stuff.ashx"></script>

  <script type="text/javascript">
     var stuff = null;
     stuff = new TheStuff('myStuff');
  </script>

... and I want to use the javax.script package in java 1.6 to run this code within a jvm (not within an applet) and get the stuff, how . How do I let the engine know the source of the codeclasses to be constructed is found within the remote .ashx file?

For instance, given I know to write the code..java code as...

    ScriptEngineManager mgr = new ScriptEngineManager();
    ScriptEngine engine = mgr.getEngineByName("JavaScript");

    engine.eval( "stuff = new TheStuff('myStuff');" );
    Object    obj = engine.get("stuff");

...how do ..but the "JavaScript" engine doesn't know anything by default about the TheStuff class because that information is in the remote .ashx file. Can I make it know look to use the above src string for this?

Thanks!

show/hide this revision's text 3 deleted 55 characters in body

Say I have some javascript that looks like...

  <script type="text/javascript" src="http://someplace.net/stuff.ashx"></script>
  <script type="text/javascript">
     var stuff = null;
     stuff = new TheStuff('myStuff');
  </script>

... and I want to use the javax.script package in java 1.6 to run this code and get the stuff, how do I let the engine know the source of the code?

For instance, given the code...

    ScriptEngineManager mgr = new ScriptEngineManager();
    ScriptEngine engine = mgr.getEngineByName("JavaScript");

    // Now we will read in some Javascript from a file
    engine.eval( "stuff = new TheStuff('myStuff');" );
    Object    obj = engine.get("stuff");

...how do I make it know to use the above src for this?

Thanks!

show/hide this revision's text 2 edited tags
show/hide this revision's text 1