Skip to Content.
Sympa Menu

ndt-users - Re: [liu@sfu.ca: NDT java error]

Subject: ndt-users list created

List archive

Re: [: NDT java error]


Chronological Thread 
  • From: Peter Van Epp <>
  • To: "Jeff W. Boote" <>
  • Cc: Richard Carlson <>,
  • Subject: Re: [: NDT java error]
  • Date: Wed, 23 Aug 2006 15:31:21 -0700

Firefox in this case, but I have safari, opera, and an old copy of
omniweb (and a real old copy of IE for the MAC :-)).

Peter Van Epp / Operations and Technical Support
Simon Fraser University, Burnaby, B.C. Canada


On Wed, Aug 23, 2006 at 03:21:01PM -0600, Jeff W. Boote wrote:
> Peter,
>
> Which web browser were you using on the Mac? (I'm guessing safari...)
>
> Thanks,
> jeff
>
> Richard Carlson wrote:
> >Hi Peter;
> >
> >This was on the just released NDT-3.3.12 version?
> >
> >Also, would you try connecting to http://lab236.interne2.edu:7123 This
> >is a test system running the ISO image. It certainly worked with my PC
> >and Netscape, IE, and Firefox but I would be delighted to know what
> >happens when the Mac hits it.
> >
> >Rich
> >
> >At 04:01 PM 8/23/2006, Peter Van Epp wrote:
> >
> >> On the Mac with OS 10.3 and Java 1.4.2_09 Lixin had to make the
> >>following changes to the Java code because it throws a security exception
> >>unless you do (Internet Exploder on a PC workes fine though). The more
> >>Java literate among us think this is a change to the language
> >>somewhere along
> >>the line.
> >>
> >># diff -u Tcpbw100.java.orig Tcpbw100.java
> >>--- Tcpbw100.java.orig 2006-08-18 02:50:49.000000000 -0700
> >>+++ Tcpbw100.java 2006-08-23 11:17:00.000000000 -0700
> >>@@ -171,7 +171,7 @@
> >> }
> >>
> >> public void init() {
> >>- setLayout(new BorderLayout());
> >>+ getContentPane().setLayout(new BorderLayout());
> >> showStatus("Tcpbw100 ready");
> >> failed = false ;
> >> Randomize = false;
> >>@@ -179,7 +179,7 @@
> >> results = new MyTextPane();
> >> results.append("TCP/Web100 Network Diagnostic Tool v" + VERSION +
> >>"\n");
> >> results.setEditable(false);
> >>- add(new JScrollPane(results));
> >>+ getContentPane().add(new JScrollPane(results));
> >> results.append("click START to begin\n");
> >> Panel mPanel = new Panel();
> >> startTest = new JButton("START");
> >>@@ -208,7 +208,7 @@
> >>
> >> });
> >> mPanel.add(options);
> >>- add(BorderLayout.SOUTH, mPanel);
> >>+ getContentPane().add(BorderLayout.SOUTH, mPanel);
> >> }
> >>
> >> class MyTextPane extends JTextPane
> >>@@ -1882,7 +1882,7 @@
> >> }
> >> f.setTitle("Web100 Variables");
> >> Panel buttons = new Panel();
> >>- f.add("South", buttons);
> >>+ f.getContentPane().add("South", buttons);
> >>
> >> disMiss = new JButton("Close");
> >> disMiss.addActionListener(this);
> >>@@ -1897,7 +1897,7 @@
> >>
> >> buttons.add("West", disMiss);
> >> buttons.add("East", copy);
> >>- f.add(new JScrollPane(diagnosis));
> >>+ f.getContentPane().add(new JScrollPane(diagnosis));
> >> f.pack();
> >> } // diagnose()
> >>
> >>@@ -1911,7 +1911,7 @@
> >> }
> >> ff.setTitle("Detailed Statistics");
> >> Panel buttons = new Panel();
> >>- ff.add("South", buttons);
> >>+ ff.getContentPane().add("South", buttons);
> >>
> >> disMiss2 = new JButton("Close");
> >> disMiss2.addActionListener(this);
> >>@@ -1926,7 +1926,7 @@
> >>
> >> buttons.add("West", disMiss2);
> >> buttons.add("East", copy2);
> >>- ff.add(new JScrollPane(statistics));
> >>+ ff.getContentPane().add(new JScrollPane(statistics));
> >> ff.pack();
> >> } // statistics()
> >>
> >>@@ -1943,10 +1943,10 @@
> >> defaultTest.setSelected(true);
> >> defaultTest.setEnabled(false);
> >> testsPanel.add(defaultTest);
> >>- optionsFrame.add(testsPanel);
> >>+ optionsFrame.getContentPane().add(testsPanel);
> >>
> >> Panel buttons = new Panel();
> >>- optionsFrame.add("South", buttons);
> >>+ optionsFrame.getContentPane().add("South", buttons);
> >>
> >> JButton okButton= new JButton("OK");
> >> okButton.addActionListener(new ActionListener() {
> >>
> >>----- End forwarded message -----
> >>
> >>Peter Van Epp / Operations and Technical Support
> >>Simon Fraser University, Burnaby, B.C. Canada
> >
> >
> >------------------------------------
> >
> >
> >
> >Richard A. Carlson e-mail:
> >
> >Network Engineer phone: (734) 352-7043
> >Internet2 fax: (734) 913-4255
> >1000 Oakbrook Dr; Suite 300
> >Ann Arbor, MI 48104



Archive powered by MHonArc 2.6.16.

Top of Page