I figured it out! Just in case anyone else needs to know... 1) use Packages.dir.dir.class e.g.
var MyClass = new Packages.com.domain.name.MyJavaClass(); 2) The directories messed me up a bit. For Java actions, the class files default to WEB-INF/classes. In order to get the javascript to run, I had to put the package directory under my sitemap directory. e.g. Sitemap in: c:\cocoon-2.1m2\build\webapp\myweb Class files in: c:\cocoon-2.1m2\build\webapp\mywebb\com\domain\name Took a bit to figure it out, but it's working now. :) > -----Original Message----- > From: Chris Clark > Sent: Tuesday, August 19, 2003 8:42 AM > To: [EMAIL PROTECTED] > Subject: Calling Java classes from (JXForms) javascript - can you? how? > > I'm using javascript with the JXForms and I'd like to call a Java function from > within the flowscript. > Something like: > > sendView(url1) > sendView(url2) > if (something updated in the model) > call a member function from a Java class > > Is this possible? If so, how do you do it? > > Looking at the samples it appears as if the Form class is being used within the > jxform.js so I think you can do, but my javascript skills aren't at the point where > I can figure out how. > > Any tips, links to references, etc. would be really appreciated. > > Thanks, > Chris > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
