Jon Paris | 2 Mar 2003 14:10

Re: WDSC4/XP Installation

 >> Has anyone had a similar experience (there was nothing in the archives)?
Should I continue to wait, abort & start again, or give up the idea
altogether?

Yes John - the first time I loaded WDSc V4 is took about two hours "doing
nothing" at one stage - and by "nothing" I mean no CPU activity, no hard
disk activity ......  It did eventually get it's knickers untwisted and
complete the install.  It would appear that the install has multiple threads
running to install various pieces and the are places where the sync routines
run for longer than they should.  It is not consistent though - I installed
on another system and there was no such delay - it still took forever
though!

Jon Paris
Partner400

_______________________________________________
This is the Websphere Development Studio Client for iSeries  (WDSCI-L) mailing list
To post a message email: WDSCI-L@...
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/wdsci-l
or email: WDSCI-L-request@...
Before posting, please take a moment to review the archives
at http://archive.midrange.com/wdsci-l.

Bartell, Aaron L. (TC | 3 Mar 2003 22:30

Java Indentation engine

Is there somewhere to download a different Java Indentation engine or Code
Formatter?  I have my code extend to 120 characters and here is how it
formats it when I select Format.  Notice it doubles up lines and the catch
doesn't start on its own line.

    public String readURL(InputStream url) {
        try {
            StringBuffer out = new StringBuffer();
                byte[] buffer = new byte[1024 * 64];
                int bytesRead = url.read(buffer);
                while (bytesRead > 0) {
                out.append((char) bytesRead); bytesRead = url.read(buffer);
}

            return out.toString(); } catch (Exception e) {
            return e.toString(); }
    }

I want it to look like this.

    public String readURL(InputStream url) {
        try {
            StringBuffer out = new StringBuffer();
            byte[] buffer = new byte[1024 * 64];
            int bytesRead = url.read(buffer);
            while (bytesRead > 0) {
              out.append((char) bytesRead); 
              bytesRead = url.read(buffer); 
            }

(Continue reading)

David Morris | 3 Mar 2003 23:59

Re: Java Indentation engine

Aaron,

I use Jalopy quite a bit. There is an Eclipse 2.x plugin, but I don't
there is 
anything available for Eclipse 1.X. Jalopy can be run standalone or
through 
an Ant task, which might get you by until April when WDSc 5.0 is out.

http://sourceforge.net/projects/jalopy

David Morris

>>> ALBartell@... 03/03/03 02:30PM >>>
Is there somewhere to download a different Java Indentation engine or
Code
Formatter?  I have my code extend to 120 characters and here is how it
formats it when I select Format.  Notice it doubles up lines and the
catch
doesn't start on its own line.

    public String readURL(InputStream url) {
        try {
            StringBuffer out = new StringBuffer();
                byte[] buffer = new byte[1024 * 64];
                int bytesRead = url.read(buffer);
                while (bytesRead > 0) {
                out.append((char) bytesRead); bytesRead =
url.read(buffer);
}

(Continue reading)

Mark Phippard | 4 Mar 2003 00:23

Re: Java Indentation engine


Aaron,

The Java tools included in Eclipse 2.0 (WebSphere Studio 5.0) provide much
more options for how the formatting looks.  If you haven't already done so,
visit your Preferences and under the Java section there are preferences for
formatting.  That might be all you need (even in WDSC 4).

If that doesn't do it, there are third-party plugins.  Try this site:
http://eclipse-plugins.2y.net/eclipse/index.jsp  All of these plugins are
likely only good in Eclipse 2.0-based IDE's.

Mark

      To:   "'Websphere Development Studio Client for iSeries'"
<wdsci-l@...>
      cc:
      bcc:
      Subject:    [WDSCI-L] Java Indentation engine
"Bartell, Aaron L. (TC)" <ALBartell@...>
Sent by: wdsci-l-bounces@...
03/03/2003 03:30 PM CST
Please respond to Websphere Development Studio Client for iSeries
<font size=-1></font>

Is there somewhere to download a different Java Indentation engine or Code
Formatter?  I have my code extend to 120 characters and here is how it
formats it when I select Format.  Notice it doubles up lines and the catch
doesn't start on its own line.

(Continue reading)

Bartell, Aaron L. (TC | 5 Mar 2003 19:12

Re: Java Indentation engine

Thanks David,

I installed jalopy but when I try to use it from a right click I get this
message "An internal error has occurred. See error log for more details.".

Where is the error log?

Thanks,
Aaron Bartell

-----Original Message-----
From: David Morris [mailto:David.Morris@...]
Sent: Monday, March 03, 2003 5:00 PM
To: wdsci-l@...
Subject: [WDSCI-L] Re: Java Indentation engine

Aaron,

I use Jalopy quite a bit. There is an Eclipse 2.x plugin, but I don't
there is 
anything available for Eclipse 1.X. Jalopy can be run standalone or
through 
an Ant task, which might get you by until April when WDSc 5.0 is out.

http://sourceforge.net/projects/jalopy

David Morris

>>> ALBartell@... 03/03/03 02:30PM >>>
Is there somewhere to download a different Java Indentation engine or
(Continue reading)

Mark Phippard | 5 Mar 2003 20:10

Re: Java Indentation engine

Somewhere on the menu (I do not know what version you are using and it has 
moved) there is a Show View menu, choose that and then Other.  Under the 
PDE Runtime grouping is the Error Log view.  You then need to make the 
error happen again while the view is open.

"Bartell, Aaron L. (TC)" <ALBartell@...>
Sent by: wdsci-l-bounces@...
03/05/2003 01:12 PM
Please respond to Websphere Development Studio Client for iSeries 

        To:     "'Websphere Development Studio Client for iSeries'" 
<wdsci-l@...>
        cc: 
        Subject:        [WDSCI-L] Re: Java Indentation engine

Thanks David,

I installed jalopy but when I try to use it from a right click I get this
message "An internal error has occurred. See error log for more details.".

Where is the error log?

Thanks,
Aaron Bartell

-----Original Message-----
From: David Morris [mailto:David.Morris@...]
Sent: Monday, March 03, 2003 5:00 PM
To: wdsci-l@...
Subject: [WDSCI-L] Re: Java Indentation engine
(Continue reading)

Bartell, Aaron L. (TC | 5 Mar 2003 20:28

Re: Java Indentation engine

Found it, thanks.

I will contact Jalopy with the error that I am getting.

Thanks again Mark,
Aaron Bartell

-----Original Message-----
From: Mark Phippard [mailto:MarkP@...]
Sent: Wednesday, March 05, 2003 1:11 PM
To: Websphere Development Studio Client for iSeries
Subject: [WDSCI-L] Re: Java Indentation engine

Somewhere on the menu (I do not know what version you are using and it has 
moved) there is a Show View menu, choose that and then Other.  Under the 
PDE Runtime grouping is the Error Log view.  You then need to make the 
error happen again while the view is open.

"Bartell, Aaron L. (TC)" <ALBartell@...>
Sent by: wdsci-l-bounces@...
03/05/2003 01:12 PM
Please respond to Websphere Development Studio Client for iSeries 

        To:     "'Websphere Development Studio Client for iSeries'" 
<wdsci-l@...>
        cc: 
        Subject:        [WDSCI-L] Re: Java Indentation engine

Thanks David,

(Continue reading)

Chevalier, Rick | 5 Mar 2003 20:52

Error compiling from WDSc

When I try and compile from within WDSc remote system perspective the job
ends with the following error.  Our operations group has looked on the IBM
sites and can't find any references to QRSEEXEC.  Has anyone else seen this?
If so, how can we correct the issue?

*NONE      Request                      03/05/03  13:09:42.116920  QWTSCSBJ
*N       QCMD        QSYS 
                                     Message . . . . :  -CALL
PGM(QDEVTOOLS/QRSEEXEC)                                 

PARM('/home/RCHEVA1/.eclipse/RSE/SBM00005.log' 'CRTSQLRPGI

                                       OBJ(RCHEVA1/JU2300R)
SRCFILE(RCHEVA1/QSRCJU) SRCMBR(JU2300R) COMMIT(*NONE)     
                                       OPTION(*EVENTF) CLOSQLCSR(*ENDMOD)
DBGVIEW(*SOURCE)')                          
CPD0170    Diagnostic              30   03/05/03  13:09:42.178912  QCACALL
QSYS        02B4     QCMD        QSYS 
                                     Message . . . . :   Program QRSEEXEC in
library QDEVTOOLS not found.             
                                     Cause . . . . . :   The program
specified on the CALL command can not be         
                                       found. Recovery  . . . :   Verify the
spelling of the program and library      
                                       names. Correct the names and try the
CALL command again.                       
CPF0001    Escape                  30   03/05/03  13:09:42.179104  QCACALL
QSYS        02C6     QCMD        QSYS 
                                     Message . . . . :   Error found on CALL
command.                                 
(Continue reading)

Mark Phippard | 5 Mar 2003 21:30

Re: Error compiling from WDSc

Rick,

First of all, you must be on V5R1 or higher.  Second, you need to have 
licensed program 5722WDS Option 60 "Workstation Tools - Base" installed. I 
believe you can get this with PTF SI04892.

If you are on an earlier release, just change your settings to compile 
interactive.

Hope this helps.

Mark

_______________________________________________
This is the Websphere Development Studio Client for iSeries  (WDSCI-L) mailing list
To post a message email: WDSCI-L@...
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/wdsci-l
or email: WDSCI-L-request@...
Before posting, please take a moment to review the archives
at http://archive.midrange.com/wdsci-l.

Bryan Yates | 5 Mar 2003 21:24
Picon
Picon

Re: Error compiling from WDSc

your missing some group ptf's

-----Original Message-----
From: Chevalier, Rick [mailto:Rick.Chevalier@...]
Sent: Wednesday, March 05, 2003 1:53 PM
To: 'wdsci-l@...'
Subject: [WDSCI-L] Error compiling from WDSc

When I try and compile from within WDSc remote system perspective the job
ends with the following error.  Our operations group has looked on the IBM
sites and can't find any references to QRSEEXEC.  Has anyone else seen this?
If so, how can we correct the issue?

*NONE      Request                      03/05/03  13:09:42.116920  QWTSCSBJ
*N       QCMD        QSYS 
                                     Message . . . . :  -CALL
PGM(QDEVTOOLS/QRSEEXEC)                                 

PARM('/home/RCHEVA1/.eclipse/RSE/SBM00005.log' 'CRTSQLRPGI

                                       OBJ(RCHEVA1/JU2300R)
SRCFILE(RCHEVA1/QSRCJU) SRCMBR(JU2300R) COMMIT(*NONE)     
                                       OPTION(*EVENTF) CLOSQLCSR(*ENDMOD)
DBGVIEW(*SOURCE)')                          
CPD0170    Diagnostic              30   03/05/03  13:09:42.178912  QCACALL
QSYS        02B4     QCMD        QSYS 
                                     Message . . . . :   Program QRSEEXEC in
library QDEVTOOLS not found.             
                                     Cause . . . . . :   The program
specified on the CALL command can not be         
(Continue reading)


Gmane