I posted similar questions to comp.lang.tcl before subscribing to this mailing list. I apologize if you have seen most of this already. I am experimenting...
Jiang Wu
jwu@...
Mar 2, 2000 4:10 am
641
Just an FYI. An implementation of the binary command for Jacl has been added to the 1.3 version in the CVS. Many thanks go to Christian Krone for donating the...
Mo DeJong
mdejong@...
Mar 2, 2000 4:32 am
642
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...
Vladimir Zamiatin
zamiatin@...
Mar 2, 2000 1:32 pm
643
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...
Mo DeJong
mdejong@...
Mar 2, 2000 9:35 pm
644
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...
Vince Darley
vince.darley@...
Mar 2, 2000 10:43 pm
645
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...
Thomas McKay
mckay@...
Mar 2, 2000 10:49 pm
646
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...
Mo DeJong
mdejong@...
Mar 2, 2000 11:22 pm
647
Here is a note from the original author of Tcl Blend on this subject. Mo Dejong Red Hat Inc. ... starts ... of ... interpreter. TclBlend can also be used from...
Mo DeJong
mdejong@...
Mar 3, 2000 12:25 am
648
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...
Mo DeJong
mdejong@...
Mar 3, 2000 3:14 am
649
... Actually in my design I prefer to bypass it completely, because I have an instance of sophisticated classloader, which I would like to use when looking for...
Vladimir Zamiatin
zamiatin@...
Mar 3, 2000 7:40 am
650
Agreed, backward compatibility is not a valid objection, but backward functionality should be? could be? Your proposal sounds like a good idea. ... The...
Thomas McKay
mckay@...
Mar 3, 2000 2:05 pm
651
The existing TclBlend (1.2.6) code doesn't quite work. If one tries to do a "new tcl.lang.Interp()" in the JVM before Tclblend_Init() is called, an access...
Jiang Wu
jwu@...
Mar 3, 2000 6:56 pm
652
Hi all. Here is a patch that implements a public tcl.lang.Interp.appendElement() method for Jacl and Tcl Blend. The appendElement method is a mapping of the...
Mo DeJong
mdejong@...
Mar 14, 2000 2:10 am
653
Can someome tell me if this is supposed to work? I've got an .jar file (produced inhouse). jar -t can list the classes and jar -x can extract the .class file...
Roy Terry
royterry@...
Mar 14, 2000 2:13 pm
654
hi I'm using Jacl 1.2.5 on Sun JDKs (1.2 and 1.3 on NT and 1.2 on Solaris). My question: Is there a good reason for Interp.evalResource being a package private...
Hamish Cunningham
hamish@...
Mar 14, 2000 3:25 pm
655
Hi I am new to TCL : I would like to is it possible to use EJB with TCL and how. My version of TCL is 8.3. Thank You David L. Wasler dwasler@... ... ...
David Wasler
dwasler@...
Mar 14, 2000 4:04 pm
656
I have attached two samples of using EJBs with Tcl and TclBlend (Tcl 8.2.3 and TclBlend 1.2.5, but Tcl 8.3 should work as well). One accesses a sample EJB from...
Scott Redman
redman@...
Mar 14, 2000 5:18 pm
657
I can not think of any reason EJB beans would not work with Jacl or Tcl Blend. Try it out and post your results. I think you will be surprised at how easy it...
Mo DeJong
mdejong@...
Mar 14, 2000 10:05 pm
658
Hi Roy. There are two likely causes. First, the .jar file must be created with the "proper" directory structure. For instance, the jacl.jar file looks like...
Mo DeJong
mdejong@...
Mar 15, 2000 12:20 am
659
Hi all. I think I have tracked down a nasty bug in the Jacl parser. It seems that unicode backslash sequences were not getting substituted correctly. If you...
Mo DeJong
mdejong@...
Mar 15, 2000 1:44 am
660
... Not that I can think of. Unless someone has a good reason not to make it accesable from outside, lets make it public. Grab the 1.3 version from the CVS,...
Mo DeJong
mdejong@...
Mar 15, 2000 1:55 am
661
Hi – This is a repost of a message which I have been trying to post for a few days…… so here goes again….. I’m trying to get the pyramidpkg demo to...
Ian F. Graham
ian.graham@...
Mar 15, 2000 4:22 pm
662
It looks like you are trying to load Tcl Blend into an applet. This is not possible because Java will not let you do it. You should be able to run Jacl in an...
Mo DeJong
mdejong@...
Mar 15, 2000 9:52 pm
663
... Ok, back up and start over. First, extract the classes from the jar file into an empty directory. Then, add that directory to your env(TCL_CLASSPATH). Make...
Mo DeJong
mdejong@...
Mar 15, 2000 10:35 pm
664
Make sure you don't have any extraneous .zip or .jar files lying around your classpath or tclclasspath with the same name as the package and/or class you are...
Vince Darley
vince.darley@...
Mar 15, 2000 11:44 pm
665
Thanks for the reply. Actually I wasn't consciously trying to load tcl Blend, I was just trying to the demo to work. Now that you mention it, I realise why it...
Ian F. Graham
ian.graham@...
Mar 16, 2000 10:02 am
666
TclBlend is very close to accomplish the task of using Tcl from a Java application. TclBlend provides the ability to call TCL commands from Java, and call...
Jiang Wu
jwu@...
Mar 16, 2000 7:41 pm
667
... Very cool. The ability to load Tcl Blend and Tcl into a running JVM would make a great addition to the 1.3 "development" version. ... tcl.lang.Interp...
Mo DeJong
mdejong@...
Mar 16, 2000 9:09 pm
668
I will try to modify the Jacl Shell to work with Tcl and TclBlend. If this is successful, the shell becomes a very good example on how Tcl can be embedded...
Jiang Wu
jwu@...
Mar 16, 2000 9:44 pm
669
On Thu, 16 Mar 2000, Jiang Wu wrote: Thanks. I am sure this will help anyone who wants to do something similar in the future. ... It does? How? Perhaps I did...