Call a web page.

How can I call a web page from my applet?
Thanks.

1. You can't "call a web page" anywhere - it's not code. You can load a web page and display it in a browser, but you can't even do this in an applet normally, unless it's signed or you develop some javascript hooks that it can connect to.

Similar Messages

  • Webdynpro call another web page

    Hi experts,
    can my webdynpro call another web page? I need that the webdynpro call a pop-up to another web page and when this page is closed a variable returns to webdynpro to process.
    Is this possible?
    Thanks in advance,
    David

    Hi,
    I've found a popup tutorial to webpage and work's fine ... only the first side of my aplicaton.
    I can open a separate web page using:
    wdComponentAPI.getWindowManager().createExternalWindow("http://www.google.de","Google - Search for an email address",true).open();
    in this class, the "createExternalWindow" method have a boolean parameter to indicate if the window is modal or not ....
    I asign this page on a modal=true but I cannot receive from my webdynpro possible events or variables.
    sniffff.
    David

  • Session problem with a form that calls psp web page.

    Hi,
    My unique form is based on table A.
    Within the form I call a stored procedure, which insert data from A into tables B,C,D
    And then within the same form I call a psp procedure using web.show_document('http://server:8080/plsql/psp_procedure?pvId=1001);
    The plsql web page displays data from tables B,C,D for each single pvId.
    The problem is:
    If any commit is issued the psp web page contains no data from B,C,D.
    I suppose I'm working with two different sessions, can I work within the same one?
    Thanks

    Hi,
    I'd say the main problem is that you have both rows with the same name 'Rangée1'. This is not a good idea, especially as the first row is the repeatable row.
    When objects have the same name, you can see the instances in the hierarchy, eg 'Rangée1[0]' and 'Rangée1[1]'. The instances use a zreo-based numbering system.
    By the way you can also see it in the Object > Binding tab:
    So that is when you have multiple objects with the same name.
    The problem with your form is that when objects are repeated (add new instance button), then these new objects also have instances, eg 'Rangée1[0]', 'Rangée1[1]', 'Rangée1[2]', etc.
    So the Acrobat gets confused ;-)
    I have renamed the second row 'Rangée2'. That seems to have solved the problem.
    Here is the form back to you: https://acrobat.com/#d=jcCs7X85xeRYQjvI2Yb*Cw
    Good luck,
    Niall

  • How keep track of caller from web page or app in your EJB

    I want to make a Security Handler for my EJB Server. I want apps / users to be able to log in. However, after they log in (for example from a web page), how do I keep track of who they are when they then make subsequent calls to EJBs?
    Where can I find out who they are?
    How do I standardize this for apps and web page callers?
    I know that for web servers to keep track of who the caller is for them, they need to store a handle on the client. Do I need to do this too?
    If I do keep smth on the client side that they send back/forth to me, does that not fit with the EJB standards?

    still unable to find answer. Hey, can I also ask: do I ask too obscure questions? I don't get most of them answered. Are they boring?

  • How to detect end of FLV Video - and then call another web page?

    I'm using Flash CS3 v9 on a PC to...
    - use File > Import an AVI video and convert it to an FLV video.
    - use File > publish to publish it.
    - Then upload the four files...
    .. MyVideo.flv
    .. MyPage.html,
    .. MyPage swf
    .. AC_RunActiveContent.js
    to my website.
    Works Great!
    My Question:
    Since Javascript seems to run the .swf file which pays the .flv video... (or some such)
    Can I use Javascript (or html) to tell when the FLV Video has finished playing...
    And then automatically call another webpage...
    If so would someone be kind enough to share a code sample with me to get me quick started.
    Thanks for any help.

    I'm using the defaults in Flash CS3 ver9.
    I'm not creating any action script myself.
    I open Flash and select from the Flash menuio options...
    "Create New Flash File (Action Script 3.0)"
    I then File | Import my AVI video to convert it to an FLV video...
    and choose the player options for controls, etc
    and then punch through the menu's until Flash finally imports the video.
    I then "Publish" the project to the the 4 files mentioned in my initial posting.
    So, I think the answer to your question is...
    Yes, I'm using the default Flash playback component to play the flv
    and yes, I'm letting Flash default to CS3 even though I'm not writing the code... Flash is.
    Thanks for the help.

  • How can i call Web page  from my Forms 6 and Some other doubts.

    Dear friends,
    I am having the following questions and doubts ..If you can share some information with me it will be greatly useful to me..
    Q1. I am using Dev Forms 6i. Can we call a Web Page form from the Developer Form directly with the press of a button..(eg. When button Pressed trigger..? )If so, what the requirement to do so. My database is Oracle 8i
    Q2. How can we send email from a Form picking the address from our Oracle Database..? I have installed only Oracle 8i and Forms & Reports 6i. Anymore has to be installed for this work?
    Q3. Do you know any GIS package that can be integrated with Oracle so that we can know the Latitude and Longtude of a lcation if we give an address..? and what can be done for this purpose.
    please revert with the info...
    Sincerly
    Sajith
    12100 Beech Forest Road,
    Laurel, MD 20708, USA
    Phone : (301) 497-5816
    Cell : (301) 693-6767
    Email : [email protected]

    Here is code I used to send an email from Form 6.0 through Outlook 2000 on a PC. I don't know the answer to you rother questions.
    PROCEDURE maily (p_to_address VARCHAR2, p_cc_address VARCHAR2 DEFAULT NULL, p_subject VARCHAR2, p_message VARCHAR2) IS
         objOutlook OLE2.OBJ_TYPE;
         objMail OLE2.OBJ_TYPE;
         objArg OLE2.LIST_TYPE;
    BEGIN          
         objOutlook := OLE2.CREATE_OBJ('Outlook.Application');
         objarg := OLE2.CREATE_ARGLIST;
         OLE2.ADD_ARG(objarg,0);
         objMail := OLE2.INVOKE_OBJ(objOutlook,'CreateItem',objarg);
         OLE2.DESTROY_ARGLIST(objarg);
         OLE2.SET_PROPERTY(objmail,'To',p_to_address);
         OLE2.SET_PROPERTY(objmail,'Cc',p_cc_address);
         OLE2.SET_PROPERTY(objmail,'Subject',p_subject);
         OLE2.SET_PROPERTY(objmail,'Body',p_message);
         OLE2.INVOKE(objmail,'Send');//Use display to display the email instead of sending it, or save to save in the outbox
         OLE2.RELEASE_OBJ(objmail);
         OLE2.RELEASE_OBJ(objOutlook);
    END;

  • How to call web page to search document with parameters?

    Hi!
    i need to call a web page with access parameters to search a document and display this in .pdf format (external system).
    Example:
    PARAMETERS:
    license code = xxx
    society code = yyy
    nickname = ...
    password = ...
    fieldsearch = ....
    valuefieldsearch = ...
    with these parameters, i must access in a web page https://....
    and open .pdf file.
    how to do? Can i do from SAP R/3?
    Do you suggest any idea?
    Thanks & Regards
    Raffaella

    Hi
    Raffaella
    you have to use Class cl_http_client to execute HTTP REQUEST (in your case using GET method)
    Check this link
    http://help.sap.com/saphelp_nw70ehp2/helpdata/EN/1f/93163f9959a808e10000000a114084/content.htm
    You can also use the abap report RSICFCLTST01 for testing Abap http requests

  • Calling WebHelp From Web Page

    Greetings,
    First off, yes I did check the forums and went to pages
    authored and linked by Daigle [1], Grainge [2] and others. Those
    are great pages, yet for me a problem remains.
    When help is called:
    (1) A *small* window opens in the bottom right-hand corner of
    the screen.
    (2) The window seems to ignore the context-sensitive call. No
    matter which numeric value I specify for the call, the web page
    always opens to first page of the project.
    (3) This behavior is also observed when using John Daigle's
    sample:
    http://download.macromedia.com/pub/developer/context_help_pt2.zip
    ~~~ Gory Detail ~~~
    I have this lin in the HEAD section of the page.
    <script type="text/javascript" language=JavaScript1.2
    src="RoboHelp_CSH.js"></script>
    <p>Click for <a href='javascript:RH_ShowHelp(0,
    "./path/FileName_csh.htm>webhelp", HH_HELP_CONTEXT, 10)'>Help
    10</a></p>
    I am using FireFox on Xp.
    Any advice you could provide on this subject would be
    helpful. Thank You!
    [1]
    http://www.adobe.com/devnet/robohelp/articles/context_help.html#
    [2]
    http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm
    http://www.grainge.org/pages/authoring/calling_webhelp/using_map_ids_merged.htm

    I set something up for someone else so click this link and
    see it work.
    http://www.grainge.org/test/cshcall/startpage.htm#csh.htm
    For help on your local drive, the call would then be
    something like
    file:///C:/rh7_test/!SSL!/WebHelp/startpage.htm#csh.htm
    With this method you are not using the RoboHelp_CSH.js file.
    Is that something you have added to the source or to the output.
    Create a simple project that has a default topic and a topic
    that you want to call when opening the help, call that Context
    topic as I have in the example. When you generate the help locally,
    change the start page name in the wizard to startpage.htm. That way
    you have startpage.htm, default.htm and csh.htm. Makes it simple to
    see what is going on.

  • How to send Parameters FORM to PHP WEB Page with method POST (secure)?

    Hello everyone,
    i hope someone can help me to find a solution to this problem!
    i have to send "+precious+" parameters from an oracle form to php page, like username and password, with a secure method... i tried with WEB.SHOW_DOCUMENT procedure but it uses GET Method and when the web page open up you can read those parameters in the url...no good!
    some suggestion?
    Thank a lot in advance... FMicio

    The other way you have is to make a PJC java bean ...
    which uses HTTPClient library..
    for example:
    PostMethod post = new PostMethod("http://jakarata.apache.org/");
            NameValuePair[] data = {
              new NameValuePair("user", "joe"),
              new NameValuePair("password", "bloggs")
            post.setRequestBody(data);
            // execute method and handle any error responses.
            InputStream in = post.getResponseBodyAsStream();
            // handle response.I have done a multipart form data post to upload files to my db over httpClient.. and other things...
    Or with java.net.* api-s
    try {
        // Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
        // Send data
        URL url = new URL("http://hostname:80/cgi");
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(data);
        wr.flush();
        // Get the response
        BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        wr.close();
        rd.close();
    } catch (Exception e) {
    }Or you can call your web page (post data) from your database
    http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
    Edited by: Peterv6i on Mar 30, 2012 3:49 PM
    Edited by: Peterv6i on Mar 30, 2012 3:55 PM

  • Opening a secure web page from oracle forms for credit card validation

    Hi All,
    I searched for the topic in the forms forum but couldn't find a solution.
    Requirement: As per some compliance, our application cannot do a credit card validation from our forms application, instead we need to use a java code which a third party will provide ,it's an iframe (they say, i am layman when it comes to Java, don't know what is it), but they say that, within your forms application you call our iframe do the credit card validation over there get a token of response back from us and use this token as a confirmation in your application.
    Problem: I could not find a solution anywhere wherein i can call a web page from forms. Now, this web page should be modal, i.e. unless i close this page i cannot access my forms application. Please guide me if anyone has done that.
    Secondly if i could make it work, how will i communicate with this external web page, like getting back some token value and use it back in my forms application. I am completely clueless.
    As we are using Oracle designer for generating forms, we cannot use a bean type thing as designer does not have the bean-item type defined!
    Appreciate if anyone could provide me pointers for a solution to this problem statement.
    We are on forms 9i -- Version 9.0.2.11.0
    Edited by: the_wing_rider on Jul 8, 2011 5:10 AM

    The simple way to do it is to use a PJC (java bean) + apache httpclient library..
    If you have a webservice than you can use Axis library and wsdl2java to create java classes from wsdl.
    also you can use httpclient library to simulate http protocol (request/response actions)..
    (for example.. you have a credit card number.. you post this number to specified URL and then you parse the response from credit card validation server)..
    Post here some documentation (specification) on how to call the credit card validation .. (maybe it's a secure webservice?)
    Here you have a httpclient library documentation:
    http://hc.apache.org/httpcomponents-client-ga/tutorial/html/index.html
    Also you can implement bean area in designer.. If you need help I can post here how we do it in our project..
    also look here: Call webservice from PJC over https protocol
    regards
    Peter
    Edited by: Peterv6i on Jul 8, 2011 3:35 PM

  • Why can't I successfully upload web pages using FTP?

    I recently installed Adobe Dreamweaver and successfully connected to a remote server where the files on my existing website are stored. I was then able to call up web pages from my local site, make revisions and successfully upload them (using FTP) to the remote server.
    Problem started occurring when I received a Dreamweaver prompt advising me to change the name of my website's root folder from Unnamed Web Folder 1 to the actual location of the files on my i-Mac hard drive. In doing so, I moved the path of the site and changed the name of the root fokder.
    Since then, when I make revisions on a locally stored web page and try to upload it to my remote server (by clicking on the "put" upward arrow), the operation seems to be excuted correctly. But when I test the revised page on a separate browser (like Safari or MI Explorer), the un-revised web page is displayed.
    In trying to remedy the situation. I fear that I've been digging a deeper and deeper hole and may have screwed things up even further.
    Help!

    I'm really confused.  So let's back up about 4 steps.
    Local site files should be on your hard drive.  The same computer hard drive that Dreamweaver is installed on.  For sake of argument, let's put your site files into a folder called YourSiteName on your C: drive.  Do not use any spaces or special characters in your folder or filenames.
    LocalSite = C:\YourSiteName
    Then tell DW where to find that folder as in the screenshot I posted earlier.
    Next, define your remote server settings and tell DW which root directory your hosting company told you to use for your site files.  Some hosts use public_html or htdocs or www.  And some hosts don't use one at all in which case you leave that field blank.
    See screenshots.
    Next hit More Options.
    Hit the test button to confirm you can connect to the remote server.
    Nancy O.

  • How do you embed ePub3 in a web page using 'embed code'?

    I have an epub3 that i desperately need to embed onto my web page.
    I am using Weebly who allow for embed code on the web page, and also have a code editor where you can upload files.
    Is it easy enough to somehow upload the mp3's that are in my epub, and then explode the epub and simply copy and paste this html code into the embed code function from weebly?
    This is what I have found so far, but I am no code expert!
    http://stackoverflow.com/questions/7419205/how-do-you-embed-an-epub-in-a-web-page

    That is an interesting question. Since epub3 is based on everything that a web page is made of and is often called a web page in a box, I doubt that current browsers can show the document. Browsers are only now catching up with showing an SVG image. I suppose that, if an epub3 reader is available on the client, it should theoretically be possible. Think of a Word or a PDF document.
    IMHO, the best way out is to convert the book into a PDF format.

  • Invoking web page in IFrame

    Hi,
    I'm using IFrames for my module which is supposed to be the part of a big project. I'm using IFrames to call a web page. This works fine when its executed on a local server but when my module becomes part of a project as a swf file, the web page doesnt get loaded.
    I believe it works based on the browser session created when the flex application is loaded.
    Can you help me out on this as to how the appropriate web page can be generated when my module is part of the project as a swf file using iframes? or is there a work around for it?
    Thank you
    Nikhil

    No no i'm not invoking a flex from a jsp.
    Its infact the other way round. I have an iframe and when i click on it, i am supposed to get a jsp page inside a canvas. The problem with that is that its working fine when its stand alone. With my system. But when I deploy my swf into a project, I am not able to see the page.
    What i am working on is like a link button in another flex application so I have to deploy it in the form of a swf into the main project.

  • XML web pages

    Dear All,
    How come the URL (http://www.sun.com/training/index.xml) contains the page extention as xml instead of html, jsp, php ... etc? and the web browser open the xml page like other normal web pages.
    However, when i try to open any xml page in web browser it opens it as xml tags instead of any web page.
    Thanks,
    Ashish

    Suppose if i am calling a web page like this www.blabla.c#
    whether it is possible to done this in web.xml
    e.g.,
    </servlet-mapping>
         <servlet-mapping>
            <servlet-name>PdfServlet4</servlet-name>
            <url-pattern>www.blabla.c#</url-pattern>
        </servlet-mapping>
    Reply

  • How do I call Reports 2.5 from a web page?

    Dear all,
    I want to make a hiperlink on a web page that calls a (run) report (2.5).
    Can someone please help me how to define the call?
    Best regards,
    Ronald.

    Hi Ronald,
    You have to use Reports CGI (it is r25cgi32.exe in Reports 2.5), as you are calling from web.
    For Example,
    To generate the HTML output to cache, your hyperlink should be,
    http://myhost.com:portno/cgi-bin/r25cgi32?server=repserver1+report=test.rdf+userid=scott/tiger@mydb+destype=cache+desformat=html
    You should have the Web server <-> Reports CGI Setup. A Report server (repserver1, in this example) should be running to accept the jobs from CGI.
    Thanks,
    -Siva B

Maybe you are looking for