That was the problem.
Some other issues with deprecated APIs.  Maybe if I look at the sample C
code I can figure out what to change in the java code.


On Fri, Jun 7, 2013 at 9:00 AM, Martin Packer <[email protected]>wrote:

> Open and close square bracket, I expect.
>
> Cheers, Martin
>
> Martin Packer,
> zChampion, Principal Systems Investigator,
> Worldwide Banking Center of Excellence, IBM
>
> +44-7802-245-584
>
> email: [email protected]
>
> Twitter / Facebook IDs: MartinPacker
> Blog:
> https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker
>
>
>
> From:   Mark Pace <[email protected]>
> To:     [email protected],
> Date:   06/07/2013 01:49 PM
> Subject:        Re: X11 forwarding
> Sent by:        IBM Mainframe Discussion List <[email protected]>
>
>
>
> Thank you!  But that main(Stringݨ   <----  What are those characters?
>
>
> On Thu, Jun 6, 2013 at 11:02 PM, Donald J. <[email protected]> wrote:
>
> > Here is a java program EmptyFrame1.java you can easily compile:
> >
> >
> > // file: EmptyFrame1.java
> >
> > import java.awt.event.*;
> > import javax.swing.*;
> >
> > class EmptyFrame1 extends JFrame {
> >
> >   // Constructor:
> >  public EmptyFrame1() {
> >        setTitle("Donald's Empty Frame");
> >        setSize(300,200); // default size is 0,0
> >        setLocation(10,200); // default is 0,0 (top left corner)
> >
> >        // Window Listeners
> >        addWindowListener(new WindowAdapter() {
> >                public void windowClosing(WindowEvent e) {
> >                   System.exit(0);
> >                } //windowClosing
> >        } );
> >  }
> >
> >  public static void main(Stringݨ args) {
> >    JFrame f = new EmptyFrame1();
> >    f.show();
> >  } //main
> > } //class EmptyFrame1
> > --
> >   Donald J.
> >   [email protected]
> >
> > On Thu, Jun 6, 2013, at 07:42 AM, Mark Pace wrote:
> > > I want to test X11 forwarding using SSH in Unix System Services.  But
> I
> > > can't find an executable X application like xclock.  I find some
> sample
> > > programs, but not any executable code.  Is there some executable files
> > > that
> > > I am not finding?
> > >
> > > --
> > > The postings on this site are my own and don’t necessarily represent
> > > Mainline’s positions or opinions
> > >
> > > Mark D Pace
> > > Senior Systems Engineer
> > > Mainline Information Systems
> > >
> > > ----------------------------------------------------------------------
> > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > send email to [email protected] with the message: INFO IBM-MAIN
> >
> > --
> > http://www.fastmail.fm - Send your email first class
> >
> > ----------------------------------------------------------------------
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to [email protected] with the message: INFO IBM-MAIN
> >
>
>
>
> --
> The postings on this site are my own and don’t necessarily represent
> Mainline’s positions or opinions
>
> Mark D Pace
> Senior Systems Engineer
> Mainline Information Systems
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN
>
>
>
>
>
>
>
>
> Unless stated otherwise above:
> IBM United Kingdom Limited - Registered in England and Wales with number
> 741598.
> Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
>
>
>
>
>
>
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN
>



-- 
The postings on this site are my own and don’t necessarily represent
Mainline’s positions or opinions

Mark D Pace
Senior Systems Engineer
Mainline Information Systems

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to