OWB page problem

I am new to OWB and I am getting errors from the links off of
http://www.oracle.com/technology/products/warehouse/htdocs/OTN_demo.html
"An error occurred while processing the request. Try refreshing your browser. If the problem persists contact the site administrator"
Best regards,
KarenLDimacale

Don't you have to enable session cookies in order to IE to work?
I don't know, this is just a guess.
--oswaldo.
[osantos]

Similar Messages

  • Insert and then show the result and refresh page problem

    hi all,
    I collect the form value and put them into db, and then display this student 's inform out from db including the one we just submit, first I do it on this way
      insertpayment(UserId, FeeType, DuteDate, OfficerReason, OtherReason, CompleteDate,
                            InterviewDate, ApprovalDate,PaymentYear);
                   studentRecords= getFound(UserId);
                     userSession.setAttribute("studentRecords", studentRecords);
                     RequestDispatcher disp;
                   // disp = getServletContext().getRequestDispatcher("/WEB-INF/jsp/   studentRecords= getFound(UserId);");
                     disp = getServletContext().getRequestDispatcher("/showPayment");
                    disp.forward(req, res); then whenever I refresh my showRecords.jsp" I call the insert function. THAT IS HORRIABLE.
    I try to move the studentRecords= getFound(UserId); to my showPayment servlet and then forward the result to showRecords.jsp, but I alwarys get error
    PWC4011: Unable to set request character encoding to UTF-8 from context /report, because request parameters have already been read, or ServletRequest.getReader() has already been called
    How should I handle this kind of problem??

    Karan, thank you for the link, i read a few articles, I only get the sample part part use res.sendRedirect("/myfolder/showPayment"); in my insert servlet and use forward to display the page
    userSession.setAttribute("studentRecords", studentRecords);
                  RequestDispatcher disp;
                  disp = getServletContext().getRequestDispatcher("/WEB-INF/jsp/secure/admin/showRecords.jsp");
                   disp.forward(req, res);   
    this solute the refresh page problem, but bring the new problem I can't use the following way to disable the back button. not the perter solution
    maybe I did not understand PRC more advice!!
    response.setHeader("Cache-Control","no-cache"); //Forces caches to obtain a new copy of the page from the origin server
    response.setHeader("Cache-Control","no-store"); //Directs caches not to store the page under any circumstance
    response.setDateHeader("Expires", 0); //Causes the proxy cache to see the page as "stale"
    response.setHeader("Pragma","no-cache"); //HTTP 1.0 backward compatibility

  • I have 10 UiWebView to load different charts and maps on an iPad,using UIScrollView to scroll through each page, problem is on loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally,so how to make the scroll smooth?

    I have 8-10 UiWebView's  to load different charts and maps on an iPad, i am using UIScrollView to scroll through each page, problem is while loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally, my query is can i load UiWebView on background and how to make sure the scoll of pages is smooth, even though the loading of UiWebViews may take time.
    Note :i have tried disabled scrolling on webview, so when i scroll on the page  the scroll event will be of UiScrollView, so believe no conflict with UiWebView.
    also in ios 6 i read about suppressesIncrementalRendering = True but i want to support ios5, also as UiWebViews are said to be running on main thread by default, i suspect when loading of webViews and when user tries to scroll the page, the main thread is busy, but i want the scroll of the page to be smooth  even though the loading of UiWebViews may take time.

    You will probably get a faster and more accurate answer if
    you repost in the Developers Forum.

  • My solution for cannot turn page problem in ADE

    It seems this problem has been there for a while. I have this problem in ADE 2.0 and 3.0. I solve this problem on my computer today.
    This problem is not a "turnning page" problem but an UI refresh problem, if you turn page, close ADE and reopen it, you will find the page actually turnned,  I guess this problem occurs on a computer which have two display card. On my laptop, a NVIDIA, and an integrated. ADE works fine on NVIDIA and not on the integrated one.
    So Here is my solution: Tell ADE not running on the integrated display card but on NVIDIA. You can do so by using NVIDIA's control panel program. "manage 3D settings" -> "program setting" tab, add ADE, and tell it running on NVIDIA.

    System: Windows 7; graphics (onboard Motherboard) Intel(R) HD Graphics 4600 Properties.
    I have the same problem:
    ADE does not turn page *unless* I resize the ADE window after turning the page.  After resizing the ADE window, the page will turn.
    I don't have multiple displays.  I don't know how to adjust my display setting to facilitate ADE.  Still looking for a solution... If you find a solution or a better product, let us know.

  • OWB BROWSER PROBLEM

    I am new with owb and have a problem with that Warehouse Builder Browser.
    At the first I start the OWB Browser Listener. That's ok.
    Afterwards I start the Repository Browser. That's ok.
    After short time a Browser window open with the login PAGE at the Control Center.
    After input of the necessary data I come on the report PAGE.
    Now the problem: after I click Design Repository: Navigator
    I come back again on the login PAGE. With the others links the same happens (such as Object Summary Report)
    What is the problem??
    I use Oracle 10gR2 and Warehouse Builder 10gR2
    Please help me.
    Thank you for answers

    Don't you have to enable session cookies in order to IE to work?
    I don't know, this is just a guess.
    --oswaldo.
    [osantos]

  • Redirect jsp page problem

              I have problem when I want to redirect a page, inputparam2test.jsp back to the perious
              page, inputparam1test.jsp. Everything works until I
              add a "if" statement in the inputparam1test.jsp.
              The error is "Error 500--Internal Server Error".
              Can anybody help me out? Thanks a lot!
              inputparam1test.jsp:
              <html>
              <head>
              <title>create a patameter input form</title>
              </head>
              <body>
              <%!
              String dataset;
              String modeltype;
              %>
              <%
              dataset = request.getParameter("dataset");
              modeltype = request.getParameter("modeltype");
              %>     
              <center>
              <form action="inputparam2test.jsp" method="post">
              <table cellspacing=10>
              <tr>
              <td colspan=2>
                        Please enter model parameters
                   </td>
                   </tr>     
              <tr>
                   <td>
                        Dell LRI
                   </td>
                   <td>     
                        <select name="DellLRI">
                        <option value="1">1
                        <option value="0">0
                        </select>
                   </td>
                   </tr>
                   <%
                   if(modeltype.equals("Direct")) {
              out.println("in if");
              %>
                   <tr>
                   <td>
                   </td>
                   <td>     
                        <input type="submit" value="Next>" name="Next>">
                   </td>
                   </tr>
              </form>
              </center>
              </body>
              </html>
              inputparam2test.jsp:
              <html>
              <head>
              <title>continue input parameters </title>
              </head>
              <body>
              <%
              response.sendRedirect("inputparam1test.jsp");
              %>
              </body>
              </html>
              

    You do not check if the modelType is null and
              if(modeltype.equals("Direct")) {
              out.println("in if");
              will result in a NullPointerException when it is null.
              Almond Huang <[email protected]> wrote:
              > I have problem when I want to redirect a page, inputparam2test.jsp back to the perious
              > page, inputparam1test.jsp. Everything works until I
              > add a "if" statement in the inputparam1test.jsp.
              > The error is "Error 500--Internal Server Error".
              > Can anybody help me out? Thanks a lot!
              > inputparam1test.jsp:
              > <html>
              > <head>
              > <title>create a patameter input form</title>
              > </head>
              > <body>
              > <%!
              > String dataset;
              > String modeltype;
              > %>
              > <%
              > dataset = request.getParameter("dataset");
              > modeltype = request.getParameter("modeltype");
              > %>     
              > <center>
              > <form action="inputparam2test.jsp" method="post">
              > <table cellspacing=10>
              > <tr>
              > <td colspan=2>
              >           Please enter model parameters
              >      </td>
              >      </tr>     
              > <tr>
              >      <td>
              >           Dell LRI
              >      </td>
              >      <td>     
              >           <select name="DellLRI">
              >           <option value="1">1
              >           <option value="0">0
              >           </select>
              >      </td>
              >      </tr>
              >      <%
              >      if(modeltype.equals("Direct")) {
              > out.println("in if");
              >      }
              > %>
              >      <tr>
              >      <td>
              >      </td>
              >      <td>     
              >           <input type="submit" value="Next>" name="Next>">
              >      </td>
              >      </tr>
              > </form>
              > </center>
              > </body>
              > </html>
              > inputparam2test.jsp:
              > <html>
              > <head>
              > <title>continue input parameters </title>
              > </head>
              > <body>
              > <%
              > response.sendRedirect("inputparam1test.jsp");
              > %>
              > </body>
              > </html>
              Dimitri
              

  • New audio track in arrange page problem

    In the LSA I have 64 audio tracks and 32 audio instruments set up. When I open Logic, my autoload contains 16 audio tracks and my environment is configured as I set it up in the LSA. Everything is as it should be. However, when I select track 16 in the arrange page and use the key command control>shift>return to add another track, audio16 is duplicated. When I use the menu to 'create with next instrument' audio17 is created, but in my environment, my 64 audio tracks are reduced to 24. Using the menu to add audio tracks only lets me add to 24.
    I've trashed my preferences but that did nothing.
    One thing that may be relevant is that after setting up the LSA as described above, I copied an old autoload from my powerbook that only contained 24 audio tracks. After realizing that I need more tracks I trashed that autoload and re-ran the LSA. (on a side note - your autoload will trump your LSA set-up if they differ). I think that the old autoload is still causing a problem even though I trashed it.
    Any help in the frustrating situation is most appreciated!

    It is normal that Logic uses the same audio object
    when you create a track with control-shift-return,
    that's the way it's supposed to be. If you want to
    create a new track and a new audio object assigned to
    it, "create with next instrument" is the way to do
    it. You could also use "create multiple..."
    in the drop down menu it says that the key command for 'create with next instrument' is control>shift>return.
    If you're limited to 24 tracks, I'd check in your
    audio preferences. Your maximum tracks limit is
    probably set to 24 tracks.
    my audio preferences are set to 64 tracks of audio.
    thanks for the reply!

  • IIS, Javascript, Signed Applet and ASP Blank Page Problem

    Hi,
    I'm having a problem using a Signed Applet in a site that runs in a IIS (Windows Server 2003).
    My aspx web page uses the applet to read my smart card and get information from it.
    This applet uses an auxiliar dll (stored in a second Signed Jar file) in order to read the information from my smart card.
    The way the solution is design:
    1) Aspx page is asked from server
    2) Internet Explorer recieve the page and asks the server for it content (images, applet, javascripts, etc)
    3) After this the JVM runs (console opens)
    4) After the Aspx page render fully a javascript register onload fires and call an applet method
    5) Applet receive the call and run the logic of the method:
         - reads the smart card;
         - calls Javascript function in order to fill aspx fields with information from smart card
         - calls Javascript function the simulates a click in a botton of aspx page (in order to call server side part sending data readed from smart card to server)
    5) The server makes some logic with the information receive and responds to client registering in aspx page a call to another Javascrit function
    6) The client received the asnwer from server and runs the Javascript function registered on step 5)
         This Javascript calls another method from applet and runs the following logic:
         - reads more information from smart card;
         - call javascript function in order to fill more fields of aspx page with the information readed
         - calls Javascript function the simulates a click in a botton of aspx page (in order to call server side part sending data readed from smart card to server)
    7) The server makes some logic and call another pages with no Applets
    8) Client asks for a second page with the same applet and we start with another logic express on steps 1);2);3),4);5) and then 7).
    This is all ok, until sometimes the server stop responding correcly for requests regarding this two pages with the Applet.
    When this happens the server just responds with a blank page.
         - with fiddler I can seer the request for the aspx page (that uses the applet)
         - but server responds with a blank html page
    The JVM doesn't fire.
    The IIS log don't show errors.
    The eventviewer doesn't show errors.
    The problem is solved with an IIS reset or a Application Pool reset.
    After a while the problem returns.
    This problem occours for other user in another machine, the server just stops responding correcly to request regarding pages with applets, the other pages still continue to work.
    If we disable Java Control Panel->Advanced->Java Plug-in->Enable the next-generation Java Plug-in the problem seend to stop, but we can't force all clients to disable this option right?
    Or there is a way to force the Applet to run with this option disabled?
    As anyone experience similar problem?
    Regards,
    OF

    This is all ok, until sometimes the server stop responding correcly for requests regarding this two pages with the Applet.
    When this happens the server just responds with a blank page.
    - with fiddler I can seer the request for the aspx page (that uses the applet)
    - but server responds with a blank html pageWell, if http requests look identical in case of success and failure (pay attention to cookies, etc) then it has to be something on the server side.
    It could be that server gets into this wrong state because of previous requests made by applet but it is hard to tell.
    I am not clear how old/new plugin can make a difference unless your applets run in the legacy mode (i.e. you are actually trying to reuse SAME instance of the applet when
    it is loaded next time).
    I'd start with
    1) carefully comparing good/bad sessions
    2) checking whether server will serve correct response to another client when it serves "bad" page for current client
    3) add debug statements to aspx - it is scripted page, may be some condition is not met and then it returns blank?
    4) record all http requests in one session until you get to "error" state and then use any http server testing tool to "replay" this set of requests.
    You should be able to get server into the same state without use of applet. Then you can try to tweak set of requests to see what makes a difference.

  • Importing .gif file into Pages - problem with transparency

    Hi Apple Forum,
    First-timer (on the forum) here. I tried importing a .gif image (with alpha channel) into a pages document. The image was imported, but it's not transparent. In other words, the alpha channel isn't working. The problem is NOT with the opacity button, in case some one wants to suggest that as a solution. Has anyone had this issue before?

    Hi Scrambled_Eggs
    Welcome to the forum.
    Resave them as .png from Preview app.
    Peter

  • Open hyperlink in new page problem

    I have clicked the 'Open Page In New Window' box in iWeb for every external hpyerlink I'm using, but, when I go to my web site it doesn't do that. It opens the hyperlink on top of my web site, instead of opening a new tab. And iWeb Help didn't give me the answer. Help!! Any good ideas out there. If so, please e-mail me at [email protected], because I hardly ever come to these forums. Thank you, thank you, thank you.

    One good idea:
    provide your link if possible. That would make it easier to answer your question/solve your problem.
    Cyclo likes to look at the html source codes of pages to see where it's going wrong (thanks Cyclo!)
    Regards,
    Cédric

  • Hyperlink and child page problems

    I have had no success in solving my muse problems.  I will restate the problem with more detail in the hope that some knows what I am doing wrong and can recommend solutions.
    The Hyperlink panel element is missing so that I cannot establish a hyperlink. This situation exists with two website I am working on, so I assume that it is a Muse setting which has to be set or re-set, in order to have the hyperlink option available.  I can turn the panel off/on by going to windows>control, but tuning the control back on, it still appears without the hyperlink.
    2. 
    In the plan mode, I created a page with two child pages attached.  The plan view shows the site layout the way it was planned.
    However when I choose Preview or Preview in Browser the children do not appear.  One recommendation I received from this forum was to turn on “show all Pages”, but I cannot find that switch.
    The inability to use these two features has brought me to a screeching halt. 
    The odd part is that the hyperlink worked fine until a couple of days ago, but when I went back  to continue work on the site, hyperlink was not there.
    The Child problem has never worked.

    Hi
    For the last question, the show all pages is located on the top right of the menu bar; (check on top left of the screen that you have indeed selected the menu bar) once menu bar is clicked, the blue circle with white arrow will appear, it is in there you will find MENU TYPE option, select ALL PAGES.
    NOTE when you selct menu bar, top left of the page has to confirm that you have selcted the menu!
    Hope this helps?
    Jilo

  • Previewing web page problems with Windows Vista

    Just wonderering if there is anyone who can solve a problem I
    have with Windows Vista, It wont let me preview my pages being made
    in Dreamweaver...I get a pop with a navcancl message...
    Can you help please as I am seriously thinking of going back
    to Windows XP...
    Creative

    No, but really - what's the message? I'm developing under
    Windows Vista and
    DW CS3 and never had an errors with previewing.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    Blog:
    http://avenuedesigners.com/blog/
    Web dev articles, photography, and more:
    http://sourtea.com
    =============================================
    Proud GAWDS member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "Shane H" <[email protected]> wrote in
    message
    news:f3tcg3$mvk$[email protected]..
    > Yeah, all the errors drove me nuts. I'm all the way back
    to developing on
    > Windows 3.1, now.
    >
    > --
    > Shane H
    > [email protected]
    >
    http://www.avenuedesigners.com
    >
    > =============================================
    > Blog:
    >
    http://avenuedesigners.com/blog/
    >
    > Web dev articles, photography, and more:
    >
    http://sourtea.com
    > =============================================
    > Proud GAWDS member
    >
    http://www.gawds.org/showmember.php?memberid=1495
    >
    > Delivering accessible websites to all ...
    > =============================================
    >
    > "htmlgirl" <[email protected]> wrote in
    message
    > news:f3ssbi$5va$[email protected]..
    >> Just wonderering if there is anyone who can solve a
    problem I have with
    >> Windows
    >> Vista, It wont let me preview my pages being made in
    Dreamweaver...I get
    >> a pop
    >> with a navcancl message...
    >>
    >> Can you help please as I am seriously thinking of
    going back to Windows
    >> XP...
    >>
    >> Creative
    >>
    >

  • Hyperlinks (target="_blank") and buttons on same page problem.

    Another interesting problem.
    I have a hyperlink that is set to open in a new window (target='_blank') and execute the 'hyperlink1_action' on the server.
    The framework executes the javascript function 'hyperlink_submit' (in the formElements.js library) when a hyperlink is clicked. This function sets the 'target' property on the form and also creates a hidden field that identifies the hyperlink that was clicked.
    This works fine and a new window open up with the required data.
    However, now if I click a BUTTON on the ORIGINAL page, a NEW WINDOW pops up and the WRONG DATA is displayed due to the form target setting and hidden field that were created by the 'hyperlink_submit' function called prevously - ie. the changes to the form made by the 'hyperlink_submit' function are NOT rolledback/overwritten when the button is clicked. How annoying!!!
    Am I doing something completely wrong or what?
    Anyway, I feel better now. Have a nice day!
    Message was edited by:
    thepigs2
    OK. In the absence of any replies, I've come up with this superhack that I put at the end of the page which fixes the form...
    <f:verbatim>
    <script>
    var f = document.getElementById('form1');
    f.oldsubmit = f.submit;
    f.submit=function() { setTimeout(function(){resetForm(f);},250);return f.oldsubmit(); }
    function resetForm(f)
    f.target='';
    for( var i=f.childNodes.length-1; i >=0; i-- ){
    var n = f.childNodes;
    if (n && n.name)
    if (n.name.indexOf('_submittedField')>-1)
    f.removeChild(n);
    </script>
    </f:verbatim>

    Guillaume,
    The built-in tabular form feature only supports one tabular form on each page. You'll have to put the two forms on separate pages. Or use simple reports as the detail reports with edit links to an edit form page.
    Regards,
    Marc

  • Web Page Problems in IE 7

    Can someone help me with a probelm? On all my pages there
    should be a line above the 'Gallery' link on the left side of all
    the pages which is apparent in all browsers except Internet
    Explorer separating this link from the stand alone text above it.
    Can any one suggest why this is happening?
    The link to see this problem is:
    http://www.jadedlusion.co.uk/Home_Page.htm

    Add this to your css file:
    #sectionLinks p {
    padding: 2px 0px 2px 10px;
    border-top: 1px solid #cccccc;
    width: 100%;
    voice-family: "\"}\"";
    voice-family:inherit;
    width: auto;
    then add this to html
    <div id="sectionLinks">
    <ul>
    <li class="style19">
    <center>
    <span class="style21"><a href="Home_Page.htm"
    class="style21">Home</a> </span>
    </center>
    </li>
    <li class="style19">
    <center>
    <span class="style21"><a href="About_Us.htm"
    class="style21">About Us </a> </span>
    </center>
    </li>
    <li class="style19">
    <center>
    <span class="style21"><a href="Prices.htm"
    class="style21">Prices</a> </span>
    <ul>
    <li> <span class="style21"><a
    href="Extras.htm" class="style21">Extras</a>
    </span></li>
    <li> <span class="style21"><a
    href="Show_Reel.htm" class="style21">Show Reel</a> <a
    href="Contact_Us.htm" class="style21">Contact Us </a><a
    href="Booking_Form.pdf" class="style21">Booking Form </a>
    </span></li>
    </ul>
    <span class="style21"><a
    href="International_Work.htm" class="style21">International
    Work</a></span>
    </center>
    </li>
    <li class="style19">
    <center>
    <span
    class="style21"><p> </p></span>
    </center>
    </li>
    <li class="style19">
    <div class="relatedLinks"> <br>
    <table width="180" height="280" border="0"
    align="center">
    <tr>
    <td><center>
    <img
    src="Images/Jaded_Lusion_Productions_Image_Three.jpg" alt="With us,
    your memories will stay with you forever..." width="180"
    height="280">
    </center></td>
    </tr>
    </table>
    </div>
    <div class="style16" id="advert">
    <center>
    <span class="style17"><span
    class="style47">W</span>ith us, your memories will stay
    with you forever... </span>
    </center>
    <br>
    </div>
    </li>
    <li class="style19">
    <center>
    <span class="style21"> <a href="Image_Gallery.htm"
    class="style21">Gallery</a> </span>
    </center>
    </li>
    <li class="style19">
    <center>
    <span class="style21"><a href="Home_Page.htm"
    class="style21">Testimonials</a> </span>
    </center>
    </li>
    <li class="style19">
    <center>
    <span class="style21"><a href="Links.htm"
    class="style21">Links</a></span>
    </center>
    </li>
    </ul>
    </div>

  • Mac Mini Web Page Problems!

    I have a mac mini that has been working great for several months. Today it started having trouble with loading web pages! It seems to have letters missing all over the page. I have tried different website and still have the same problem!
    The website do come up but they are missing letters in the articles.
    Any suggestions??

    In my experiance, this would be due to a language error, either the some languages have uninstalled themselves (It has happened to me before) or that the language files have become corrupt... I repair and matinence macs and pcs so i have seen this before. The way to fix this would be to wither repair the language files, or reinstall. Who knows... Maybe a reinstall would be good for your system. How old is the mini?

Maybe you are looking for

  • Views Not Retreiving Data Immediately

    I am inserting 2,000 rows in a table and doing a commit! When retreiving the information through a view, it takes approx. 15 seconds before the committed rows are displayed. Any ideas why this is happenning. I did not know that Views could cache info

  • IPod not updating! HELP!

    I need help desparately! Whenever I plug in my iPod to update new songs that I have downloaded, iTunes shows that it is updating, but once iTunes shows that it has been updated and I disconnect my iPod, the new songs are not on the iPod! The songs ar

  • Wont stay asleep

    when i try to put the computer to sleep it goes to sleep but immediately turns back on

  • TS1440 My Macbook will not boot, all that appears is a blinking file icon with a question mark.

    I have done some research on the issue and it seems to be quite common, but all of the troubleshooting methods I have taken have failed. The most common answer seems to be to insert my Mac OS X installation disk. Well.... I recently bought my Macbook

  • SAP generating invalid XML for ORDERS05 IDOC

    We have XI 3.0 SP 20 installed here. I just started working with XI/PI, so bear with me if this has been asked - I already searched SAP for a note on this and couldn't find one. We have integrated sales orders into another system - we have SAP genera