As of this afternoon, the Java newsserver at ncc.hursley.ibm.com is back online. The list of available groups at that newsserver is: ibmpub.java ...
Jerry McBride
mcbrides@...
May 11, 1999 10:38 pm
583
I've been porting a great deal of java code to NetRexx these last fews days and I've come up against a wall on this one. It's the java console sample by Peter...
Jerry McBride
mcbrides@...
May 13, 1999 12:35 am
584
StringTokenizer getToken() throws IOException { String s = br.readLine(); return new StringTokenizer(s); } translates to: method getToken() returns...
dion@...
May 13, 1999 3:57 am
585
... You know what? I knew that! For reasons I can't explain I was thinking that StringTokenizer couldn't be returned from a method. Yet again I tap my desktop...
Jerry McBride
mcbrides@...
May 18, 1999 5:34 am
586
What I miss in Netrexx is those good time/date functions from Rexx. The Calender/date/time classes seems a bit complicated, and my clock in java seems to be...
Gunnar_Berthelsen@...
May 18, 1999 11:04 am
587
... For excellent rexx-line date support I use Bob Kellers BIGDATE. Comes with source and I think I found it on one of the links starting at...
Jerry McBride
mcbrides@...
May 18, 1999 2:04 pm
588
I've found that 1.1 has bugs in this area that have been addressed in 1.2 DV ... From: Jerry McBride <mcbrides@...> To: Gunnar_Berthelsen@......
Donald Vining
don-vining@...
May 18, 1999 3:23 pm
589
Time is not just a problem with Java. I've seen an hour discrepancy in the time with Warp 3.0 and regular REXX. There's also a TZONE= environmental variable...
Andrew.Wright@...
May 18, 1999 5:33 pm
590
Anybody knows how to keep the javadoc comments from NetRexx *in* the generated Java source? Until now I relied on nrxdoc for this purpose, but now it fails...
Try the -comments option. (See the Supplement for documentation.) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mike Cowlishaw, IBM...
MFC@...
May 26, 1999 9:07 am
592
... Peter Heuchert maybe on holidays, he has been quite responsive until March, at least. ... You might try nrc -keep -comments your.class and generate the...
K.-P. Kirchdoerfer
kapeka@...
May 26, 1999 9:08 am
593
I'm close to getting desperate (hence this quest for help - even if it may not be exactly the right spot to ask): I've been using the translate function to...
Dr. Martin R. Hadam
Hadam.Martin@...
May 26, 1999 1:06 pm
594
A *much* better place to ask this would be comp.lang.rexx ! In brief, it sounds as though you're getting two CRs in your files. I'm surprised that the...
MFC@...
May 26, 1999 1:38 pm
595
... sorry for bothering you with my stupidity: it wasn't ASC13 - it was ASC10 - which made it work again! Martin R. Hadam Kinderklinik - Medizinische...
Dr. Martin R. Hadam
Hadam.Martin@...
May 26, 1999 1:38 pm
596
... May I suggest you a different approach? I use this code to remove the nasty EOF characters that some OS/2 apps add at the end of file: ...
xavier caballe
xavi@...
May 26, 1999 9:53 pm
597
Is anybody with a successful installation of NetRexx on OS390 (I've got R6) prepared to discuss on the phone how best to achieve a clean install and ...
James Lumsden
jlumsden@...
May 28, 1999 11:36 am
598
Hi, I have released version 0.50 of njPipes, an unofficial port of the CMS/TSO Pipeline product to NetRexx and java. The biggest new feature? The njPipes ...
Ed Tomlinson
tomlins@...
May 30, 1999 5:45 pm
599
Hi, As you may have noticed I have released a new njPipes version. You might be wondering about the state of njPipes. The core functions, supporting the pipe...
Ed Tomlinson
tomlins@...
Jun 2, 1999 4:08 am
600
I'm trying to read from a file and print out the 7th word in the file using NetRexx 1.148. But when I compile this program I get ERROR: The Method 'readLine()'...
Casale, Vincent
vinnyc@...
Jun 4, 1999 3:54 pm
601
Hi Vincent, use buffer.readLine() instead of source.readLine() -vesa ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To...
Vesa Erla
vesa.erla@...
Jun 4, 1999 4:46 pm
602
Vincent, There's another problem hiding around the corner after you make the substitution suggested by Vesa. buffer.readLine returns a java String or null....
Charles F. Simons
yrium@...
Jun 4, 1999 7:57 pm
603
Satgura, Its true that for... x = 12.5 or y = 'these words' that both x and y are of type Rexx. This is because 12.5 and 'these words' are considered as...
Charles F. Simons
yrium@...
Jun 4, 1999 11:13 pm
604
I'm running the JDK118 from IBM with NetRexx 1.148 and all is well. This is a REAL treat getting the JavaComm direct from IBM for a change! Thanks gals/guys. ...
Jerry McBride
mcbrides@...
Jun 13, 1999 12:41 pm
605
Hi there! After hundreds of lines of netrexx I am still not really secure on the subject of typecasting. I know about type concatenation - it just does not...
René Jansen
rvjansen@...
Jun 13, 1999 10:06 pm
606
Hello, I would be grateful for an example using NetRexx to load a DB2 driver and run a simple select on a local PC-held DB2 database, or even a place where...
Tim and Mary Weathers...
weatherstone@...
Jun 15, 1999 7:37 am
607
I've solved most of the non-Netrexx or Java related problems, now it's time for some other things. How do I achieve that an applet gets read/write -...
Andreas Zieritz
zieritz@...
Jun 15, 1999 7:55 am
608
... I do not know about db2, but jdbc should be similiar for almost any db. In that case you can look at the sqlselect stage on the njPipes page. Luck, Ed...
Ed Tomlinson
tomlins@...
Jun 15, 1999 12:50 pm
609
You'll need to sign the applets. How to do this is browser specific. i.e. do it one way for netscape, one for ie, one for jvm. See...
dion@...
Jun 16, 1999 4:18 am
610
If you are planning on using the java plug-in.... Not directly Swing related, but if you are developing a Swing applet & want consistent cross-browser...
dion@...
Jun 16, 1999 4:18 am
611
Hi ... just as in Java, you have to tell the compiler that the object retrieved is of type Vector, not Object. In Java, you'd write: ...