How to load jsp page in Frame?

hi
I have tried to make an Application which is a very simple Messenger made by java.awt.Frame
and had problem to load/open jsp page.
Is there any way to load/open jsp page in Frame When an event occured?
It makes me crasy these days.
Please Help me.
Thank you and have a nice day!
Sorry about my English^^

I think we need more info than that.
Why do u want to open JSP in a Frame? do u want to open it with all the JSP code still there (for editing), or do u just want to display the HTML which is created after executing the JSP.
You will need Tomcat or JRun or another servlet/JSP engine to execute a JSP. do u have it installed? and the fact that u have win2000 and sql server 2000 doesnt really shed any light on your problem and what u r trying to acheive.
Post more info and hopefully we'll be able to help u better.

Similar Messages

  • Ive just learned that i can use loadjava to load jsp pages into the database.

    Ive just learned that i can use loadjava to load jsp pages into the database. How is that possible. How can someone go to my lets say, index.jsp page and actually see it if its inside the database? What authenticates it? Where would you set the parameters to tell http(apache) to look inside the db for the pages?
    Any ideas?

    Thanks for the reply. If I put the file on the database, does it have to be in a particular location? I've put it on the database server, launched sql*plus (as APPS) and ran the following:
    execute dbms_java.loadjava('-v', 'ZebraGetPrinterFromXML.class');
    PL/SQL procedure successfully completed.Then when I try to run a process that uses this I get this:
    ORA-29540: class ZebraGetPrinterFromXML does not exist

  • How to run JSP pages in weblogic 8.1 sp2

    hi frnzs,
    plese give me some idea about how to run JSP pages in weblogic server.

    enen i dont know hw to fly palne otherwise i can definitely give u sm guides abt that......

  • How to load html page or website in flash as3

    hi
    how to load html page or web link (www.google.com)  in flash as3.
    please help me...

    Use the navigateToURL function...
    var url:String = "http://www.wherever.com";:
    var req:URLRequest = new URLRequest(url);
    navigateToURL(req);
    OR in one line...
    navugateToURL(new URLRequest("http://www.wherever.com"));

  • How to load another page in a frame?

    Hi!
    I have a frame with a page where is a button. I need to load another page in the frame when I click the button. How can I make it on the ADF? I work on JDeveloper 10.1.3.4.

    I found example. Thank you for help. Refresh works very well! This code:
        protected void refreshPage(String refreshpage) {
            FacesContext fc = FacesContext.getCurrentInstance();
            ViewHandler ViewH = fc.getApplication().getViewHandler();
            UIViewRoot UIV = ViewH.createView(fc, refreshpage);
            UIV.setViewId(refreshpage);
            fc.setViewRoot(UIV);
        refreshPage("/transfers/ClaimForm.jspx");

  • How to execute a backing-bean method before loading JSP Page?

    Hi everybody.
    Scene:
    An AdfForm, with
    -SelectChoice, referenced to a <list> of pageDef, which is referenced to an ADF BC.
    Goal:
    -Executing the query of the ADF BC before load the SelectChoice, to load the correct values.
    A good question to know:
    Exists any way to execute a method of backing before loading a JSP Page?
    Any similar to onload method of javascript. It could be fantastic.
    Thanks in advance,
    Jaime

    hi Jaime
    If I understand correctly, you are using the ADF Model for data binding.
    Because your goal is "Executing the query of the ADF BC ...", maybe you can also consider to refresh an executable in your Page Definition.
    See also "10.5.5 How to Use Refresh Correctly for InvokeAction and Iterator Bindings"
    at http://download.oracle.com/docs/html/B25947_01/bcdcpal005.htm#BJECHBHF
    It says "... You can use the Refresh property on iterator bindings and invokeAction executables in your page definition to control when each are evaluated during the ADF page lifecycle, either during the prepareModel phase, the prepareRender phase, or both. ...".
    Although you have posted your question in a structured way, which is a good thing, I think it would help to understand your question if you can explain how you determine "the correct values" for your list, what is varying?
    success
    Jan Vervecken

  • Delay Loading JSP page

    I have a jsp page, it has got two frames, the upper one is an applet and the lower one is a jsp page. The jsp page tries to accesc the variable of applet. Since the jsp page gets loaded first it gets javascript error.
    Now i want to delay the jsp page from gettingloaded. It should load afer the applet.
    I cannot touch the applet because it contains truepass code.
    Please let me know how can i do it.
    Thanks
    Abhay

    To frustrate your users? Anyway, try Thread.sleep.

  • Removing scrollbars on the JSP page of frames created by included JSP files

    Hi All,
             In the iternet sales B2B application which we are developing, has a blank JSP file. Wherein we are adding other JSP files on it, loading trough JS.
    When we are adding it is making the various jsp files in the form of the frames, and each frame has different JSP page. So it is adding scrollbars on each frame if the size of the page exceeds the size of frame.
    we don't want the scrollbars. Kindly suggest to remove these scrollbars, and all the pages should look as a single JSP page.
    Thanks & Regards
    EKta

    Hi
    set scrolling="no" while creating frames
    Murali.K.N

  • Probplem on loading JSP page

    I have some problem doing my jsp, whenever i tried to load a jsp page with simple form, when i click the button of form, it make an insert into an Access Database. OK. The problem is: when i load the page the first time, the page make an insert into the database of null values.(The scripts are executed without button click ).
    Thaks for help,Simon.

    To prevent that problem happen.
    I will suggest you with some idea:
    1. You can prevent user to view the address of the page( eg, by creating frame or by invisible the address bar when need )
    2. Prevent this kind of problem from your database. Sample like this:
    You have a table with an PK - of course this PK is not allow null. So, when your page try to insert in the databse it will return error. You can handle this error as well.
    3. You can declare a querystring to indicate that your page is first load or else.
    4. Check this problem from your Java code.
    I hope all of my suggestion will useful for you.
    Have a try!!!!

  • Loading JSP Pages

    How can a servlet using RequestDispatcher dispatch the result to .jsp which resides in a frameset
    MyServlet.jsp
    MainFrame.jsp --- has two frames Frame1.jsp and Frame2.jsp
    MyServlet.jsp should dispatch the result to either Frame1.jsp or Frame2.jsp.
    My final page should be MainFrame.jsp
    Can anyone help?

    It depends on what your page design looks like? Is MyServlet and MainFrame displayed at the same time? If so, you can click on your link and have a target parameter such as target="bottomright". This will cause the result of the link to appear in the specified frame window. Or, if using javascript, you could have parent.mainframe.frame2 or some other similar window reference (this is assuming you gave your frameset windows a name).
    Describe the flow a little more so I can come up with some better ideas.
    Michael

  • How to load Html page in Flex 4 application

    Hi All,
              I am able to load html page in flex 3 application but i am unable to load in flex 4 application.
    How can i do it.
    Can any help me regarding this.
    Thanks in Advance
    Raghu.

    This may help - http://www.deitte.com/archives/2006/08/finally_updated.htm
    Thanks and Best regards,
    Pallavi Joshi | [email protected] | www.infocepts.com

  • Tomcat not loading jsp pages

    I've running 10.6.2 with default install of Tomcat and Apache. Tomcat is enabled in Server Admin, and I've created a site in Server Admin that points 8080 port requests to /Library/Tomcat/webapps. And index.jsp is set as a default index file.
    When I try and go to myserver:8080/mysite the browser loads the jsp as text. Just like I'd opened it in a text file.
    I've removed the site folder, and uploaded a new war file (which works on my local 10.6.2 client machine with Tomcat 6.0.24 installed), and a new site folder is created as expected. But the jsp page just doesn't load correctly.
    What am I missing (besides years of Tomcat and Apache experience..)

    hey.. noticed one more thing.. stuff works when i put
    it in my file:///var/lib/tomcat-5.5/webapps/ROOT/
    folder .. so i think i havent set my user properly..
    any pointers??I don't think you should be putting stuff in ROOT.
    Create your own web context and put it under /webapps.
    %

  • How to add Jsp pages into existing portal (JDeveloper 9.0.4)

    I am a jsp developer. I have to add a jsp page into existing portal. I am new to portal. Could anyone help me how to develop jsp using portal classes like PortletRenderRequest,ProviderSession and others.

    Rigoberto, there should be no space between "-Xbootclasspath/p:" and the path "C:\oracle\infra\jdbc-10.1.0.4\ojdbc14.jar;C:\oracle\infra\jdbc-10.1.0.4\orai18n.jar"
    By the way, one can always take a look at the logs at
      $ORACLE_HOME/opmn/logs
    especially those files whose names start with OC4J~ if there is some wrong with oc4j processes. Those files are the default oc4j stout and sterr. If oc4j can not init, there should be some kind of error message in them.
    By the way, the following line may be deleted since no property file is specified.
      <data id="oc4j-options" value="-properties"/>
    Hope this helps.

  • Intermitent pauses when loading JSP page.

    Solaris 7
    Weblogic V5.1 SP5
    Apache 1.3.12
    Mod_wl_ssl.so
    JDK 1.3
    Hi,
    We have two environments running very similar configurations.
    The first is a test environment with an Ultra5 running as an Apache server
    and an Ultra 10 as the weblogic server. Two databases are currently being
    used one is an SQL and the other Oracle.
    The second is our production site, and is the same apart from the hardware,
    the Apache system is a Netra and the Weblogic server is a 220R. (There are
    some other differences, physical location etc)
    On the test site everything is fine but on the live site we are experiencing
    a long pause when loading pages. This happens every 10-15 times a page is
    loaded, and only on JSP pages. It seems to stop after loading part of the
    page and around 30-60 seconds later the rest gets loaded.
    This is very easy to reproduce just by hitting the home page of our site
    about 10 times.
    I'm going to swap out as many network components at our co-location as
    possible, but I'm wondering if anybody else has experienced a similar
    problem.
    Regards
    Steve Haigh

    It turned out to be a faulty network component!! Strange behaviour though.
    Steve Haigh <[email protected]> wrote in message
    news:3a077a36$[email protected]..
    Solaris 7
    Weblogic V5.1 SP5
    Apache 1.3.12
    Mod_wl_ssl.so
    JDK 1.3
    Hi,
    We have two environments running very similar configurations.
    The first is a test environment with an Ultra5 running as an Apache server
    and an Ultra 10 as the weblogic server. Two databases are currently being
    used one is an SQL and the other Oracle.
    The second is our production site, and is the same apart from thehardware,
    the Apache system is a Netra and the Weblogic server is a 220R. (There are
    some other differences, physical location etc)
    On the test site everything is fine but on the live site we areexperiencing
    a long pause when loading pages. This happens every 10-15 times a page is
    loaded, and only on JSP pages. It seems to stop after loading part of the
    page and around 30-60 seconds later the rest gets loaded.
    This is very easy to reproduce just by hitting the home page of our site
    about 10 times.
    I'm going to swap out as many network components at our co-location as
    possible, but I'm wondering if anybody else has experienced a similar
    problem.
    Regards
    Steve Haigh

  • How to load jsp files in Actionscript 3.0?

    i am new to AS 3.0. can anybody tell me how to load a jsp file in AS 3.0. is it same as xml loading or ?

    I hope you cannot load jsp files into flash, you can just share the values between them.

Maybe you are looking for

  • LiteBrite Effect in PS Elements

    Does anyone know how to get the LiteBrite effect using Elements 9? Thanks.

  • Headless macPro screen resolution

    So of this info maybe useful to some, but I'm hoping others maybe able to improve on it. On this headless system I connect via screen sharing. The problem is the resolution is I think limited to 800 x 600 or similar without any screen plugged in. Now

  • My IPod Keeps freezing at Restart

    I connected my IPod to a computer without internet (the computer read 2007 and i didn't think anything of it) and when it connected to ITunes it was doing its thing automatically and when i stopped it it froze my ipod. I had to restart the ipod but e

  • VAT registration number in combination with country and company code

    Hi, Is there configuration where we can define the VAT registration number with combination of country and company code. thanx in advance

  • Question(s) Regarding Personas Capabilities

    Hello, We are new users of Personas and are trying to figure out all of the tool's capabilities. Below are some questions that our users had when determining whether or not the Personas tool can replace some GUI screens: 1) Is it possible to have fie