[Tcl Java] Re: [Tcl Java] Re: [Tcl Java] External classloader for JACL

2000-03-02 Thread Vladimir Zamiatin
> Both Jacl and Tcl Blend already use a class loader called TclClassLoader. > Is there a feature that you would like to add added to the TclClassLoader > or are you looking to bypass it completely? Actually in my design I prefer to bypass it completely, because I have an instance of sophisticate

[Tcl Java] Re: [Tcl Java] TclBlend problem on Solaris 2.5.1

2000-03-02 Thread Mo DeJong
Any news on this problem? Did you still get a core dump after turning the JIT off? Do you get the same error if you run it on another system (like Linux + the Blackdown JDK port)? You bug report is the only of its kind that I have seen, so I am fairly sure it is a JIT bug (trust me, it is almost a

[Tcl Java] Re: [Tcl Java] Using native TCL in JVM

2000-03-02 Thread Mo DeJong
Here is a note from the original author of Tcl Blend on this subject. Mo Dejong Red Hat Inc. Jiang Wu said: > Then there is TclBlend, which does a nice job of linking a native TCL > interpreter with JVM. But TclBlend assumes that the TCL interpreter starts > first, then it creates a JVM t

[Tcl Java] Re: [Tcl Java] External classloader for JACL

2000-03-02 Thread Mo DeJong
Perhaps I was not being clear. I am proposing two changes. 1. Remove the "search for .zip and .jar files" on env(TCL_CLASSPATH) feature. The fact that a use might accidently get .class files from a .jar or .zip file is just plain wrong. 2. Make a new env var called env(TCL_JARPATH) which is

[Tcl Java] Re: [Tcl Java] External classloader for JACL

2000-03-02 Thread Thomas McKay
I actually like the feature of looking for and loading classes from the jar files. As long as I can still do this through an alternative method (such as TCL_CLASSPATH) it'll work. I can see the benefit of such a system. > -Original Message- > From: Mo DeJong [mailto:[EMAIL PROTECTED]] >

[Tcl Java] RE: [Tcl Java] External classloader for JACL

2000-03-02 Thread Vince Darley
Title: RE: [Tcl Java] External classloader for JACL I'd like to see a kind of 'java::unknown' facility, in which if the class loader can't find a class, it calls 'java::unknown {className}', which by default returns null, but can try to find the class itself (from Tcl/Jacl) and if it finds it

[Tcl Java] Re: [Tcl Java] External classloader for JACL

2000-03-02 Thread Mo DeJong
Both Jacl and Tcl Blend already use a class loader called TclClassLoader. Is there a feature that you would like to add added to the TclClassLoader or are you looking to bypass it completely? I do not really see anything wrong with adding something to the TclClassLoader or replacing it completely

[Tcl Java] External classloader for JACL

2000-03-02 Thread Vladimir Zamiatin
Hello! I'm using JACL in web environment. I wrote engine similar to JSP, which allows to embed Tcl scripts in HTML pages. I want to make use of an advanced classloader, provided by servlet runner which has possibility to check for modification of class or source java files in web-applications,