IE 5.5 and Applets

Hi
I have done a quite a lot of java applications but not applets.
No trying to cover this I get problems with CLASSPATH I think.
When running my test applet with just one task in init() add a Jlist I get the NoClassFoundException javax.swing.JList what am I doing wrong how does this work ?

You should use this code for your Applet: (insteed of <applet ...>)
<OBJECT codetype="application/java" NAME="theName"
WIDTH = 450 HEIGHT = 250 classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0">
<PARAM NAME = NAME VALUE = "theName" >
<PARAM NAME = CODE VALUE = "theName.class" >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3.0">
<PARAM NAME = MAYSCRIPT VALUE = true >
<PARAM NAME="scriptable" VALUE="true">
<EMBED NAME="theName" MAYSCRIPT=true scriptable=true type="application/x-java-applet;version=1.2" java_CODE = "theName.class" WIDTH = 350 HEIGHT = 250 pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html"></EMBED>
</OBJECT>
This will use JRE1.3. If this is not installed on the client maschine jre is installed automaticly.
MayScript and Scriptable are used to connect the Apllet via JavaScript.
I hope this could help.
J&ouml;rn

Similar Messages

  • Is it possible to run a website built in Java and applet from Safari browser in iPad

    Is it possible to run a website built in Java and applet from Safari browser in iPad?

    Java isn't supported on the iPad

  • JDev3.0's JSP and Applet works on NT but doesn't work on Win98, why?

    JDeveloper3.0 works fine on WindowNT machine when I run JSP files and Applet, but at home the JDeveloper3.0 cannot trigger the browser to display the result on my Windows98 machine when I run the JSP files or Applet. Why? How can I make it works for me at home. Other tools, such as J++6.0 and JBuilder work with Applet on the same machine. Who can help me?

    James,
    The JDeveloper 3.0 design time environment is not supported on Windows98. Some functions might work under Win98 but they are not supported.
    Sorry!
    Regards,
    Arun

  • Regarding communication between JSF and applet.

    Hi all,
    I have to send a array of int value from JSF to the applet method and vice versa,
    so how can I do that?
    Is there any straight forward way is there?
    Or I need to use javascript in between applet and JSF for communicating.
    If this is case can give some links so that I can go through it.
    What I need is, I have jsf table(grid) when I select a row from table, for the selected row I have to display selected row ID in applet and vice versa.
    Any suggestion or links will be appreciated, thanks in advance.
    Thanks
    daya

    thanks and sorry for late reply, let me go through the link,
    i have tried with JavaScript, i got stuck, i need to call a JavaScript method for JSF component event listener. I searched in Google but no help regarding same.
    Actually what I need is, I have JSF Component i.e. GridView(Table) and applet in a page. And for each row selection in GridView(table) I need to call a javascript method (with column value), and vice versa.
    Can you give suggestion or any link so that can proceed further.
    and i am able to communicate between applet which are included in the page
    Thanks
    Daya

  • Adf faces table and applet in jsf page navSubmit not working in IE

    Hi
    I have a jsf page with adf faces table and applet , previous / next navigation is not working for my table when i add the applet to the same page , it is working in firefox but not in IE .
    I have no clue what to change , can any one help. below is the sample code for my jsf page
    Best regards
    Srinivas
    Code follows, not sure how to format the code here
    <h:form>
    <af:panelPage title="Test Adf faces table and applet">
    <af:panelHeader text="Orders">
    <af:table value="#{bindings.Orders.collectionModel}" var="row"
    rows="#{bindings.Orders.rangeSize}"
    first="#{bindings.Orders.rangeStart}"
    emptyText="#{bindings.Orders.viewable ? 'No rows yet.' : 'Access Denied.'}"
    id="orders" >
    <af:column sortProperty="order"
    headerText="#{bindings.Orders.labels.order}">
    <af:commandLink text="#{row.order}"
    id="orderNumber"
    onclick="showOrder(#{row.order})"
    disabled="false"/>
    </af:column>
                   </af:table>
    </af:panelHeader>
    <af:objectSpacer width="10" height="10"/>
    <af:panelBox>
    <f:verbatim>
    <div id="appletDiv">
                        <applet here />
                        </div>
    </f:verbatim>
    </af:panelBox>
    </af:panelHorizontal>
    </af:panelPage>
    </h:form>

    Sorry about the format, it looked okay when i previewed it , now it looks like terrible

  • Package and applet

    I am reading about Zhiqun's Java Card book,
    and I wonder about the relationship between a package and an applet.
    Am I right in saying:
    1. An applet comprises one or several packages
    2. A package only belongs to one applet
    3. One package is one group context
    Hope to get your guidance.
    B.R.
    RuHE

    Refers to your assertions,
    Please help me..
    Case 1
    I have package A. Package A contains 2 class (A1 & A2 ) and 2 package (B and C).
    Then, I make 2 applet, they are applet-B (for package B) and applet-C (for package C).
    When simulationi in JCWDE, applet-B and applet-C have no problem. But, in CREF, applet throw exception and status word is 6443.
    Case 2
    When I try to include class A1 and A2 into package B and C, so package A is empy. Surprisingly, applet-B and applet-C can run in CREF and JCWDE. I don't know, what's wrong in case 1.
    Can you give me explanation or explanation about problem in above...?
    Best Regards,
    Wiwit

  • Appletviewer and applets

    Hi!
    I am using j2sdk 1.4.0 under linux. I have been creating an applet. The screen refresh is tied to a timer. However, the screen refresh gets very slow after 2 - 5 seconds after the applet has been started. If I move mouse in applets window, the refresh gets fast during that time.
    The applet code is very simple: timer calls repaint method of the applet and applet's paint method just draws new picture to the screen using drawImage.
    Anyone run into same problem? What could be wrong?
    Thanks
    Sammy

    ok but whats the problem the fast refreshing??
    if so then u have two options:
    1)double buffering
    2)if u dont need the re-paint let the java do it for u dont overide it
    denny

  • Can I use AWT and Applets in a J2EE project???

    Hi,
    I adore applets and the package AWT... And I would like to know if some way exists to integrate my applet with my application J2EE... I want to use these in the vision tier in a J2EE(EJB) project...
    How can I make that my applet acts as an observing process of my model??? If the JVM will be informed on any alterations in the model will be the JVM of the server while my applet will be being executed for the JVM of browser...
    []'s
    Ary Junior

    I have a J2EE application, for which I have a module which is used by system administrators. this module is completly written in Java swing.
    and it does talk to my EJBs.
    If you don't have a firewall in your application, then you can directly make your applications in awt, swing and applets talk to EJBs. if you do have a firewall, then just write a web-service wrapper over your EJBs and other J2EE components and use them from desktop applications.
    It seems that you want to implement a kind of a applet based monitor application for your J2EE EJBs on the server. Applets cannot directly monitor your EJBs.
    Create a new module which has a service which acts as an event listener on the server. each j2ee component on the server notify it if there is a change to them. this service, can then write the data realted to the modification on a socket which is continiously being read by the applet. So you can implement a kind of a monitor for J2ee apps with applets.
    hope this helps.
    regards,
    Abhishek.
    PS:How did you manage to adore the AWT ;-) ? I found that it sucks (good performance.. very poor lnf) ... java swing sucks too (very poor performance ... avaerage lnf).

  • Xml and applets

    I'm trying to use Sax in an applet to read an xml file. My application works fine, but when I convert it to an applet, I get errors.
    Does anybody know where I can get info and examples using Xml, Sax, and Applets? Any info would be helpful. Thanks.

    Probably nothing to do with XML. You use it in an applet precisely as you would use it in an application. You are probably running into one of the usual applet problems. Of course, this is all guesswork without any idea of what errors you are actually having.

  • Unable to execute and applet

    I'm new programmer in java. There are somme applet that run with appletwier
    but witch do not run with Internet explorer and Netscape. I'm always getting
    this error : 'Class not found'. I want to know all the steps to run and applet
    using Netscape or Internet explorer.
    I'm french speaking. Sorry if my english is poor.
    Thank's for your answers.

    I think you can't solve your problem.
    The fact is that appletviewer supports the java classes you have installed with the sun's jdk... if you are using jdk 1.3.1, it uses the java libraries included in your installed distribution. IE virtual machine, instead, uses its own library, so you can't use in your applets classes like: swing, graphics2d, and so on...
    I know that it's not a great help. Sorry!
    However, if someone could tell us how to include these classes in our CABs/JARs... i think we are really happy! :-)
    Ciao,
    Paolo.

  • Looking for WEB HOST that I can do servlets and applets on

    Hello everyone,
    Does anyone know where I can buy web space that will allow me to run a servlet and applet from. I have been shopping today and I had difficutly finding one.

    Hmm.... well duffymo. I have gone to a number of sites through Google looking for web hosting sites that support java and I must be picking all the wrong ones to look at because I have only found one in Fremont out of 25-30 that I have looked at.
    I guess duffymo you can say what you want in a forum, but usually answering a question with a question isn't very helpful nor appreciated.

  • Problem with Image I/O and applet

    I am having trouble using Image I/O to load a PNG image in an applet. I am just using a very basic applet that simply loads the image from a URL and that's it, and the exception I get is -
    java.lang.SecurityException: Unable to create temporary file
    at java.io.File.checkAndCreate(File.java:1294)
    at java.io.File.createTempFile(File.java:1385)
    The simple applet is as follows -
    import java.awt.image.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import javax.imageio.ImageIO;
    public class CheckImageApplet extends JApplet
    public BufferedImage bi = null;
    public void init()
    URL url = null;
    BufferedImage bi = null;
    try
    url = new URL( "http://localhost/CheckImageSystem/checkimages/backGS.png" );
    catch ( MalformedURLException mfue )
    try
    bi = ImageIO.read( url );
    catch ( IOException ioe )
    Any thoughts on this exception would be appreciated

    It seems the line
    bi = ImageIO.read( url );
    fails. Can't see anything else. Perhaps this method needs to create a temp image for some reason, and tries to do this at the local harddrive (not allowed). Use getImage(URL, String); instead. ImageIO isn't intended for applets, I think, so you should use the applet methods.
    Nille

  • Problem with JPanel, CardLayout and Applets

    Hello All,
    I have a JPanel with a CardLayout as layout manager. In this JPanel i'm gonna show a few applets.
    My problem is when i'm showing an applet for second time and try to click a button it does nothing... I think the action method is not called again...
    How can i solve this?
    Thanks in advance ; )

    Here is a few parts of my code...
    public class InitAll{
    JPanel cards = new JPanel( new CardLayout() );
    JComboBox selector = new JComboBox();
    Object objetosV[][] ={
         {"Ventas",venta.class},
         {"Compras",compras.class}, //These are applets.
         {"Traspasos",traspasos.class},
         {"Facturas",factura.class},
    public void load( Applet app ){
    cards.removeAll();
    selector.removeAll();
    cards.add( "Entrada", app );
    selector.addItem( "Entrada" );
    for ( int i=0; i < objetosV.length; i++ ){
         selector.addItem( (String)objetosV[0] );
         Applet temp=createPanel( ( Class ) objetosV[i][1] );
         temp.setSize( 800,750 );
         cards.add( ( String ) objetosV[i][0], temp );
    public void itemStateChanged(ItemEvent e) {
    ((CardLayout)cards.getLayout()).show(cards, selector.getSelectedItem().toString() );
    Applet tmp = (Applet)cards.getComponent(selector.getSelectedIndex() );
    tmp.start();
    After i show for second time an Applet and select a button from it. the button does nothing...
    Thanks...

  • Communication between JApplet and Applet on the same web page

    Hi Freinds
    I have a JSP page containing two applets as follows :-
    <jsp:plugin type="applet" code="TreePageJavaClass.class" codebase="/MYOA" width="200" height="300" name="Applet1">
    </jsp:plugin>
    <jsp:plugin type="applet" code="TreePageJavaClass2.class" codebase="/MYOA" name="Applet2" width="200" height="300">
    </jsp:plugin>
    First applet extends JApplet class and has a tree constructed using swing.
    Second applet extends Applet class.
    Now I want to call a method in second applet on selecting a particular tree node on first applet. I can call method on second applet from first applet when both extends Applet class (not JApplet)
    So please tell me what's the problem here and how it can be solved.
    Thanks

    There is a Middle Eastern version of Adobe Dreamweaver CS4-ME, with full support
    of Hebrew, Arabic, Farsi and other languages,
    see http://www.fontworld.com/me/dreamweaverme.html

  • Self Signing and Applets

    I have spent hours reading over the Signed Applets forum and Sun applet security training pages. There seems to be so much confusion in this area that the use and proliferation of Java Applets must be suffering.
    As the usual underfunded developer, I am not able to buy a certificate before proving the concept. Therefore, I am relegated to using self signed applets to demonstrate the use of signed applets and the power they have. This would also be the case for students of Java applets, of which I am also one.
    I have tried the sample applets in the Sun security training. They in fact write the file to my system, but they also display a security error as well.
    The Sun training indicates that I should be using a policy file with the security and that when my applet is run by another user, that user must also manually update their policy file, using keytool, before running the applet. If this is true, I see no use for Java Applets that work outside of the sandbox confines. There must be a better way to use applets that require security.
    I have also read Irene's 10 steps and numerous comments about them. They seem to work fine until I get to step 10. If I am using a self signed applet, why should the user of the applet have to click on a HREF to load the certificate into the keystore? Why shouldn't the user be prompted to trust the self signed certificate, just like a certificate obtained from a CA?
    I have tried to develop a batch file (Windows NT 4.0) to illustrate the signing process, but I have been unsuccessful. I have listed the output from it below followed by the batch file itself. Would someone please indicate what would make this batch file work? If possible, I would like it to work for both IE 5.5 and Netscape 4.06; especially ie 5.5.
    My environment consists of:
    NT 4.0 (SP6)
    IE 5.5 (SP1)
    JRUN 3.1
    JRE 1.3.1_01
    JDK 1.3.1_01
    javac writeFile.java
    keytool -delete -alias writefile
    Enter keystore password: password
    keytool -genkey -alias writefile
    Enter keystore password: password
    What is your first and last name?
    [Unknown]: Robert Klawuhn
    What is the name of your organizational unit?
    [Unknown]: mygroup
    What is the name of your organization?
    [Unknown]: mycompany
    What is the name of your City or Locality?
    [Unknown]: mycity
    What is the name of your State or Province?
    [Unknown]: mystate
    What is the two-letter country code for this unit?
    [Unknown]: US
    Is <CN=Robert Klawuhn, OU=mygroup, O=mycompany, L=mycity, ST=mystate, C=US> correct?
    [no]: yes
    Enter key password for <writefile>
    (RETURN if same as keystore password): password
    keytool -selfcert -alias writefile
    Enter keystore password: password
    keytool -list -alias writefile
    Enter keystore password: password
    writefile, Wed Dec 19 10:41:35 PST 2001, keyEntry,
    Certificate fingerprint (MD5): 90:4D:63:0E:9E:56:CF:7F:93:2B:92:EE:AA:2B:87:E3
    jar cvf writefile.jar writeFile.class
    added manifest
    adding: writeFile.class(in = 1678) (out= 940)(deflated 43%)
    jar tvf writefile.jar
    0 Wed Dec 19 10:41:58 PST 2001 META-INF/
    71 Wed Dec 19 10:41:58 PST 2001 META-INF/MANIFEST.MF
    1678 Wed Dec 19 10:40:46 PST 2001 writeFile.class
    jarsigner writefile.jar writefile
    Enter Passphrase for keystore: password
    jarsigner -verify -verbose -certs writefile.jar
    139 Wed Dec 19 10:42:02 PST 2001 META-INF/MANIFEST.MF
    192 Wed Dec 19 10:42:08 PST 2001 META-INF/WRITEFIL.SF
    1098 Wed Dec 19 10:42:08 PST 2001 META-INF/WRITEFIL.DSA
    0 Wed Dec 19 10:41:58 PST 2001 META-INF/
    smk 1678 Wed Dec 19 10:40:46 PST 2001 writeFile.class
    X.509, CN=Robert Klawuhn, OU=mygroup, O=mycompany, L=mycity, ST=mystate, C=US (writefile)
    s = signature was verified
    m = entry is listed in manifest
    k = at least one certificate was found in keystore
    i = at least one certificate was found in identity scope
    jar verified.
    1 file(s) copied.
    1 file(s) copied.
    1 file(s) copied.
    An error appears:
    java.security.cert.CertificateException: Unable to verify the certificate with root CA
    @ECHO OFF
    REM Doit.bat
    REM
    REM This batch file leads the user through the creating
    REM and signing of an applet class and how it is accessed
    REM from a browser. The applet creates the file: C:\tmpfoo.
    REM
    REM The JRE 1.3.1 plug-in should be installed. See the
    REM control panel for an icon leading to the plug-in.
    REM
    REM This demo is for JRE 1.3.1_01, NT 4 (SP6), HTMLConverter
    REM 1.3, and IE 5.5.
    REM
    REM Run the HTMLConverter 1.3 against the following HTML
    REM file to generate the converted HTML that will support
    REM both Netscape and IE. Get the converter from Sun.
    REM
    REM <html>
    REM <head>
    REM <title> Java Security Example: Writing Files</title>
    REM </head>
    REM <body>
    REM Hi there. There is a signed applet following...
    REM <hr>
    REM <applet code=writeFile.class archive="/writefile.jar" width=500 height=50>
    REM </applet>
    REM <hr>
    REM </body>
    REM </html>
    REM
    REM The following is the code for the applet.
    REM
    REM import java.awt.*;
    REM import java.io.*;
    REM import java.lang.*;
    REM import java.applet.*;
    REM
    REM public class writeFile extends Applet {
    REM String myFile = "/tmp/foo";
    REM File f = new File(myFile);
    REM DataOutputStream dos;
    REM
    REM public void init() {
    REM
    REM String osname = System.getProperty("os.name");
    REM if (osname.indexOf("Windows") != -1) {
    REM myFile="C:" + File.separator + "tmpfoo";
    REM }
    REM }
    REM
    REM public void paint(Graphics g) {
    REM      try {
    REM      dos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(myFile),128));
    REM      dos.writeChars("Cats can hypnotize you when you least expect it\n");
    REM      dos.flush();
    REM      g.drawString("Successfully wrote to the file named " + myFile + " -- go take a look at REM it!", 10, 10);
    REM      } catch (SecurityException e) {
    REM      g.drawString("writeFile: caught security exception", 10, 10);
    REM } catch (IOException ioe) {
    REM      g.drawString("writeFile: caught i/o exception", 10, 10);
    REM }
    REM }
    REM }
    REM
    @ECHO javac writeFile.java
    javac writeFile.java
    REM Generate a selfsigned certificate and put it into
    REM the keystore.
    REM
    REM password = password
    REM first and last name = Robert Klawuhn
    REM org unit = COMPASS
    REM org = Applied Materials
    REM city = Santa Clara
    REM state = California
    REM country = US
    REM The -selfcert option may not be necessary the first
    REM time this is run
    @ECHO keytool -delete -alias writefile
    keytool -delete -alias writefile
    @ECHO keytool -genkey -alias writefile
    keytool -genkey -alias writefile
    @ECHO keytool -selfcert -alias writefile
    keytool -selfcert -alias writefile
    REM
    REM Export the key that was just created into a .crt file.
    REM This is then sent to a CA to obtain a 'real' certificate
    REM which is then imported into the keystore. These are
    REM commented because I am trying to use a self-issued key.
    REM
    REM keytool -certreq -alias writefile -file writefile.crt
    REM keytool -import -alias writefile -file writefile.crt
    @ECHO keytool -list -alias writefile
    keytool -list -alias writefile
    REM Jar the applet
    REM
    @ECHO jar cvf writefile.jar writeFile.class
    jar cvf writefile.jar writeFile.class
    REM Verify the jar
    REM
    @ECHO jar tvf writefile.jar
    jar tvf writefile.jar
    REM Sign the jar
    REM
    REM passphrase = password
    @ECHO jarsigner writefile.jar writefile
    jarsigner writefile.jar writefile
    REM Verify the signed jar file
    REM
    @ECHO jarsigner -verify -verbose -certs writefile.jar
    jarsigner -verify -verbose -certs writefile.jar
    REM The next statements assume that the applet will be
    REM obtained from Macromedia's JRun default server.
    REM
    copy writefile.crt %JRUN_HOME%\servers\default\default-app\.
    copy writefile.jar %JRUN_HOME%\servers\default\default-app\.
    copy writefile.html %JRUN_HOME%\servers\default\default-app\.
    "C:\Program Files\Plus!\Microsoft Internet\IEXPLORE.EXE" "http://localhost:8100/writefile.html"

    I believe I finally found my problem. If I use JRun as a web server and put the applet on the default server within JRun, I am only able to run the applet from a different client. It doesn't seem to load right on the same system as JRun.
    This may be due to other software I have running on my JRun server system, but it finally works.
    For those that are still having problems with self-signing applets, here is a batch file, that I am using, that works for me.
    @ECHO OFF
    REM Doit.bat
    REM
    REM This batch file leads the user through the creating
    REM and signing of an applet class and how it is accessed
    REM from a browser. When the Publish button is pressed
    REM     the selected file is copied to C:\TEMP\BOBK_copy.txt.
    REM
    REM The JRE 1.3.1 plug-in will be installed on the client.
    REM See the control panel for an icon leading to the plug-in.
    REM
    REM This demo is for JRE 1.3.1_01, HTMLConverter
    REM 1.3, and IE 5.5.
    REM
    REM Run the HTMLConverter 1.3 against the following HTML
    REM file to generate the converted HTML that will support
    REM both Netscape and IE. Get the converter from Sun.
    REM
    REM <html>
    REM <head>
    REM <title> Java Security Example</title>
    REM </head>
    REM <body>
    REM Hi there. There is a signed applet following...
    REM <hr>
    REM <applet code=FilePrompt.class archive="/fileprompt.jar" width=800 height=500>
    REM </applet>
    REM <hr>
    REM </body>
    REM </html>
    REM
    REM This applet can be executed by starting the default server in JRun and then
    REM then entering the following for the IE URL: http://K011614:8100/FilePrompt.html
    REM This assumes that JRun is installed and running on K011614.
    REM
    REM The first time the applet is executed, the 1.3.1_02 JRE is loaded if allowed.
    REM The main problem here is the JRE is about 5.3MB and takes a while.
    REM
    REM For some reason, running IE and pointing it to the applet on the same system that
    REM JRun is executing, doesn't work. You have to run it from another client that
    REM references the applet.
    REM
    @ECHO keytool -delete -alias fileprompt
    keytool -delete -alias fileprompt
    @ECHO keytool -genkey -alias fileprompt
    keytool -genkey -alias fileprompt
    @ECHO keytool -selfcert -alias fileprompt
    keytool -selfcert -alias fileprompt
    @ECHO keytool -export -alias fileprompt -file fileprompt.crt
    keytool -export -alias fileprompt -file fileprompt.crt
    @ECHO keytool -list -alias fileprompt
    keytool -list -alias fileprompt
    @ECHO jar cvf fileprompt.jar *.class
    jar cvf fileprompt.jar *.class
    @ECHO jar tvf fileprompt.jar
    jar tvf fileprompt.jar
    @ECHO jarsigner fileprompt.jar fileprompt
    jarsigner fileprompt.jar fileprompt
    @ECHO jarsigner -verify -verbose -certs fileprompt.jar
    jarsigner -verify -verbose -certs fileprompt.jar
    copy fileprompt.jar %JRUN_HOME%\servers\default\default-app\.
    copy FilePrompt.html %JRUN_HOME%\servers\default\default-app\.
    REM The following doesn't seem to work when executed on the same
    REM system as the JRun server. Access the applet from another client.
    REM "C:\Program Files\Plus!\Microsoft Internet\IEXPLORE.EXE" "http://localhost:8100/FilePrompt.html"
    pause

  • HostApp and Applet in the same project space?!

    Hello,
    I am using EclipseJCDE for the Applet side and jCardSim for the host application side.
    I wonder if I setup 2 packages, one for each side.
    As you know, I can't include Java SE (jre7) for the Applet.
    When I encompass both applications in one project space, the host application side cannot find certain standard functions
    But when I separate them into 2 project spaces, how do I make them talk?
    Thanks
    Jack
    Edited by: 933351 on 2012/12/29 上午 12:47
    Edited by: 933351 on 2012/12/29 上午 12:48

    Hello,
    I managed to get it work. But how come jCardSim returns a responseADPU with a '?'(-128) at the beginning.
    Can I get rid of that? or is it supposed to be there?
    Thanks
    Jack

Maybe you are looking for