Creating a custome page

Hi All,
I am very new to OAFramework development. I an trying to create a custome page which will display "Hello" message. I have done everything as mentioned in Hello World expample of developer guide. I created page and region.
When I tried to run the page.
I got URL as below
http://dgsc-amsingh.drte.com:8988/OA_HTML/runregion.jsp And browser has thrown an error
ERROR
The requested URL could not be retrieved
While trying to retrieve the URL: [no URL]
The following error was encountered:
Read Timeout
The system returned:
[No Error]A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.
Your cache administrator is root
I am looking forward for help.
Thanks in advance
Amit

How did you fix this? I have the same problem. I can ping the machine, but not run the hello world page...
Any suggestions?
Thanks,
Andras Eliassen

Similar Messages

  • How can you create a customized page to change user password?

    Hello to all,
    I would like to create a customized page for a user to change their password. We are using Portal version 3.0.9 on Windows NT/2000. Currently there is a page in portal where a user can change their password.
    I tried linking to that page by copying the shortcut url and adding it as an html portlet. The problem is that we want to direct the users to a
    page of our choosing when they click on the "cancel" and "ok" buttons. I read in the forums that there is a selfreg.cmd script.
    I also read that there is some code that has been available.
    Has anyone implemented a customized user password change page? Do you know of any links that might have steps to follow or
    more informatioin?
    Thanks in advance,
    Lindsay

    Hi,
    I was able to customize the change password screen through a procedure. This is what I did:
    * Created a procedure under the Portal30_sso schema:
    CREATE OR REPLACE procedure reports_chage_password
    site2pstoretoken in varchar2 default null
    ,p_username in varchar2 default null
    ,p_error_code in varchar2 default null
    ,p_submit_url in varchar2 default null
    ,p_done_url in varchar2 default null
    ,p_pwd_is_exp in varchar2 default null
    ,p_password in varchar2 default null
    is
    begin
    htp.htmlopen;
    htp.headopen;
    htp.title ('<TITLE of Page>');
    htp.headclose;
    htp.bodyopen;
    htp.p('<table width="100%"><tr><td colspan=2 align=center><IMG SRC=<directory of image if you want>"><br><hr><br></td></tr>');
    htp.p('<tr><td colspan=2 align=center>');
    htp.p('<font COLOR="#000080" face="Times New Roman" size=+2><b>');
    htp.header(nsize => 1 ,cheader => 'Change Password');
    htp.p('</b></font>');
    htp.p('</td></tr><tr><td align=right>');
    htp.formopen(curl => p_submit_url );
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Username:');
    htp.p('</td><td alight=left><font color="#000080" face="Times New Roman" size=+1>');
    htp.p(p_username);
    htp.p('</font>');
    htp.p('</td></tr>');
    htp.formHidden(cname => 'p_username',cvalue => p_username);
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Old Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_old_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Confirm New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password_confirm',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.p('<tr><td rowsapn=2>');
    htp.formHidden(cname => 'p_done_url',cvalue => '<the url that you want users to go to when they are done>');
    htp.formHidden(cname => 'p_pwd_is_exp',cvalue => p_pwd_is_exp);
    htp.formHidden(cname => 'p_password',cvalue => p_password);
    htp.formHidden(cname => 'site2pstoretoken',cvalue => site2pstoretoken);
    htp.p('</td></tr>');
    htp.p('<tr><td align=right>');
    htp.formSubmit(cname => 'p_action',cvalue => 'OK');
    htp.p('</td><td align=left>');
    htp.formSubmit(cname => 'p_action',cvalue => 'CANCEL');
    htp.p('</td></tr></table>');
    if p_error_code is not null then
    htp.br;
    htp.fontOpen(ccolor=> 'red', csize=> 4);
    if p_error_code = 'auth_fail_err' then
    htp.p('Old password is incorrect');
    elsif p_error_code = 'pwd_rule_err' then
    htp.p('The new password does not follow '||
    'the password policies.');
    htp.br;
    htp.p('Verify with your System Administrator '||
    'about the Password Policies');
    elsif p_error_code = 'confirm_pwd_fail_txt' then
    htp.p('Confirmation for new passord is not '||
    'the same as the New Passowrd');
    elsif p_error_code = 'null_new_pwd_err' then
    htp.p('New password cannot be null');
    elsif p_error_code = 'null_old_pwd_err' then
    htp.p('Old password cannot be null');
    else
    htp.p ('Error: ' || p_error_code );
    end if;
    htp.fontClose;
    end if;
    end;
    * Grant this procedure to PUBLIC
    * Update the portal30_sso.wwsso_ls_configuration_info_$:
    UPDATE portal30_sso.wwsso_ls_configuration_info_$
    SET LOGIN URL = '<YOUR CUSTOM LOGIN URL OR THE WORD UNUSED IF YOU DON'T HAVE ONE> http://<MACHINE_NAME>.<DOMAIN>/pls/portal30_sso/portal30_sso.<NAME OF PROCEDURE>';
    * After you update the table, go to your account information link, and click on the change password link.
    * Then copy the url that you see in your address line
    * And if you want a change password link at the top of your portal page, just go to EDIT on your page, then edit the banner defaults. Then in the links add the Lable and the URL. The URL would be the URL you copied from the previous step.
    Hope this helps.
    I've customized the login page too if you would like some sample code for that. Let me know.
    Martin

  • How do I create a custom page set up

    How do I create a custom page set up

    Seb,
    You can use the dropdown list in the File>Document Setup>Artboard; Custom is at the top (hidden at first view).

  • In CF 9 can I create a custom page URLs, similar to Wordpress?

    I would like to create a function for my clients to create a custom page URL similar tot what Wordpress can can do. So my client's can customize the page URL info for example http:/www.novospa.ca/guinot-skin-care-products/
      Is this doable and how would I do it?

    From your description you need a Content Management System based on Coldfusion. Two popular examples are Mura and FarCry.

  • Creating a custom page size in Access 2014

    In an previous version of Access 2003 I created a report with a custom page size of 5"x4".  Now I am using Access 2013 and I no longer can run that report because of the custom page size.  How do I add the custom page size to the
    new version of Access?

    Hi,
    Your required could be done via VBA coding. We cannot custom page size directly in Access 2013.
    Please see the sample code with following links:
    http://msdn.microsoft.com/en-us/library/ff836635.aspx
    http://msdn.microsoft.com/en-us/library/ff845524.aspx
    Regards,
    George Zhao
    TechNet Community Support

  • Creating a custom page size not working

    Hi,
    I have Pages 3.0.2 and I wanted to create an PDF for an ad that our playgroup wants to submit in a local paper. The ad needs to be 10cm x 6.2cm so I went to the Inspector dialog and the Document tab and then selected Page Setup. In the new dialog I selected Manage Custom Sizes under the Paper Size drop down and then created a new size by clicking on the + icon. This allowed me to specify a Page size of 10cm width and 6.2cm height. I selected user defined printer margins and entered 0.25 for all margins. I set a name for the page size as 100by62Ad.
    All good so far, but now when I select this new custom size in the Page Size drop down I can see the page size and underneath the drop down it says 10 by 6.2cm and click on OK the Document Inspector flashes then shows the A4 sizes again.
    Nothing I do seems to allow me to select the new custom size. I can select the other page sizes such as DL fine and see the new page size in the window, but my new custom size refuses to display. I have tried closing down Pages and coming back in but get the same thing. I then tried downloading another program, in this case one called "Stone Create", and selected the custom page size in that program and it worked fine. I got a small 10cm x 6.2cm document to work with.
    This seems to be a bit of a bug. Has anyone else managed to work with custom page sizes?
    Thanks for any assistance.
    Graham

    Thanks Peggy,
    I tried deleting the preference file and restarting Pages but I still have the same problem with the custom page size. When I start Pages I am presented with a bunch of templates so I choose Blank then I go through my procedure to select the custom page size that I created and always end up back at an A4 document.
    I have used the demo version of Stone Create to do what I needed to do with the small page size (ie. create a small ad) but it is a pain that I paid for Pages and now will need to buy something like Stone Create to do what I need. Although, that said, having used Stone Create for this little ad I must say that for the price it seems like a pretty decent program that will do a whole lot of the desktop publishing type of functions without the rather steep prices of the Adobe products. I kind of wish I had bought this program instead of Pages now.
    Cheers,
    Graham

  • Creating a Custom Page

    Is there a way in apex is there way when you create a page you can add a custom page type.
    David

    David,
    You mean you want to specify the type that is displayed on the application home page? If so, no. We calculate that type based upon a formula of sorts that looks at the types of regions you have on a given page.
    -- Sharon

  • To create a custom page template in webcentre portal

    I am trying to create my own page template in web centre portal .. may i know how can it be achieved ? is it the same way as we do in adf or we have to follow the same thing which we get  pre-built template of webcentre application (myTemplate_globe.jspx)  when we create a webcentre application.
    regards
    Mrudul

    please check http://www.oracle.com/technetwork/middleware/webcenter/portal/learnmore/pagetemplates-1438595.pdf
    WebCenter 11g PS3 Tutorial: Building a WebCenter Template | Yannick Ongena&amp;#039;s WebCenter And Enterprise 2.0 Blog
    Mastering WebCenter Portal Templates &amp;#8211; Part 1 | Peter Moskovits&amp;#039; Oracle WebCenter Blog: 2008-2011

  • How to create a Customized Page format?

    Hi Experts,
    Page size is ht- 278mm, width - 242 mm.
    Printer - EPSON LQ-680 (Dot Matrix Printer)
    Paper - Preprinted Stationary ( For Invoice Printing)
    As per the comments I have followed the below steps for my page format.
    From SPAD Transaction,
    1. Created Page format -
    Page Format ZINV_JGT
    Orientation as - Portrait
    Width 242 Unit MM
    Height 278 Unit MM
    2. Created Format type
    Format Type ZINV_JGT
    Type Format type for sap script
    Page Format ZINV_JGT Orientation - Portrait
    Comment Page format for JGT Invoice
    3. Created Device type
    Version 1
    Device type ZINV_JGT Name Device driver Invoice print
    Driver SAPlpd/SAPWIN driver 3.0
    Printer Driver Do not printer driver for ABAP list Print
    Character Set 1135 Printer EPLQ550 ASCII multilingual
    4. When to format for device
    Then created a format zinv_jgt
    I get the below options in this tab. What code i need to write here.
    Printer initialization
    Reset after exit
    Cover page
    First Page
    Start of even page
    Start of odd page
    Start of page
    End of first page
    End of even page
    End of odd page
    End of page
    Start of line on an even page
    Start of line on an odd page
    Start of line
    End of line on an even page
    End of line on odd page
    End of line
    Please check whether the above steps and the data filled is correct for my type of page format.
    Please help me on this.
    Thanks and Regards,
    Abdur Rafique

    Hi Alexander,
    I was not able to add the code in the Printer initialization and the other following steps.
    Printer initialization
    Reset after exit
    Cover page
    First Page
    Start of even page
    Start of odd page
    Start of page
    End of first page
    End of even page
    End of odd page
    End of page
    Start of line on an even page
    Start of line on an odd page
    Start of line
    End of line on an even page
    End of line on odd page
    End of line
    Please tell me what data i need to add? I think the above steps are used to define the format of the page.
    Please help me on this?
    If i give a print command without the code in the format type. I'm getting the following error.
         Device type SAPWIN does not support page format
         ZINV_JGT.
    Regards,
    Abdur Rafique

  • Can no longer create custom page size for printing to PDF?

    When printing from FrameMaker to PDF in Windows, I used to be able to create a custom page size by clicking on the Add button that appeared to the right of the Adobe PDF Page Size window, in the Adobe PDF Document Properties dialog box. With Frame 9, that button no longer appears; in fact, the whole dialog box is cut off just inside the edge of the entry windows. Do I need to set something? Thanks for any help you can offer. - Cindy Shaler

    Cindy,
    I am not sure to what dialog boxes you are referring.
    In the PDF Setup dialog box (in FrameMaker's Print dialog or Save as PDF dialog), the Settings tab displays two fields to change the width and height of the paper. I tried entering odd values, and the resulting PDF had the entered size. I see no Add button nor is the dialog box cut off.
    Maybe I am not looking at the correct boxes.
    Van

  • Page size printing problems with custom page size I created

    I have created a custom page size (very small) for printing an advertise I had to print, and now after that operation all the pages I ask to print to any printer are automatically printed in that setup, and sometimes even if I change to A4 manually, the page changes but the borders of the page still remain the old one (result i can not print). How can I cancel the custom page size I created, so that my printers restart to print automatically in A4?
    thank you very much

    I have created a custom page size (very small) for printing an advertise I had to print, and now after that operation all the pages I ask to print to any printer are automatically printed in that setup, and sometimes even if I change to A4 manually, the page changes but the borders of the page still remain the old one (result i can not print). How can I cancel the custom page size I created, so that my printers restart to print automatically in A4?
    thank you very much

  • Making a created custom page visible to all users in Business Process Workspace

    Hi everyone
    I, as the admin of Business Process Workspace, have created a custom page to show an external URL.
    How can I make this page visible to all of our ordinary users?

    Hi Ashwini
    Thanks for replying.
    I did the same and it was working for me even if the Type is Single.
    I just gave the Group name and all users were able to see the task. This is fine with me.
    I just observed one more thing.
    When the task is created, all the users in the Group are able to see it in 'Me & My Group'.
    But the data entered by the creator is not seen by other users.
    There is an action 'Save' in the Task. If the creator clicked on it, then the task is automatically 'Acquired' by the creator.
    Other users in the group are able to see the task and the saved data, but are not able to Submit.
    What I expected the Save button to do is only to Save the data in the Payload. Not Claim it.
    Is there a way to make the payload data only to save but not to claim the task?
    Thanks and Regards
    Sameer

  • Create custom page on CC&B

    Hi All,
    I want to find documentation/sample about how to create a custom page in CC&B (step by step)
    do you have any documentation or link?
    Thanks a lot
    Regards,
    Hadi Wijaya

    Go to Framework Administration > User Interface Tools. This should get you started with creating new zones/portals etc.

  • Creating custom page

    Hi All
    I want to create a custom page format  of width 220MM and Length 297MM. Kindly advice the transaction code through which we can create the custome page format.
    Thanks
    Ravindra Suvarna

    If you do not see the "Create" button, then you do not have autorization to do that action.  Have your Basis people create it for you or get authorization.
    Please remember to award points for helpful answers and mark your post as solved when solved completly. THanks.
    Regards,
    Rich Heilman

  • Custom page layouts are not getting displayed in ribbon

    Hi,
    I have created a custom page layout under welcome category. This is getting displayed in pages library while creating a page and also in page layout option from site settings which is fine. But when a page is in edit mode if we click page->page layouts
    from ribbon, all the default page layouts are getting displayed except my custom page layout.
    Please advise.
    Regards,
    Chaitanya.

    you have a subsite in a site collection •the publishing feature is activated in the subsite, but not in the site collection •you want to edit/add page layouts on the site collection level, to be used within your subsite •when you open the site collection
    in SharePoint Designer, you can't see Page Layouts in the Site Objects panel You now have 2 options: you can either activate the publishing feature in the site collection (and the Page Layouts link comes back), or you can use the All Files link and browse
    to the master pages and page layouts library (_catalogs > masterpage.) Either option will do, unless you really don't want the publishing feature in the site collection.
    To fix the issue go to Site Actions -> Site Settings in the upper left corner.
    Under "Site Collection Administration" click on "Site Collection Features".
    Look for "SharePoint Server Publishing Infrastructure" and activate it. It might take a moment to load.
    Next return to "Site Settings" and click on "Manage Site Features"
    Look for "SharePoint Server Publishing" and activate it. It might take a moment to load.
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for