RE: idltojava

2000-07-21 Thread Wright Robert B Civ 96 CG/SCWDE
i may be wrong, but i think the idltojava compiler with JacORB if pure java, and you should be able to use it on linux. check it out at http://www.inf.fu-berlin.de/~brose/jacorb/ btw, the JacORB script to run the compiler is called idl rather than idltojava. Rob -Original Message- Fro

RE: msql jdbc drivers

2000-01-19 Thread Wright Robert B Civ 96 CG/SCWDE
check out the JDBC section of the mysql web site (http://www.mysql.org/Contrib/). i've successfully used the mm driver by mark matthews. Rob > -Original Message- > From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 18, 2000 8:53 PM > To: [EMAIL PROTECTED] > Subj

RE: heap space and performace (what is going on??)

2000-01-06 Thread Wright Robert B Civ 96 CG/SCWDE
> > i will have to take a look at TowerJ. > www.deja.com uses TowerJ, but I don't know on which platform. see http://www.towerj.com/pressroom/towerif.shtml for all the TowerJ hoopla rob -- To UNSUBSCRIBE, email to [EMAIL PRO

RE: mutlicast sockets

1999-09-13 Thread Wright Robert B Civ 96 CG/SCWDE
> Check your /etc/route.conf file. The multicast route must be set to > something like this if you want to use multicast on eth0: > 224.0.0.00.0.0.0240.0.0.0eth0 > this was the problem. i used "route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0" to add the route to the routing

RE: Quetion on IDEs

1999-09-13 Thread Wright Robert B Civ 96 CG/SCWDE
i've had the same experience with AnyJ. nice product. rob > -Original Message- > From: Riyad Kalla [mailto:[EMAIL PROTECTED]] > Sent: Saturday, September 11, 1999 7:48 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: Quetion on IDEs > > > I've used netbeans, jbuilder,

RE: mutlicast sockets

1999-09-10 Thread Wright Robert B Civ 96 CG/SCWDE
the kernel does have multicast support. you make a good point though, i haven't checked the jini/javaspaces archives. thanks, rob > -Original Message- > From: Ted Neward [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 10, 1999 1:11 PM > To: Wright Robert B Civ 96

mutlicast sockets

1999-09-10 Thread Wright Robert B Civ 96 CG/SCWDE
i'm getting a "java.net.SocketException: No such device" when executing this code: MulticastSocket socket = new MulticastSocket(); InetAddress address = InetAddress.getByName("230.0.0.1"); socket.joinGroup(address); through jdb i discovered that the joinGroup method is throwing the exceptio