Cookies demo:cookies jar works for oracle from9i(9.04) and not for 10gRel1

Hi all,
We are using cookies.jar file to set the cookies in forms(Version-forms 9.0.4 ) and its working fine.
When I am using the cookies.jar in forms 10g release 1 version its not working properly. We encounter a strange problem.
The JavaBean can't check if the cookie was set successfully. The message we got from console is :
IE Cookie Set
means that it actually passed the cookie string to the browser using the JSObject class. There is no exception raised
if it cannot be set and thus the Bean doesn't show an error.
Strange issue is that its works in few environments and its not works few environments.
Could you please help ?
Thanks,
Muralidhar Jelli
Edited by: jmdhar on Apr 23, 2009 7:05 PM

Please Advise

Similar Messages

  • TS3274 I went to an Apple store yesterday and the guy there did something and now the ipad only works in the vertical (portrait) position and not the horizontal (landscape) position.  How can we make it work in both positions?

    I went to an Apple store yesterday and the guy there did something and now the ipad only works in the vertical (portrait) position and not the horizontal (landscape) position.  How can we make it work in both positions?

    Just in case you are not running iOS 7 and don't have the control center feature.....
    If you see a lock icon in the upper right corner of the screen - then the screen orientation is locked.
    Try the side switch above the volume rocker first and see if that unlocks the screen. If that doesn't do it and you are running iOS 5 or 6, double tap the home button and swipe to the right and look for the lock icon all the way to the left.
    If you are running iOS 7, swipe up from the bottom of the screen to get to the control center and the lock icon is in the row of icons at the top all the way to the right.
    If the screen is unlocked but still will not rotate, reset the iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the button

  • My iphone is frozen on a screen that is displaying a plug and an itunes icon. I need my phone to work now. Im on call and not at phone. Please help asap

    My iphone is frozen on a screen that is displaying a plug and an itunes icon. I need my phone to work now. Im on call and not at phone. Please help asap

    you need to connect your phone to iTunes.  No way around it.

  • JSP: work with TomCat 5.5.9 and NOT work with TomCat 6.0.16

    Hi all,
    I'm Antony and I have a problem with a .JSP page of my server.
    In my server there are 2 users: "u1" and "u2"; there are 2 TomCat, version 5.5.9 and version 6.0.16. There is Apache WebServer version 2. The 2 TomCat servers have the same configuration files: server.xml and web.xml (in the dir /conf of the main server's root). They not work simultaneously.
    When the user "root" launch the TomCat 5.5.9 all work fine: the server will show correctly the JSP pages of "u1" and the pages of "u2".
    When the user "root" launch the TomCat 6.0.16 the JSP pages of "u1" work fine but the JSP pages of "u2" not work: it seems that there are problems with the path where the server want to search the pages of u2.
    In the server.xml there is this code (for the handle of u2's site):
    <Host name="u2site.com" appBase="/home/u2/public_html/">
      <Alias>www.u2site.com</Alias>
      <Context path="" reloadable="false" docBase="/home/u2/public_html/" debug="0"/>
              <Context path="/manager" debug="0" privileged="true"
                  docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
              </Context>
    </Host>and this code (for the u1's site)
    <Host name="u1site.com" appBase="/home/u1/public_html/">
      <Context path="" reloadable="false" docBase="/home/u1/public_html" debug="1"/>
              <Context path="/manager" debug="0" privileged="true"
                  docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
              </Context>
    </Host>The problems with the JSP pages of u2 are one of the following:
    org.apache.jasper.JasperException: /login2.jsp(4,0) The value for the useBean class attribute com.u2.beans.access.Autenticator is invalid.and this one that appear with the pages that have the inclusion of another JSP page
    /u2page.jsp(3,0) File "/../support/_formatting.jsp" not foundI think that the TomCat know how to find the page that the browser request to Apache WebServer (and that the webserver request to Tomcat by the connector) 'cause for pages that haven't inclusion or call to method in packages all work fine...but the TomCat have problems to locate the pages included or the method located in a JAR (the jars are located in WEB-INF/lib/ of the u2's site).
    How I can resolve this problem with TomCat 6.0.16? I repeat that with TomCat 5.5.9 all work fine...same configuration!
    Any ideas?
    Thank you very much,
    Antony.

    Hi stevejluke, 'cause in the page "/supporto/_formatting.jsp" there are only the definition of some variables it's normal that the output at the browser it's a blank page.
    The problem it's that Tomcat 6.0.16 cannot know how "navigate" the pages beginning from one...it know where is the "x.jsp" page requested directly by Apache WebServer, where is "y.jsp" request directly by Apache, where is "z.jsp" requested directly by Apache but if "x.jsp" request, includes, "y.jsp" Tomcat cannot know where "y.jsp" is located. There is some file where I can "say" this to Tomcat?
    The page "/mostre/elenco_mostre.jsp" includes directly the "/supporto/_formatting.jsp".
    Another thing: in /mostre/elenco_mostre.jsp there is an inclusion directive for /supporto/_formatting.jsp that is so:
    <%@ include file="../supporto/_formatting.jsp"%>you can see that the included file is "../supporto/_formatting.jsp" and NOT "/../supporto/_formatting.jsp"...the "/" at the begin of the path is included by Tomcat!
    In the catalina.out there are this lines, when the page is called:
    Jul 6, 2008 3:15:00 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /elenco_mostre.jsp(3,0) File "/../supporto/_formatting.jsp" not found
      In catalina.out before server start there are this lines:
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 358 ms
    Jul 6, 2008 1:43:49 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jul 6, 2008 1:43:49 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.16
    Jul 6, 2008 1:43:52 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/23  config=null
    Jul 6, 2008 1:43:52 AM org.apache.catalina.connector.MapperListener registerEngine
    WARNING: Unknown default host: localhost
    Jul 6, 2008 1:43:52 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 2512 msThe file "web.xml" is located in "$Tomcat_home/conf" and it's:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
        http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
      <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
          <param-name>fork</param-name>
          <param-value>false</param-value>
        </init-param>
        <init-param>
          <param-name>xpoweredBy</param-name>
          <param-value>false</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
      </servlet>
      <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jsp</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jspx</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>30</session-timeout>
      </session-config>
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
    </web-app>there are not web.xml file in /WEB-INF/ of the web application.
    Maybe the problem it's that Tomcat want the conf file in "Server/Service/Engine/Host/Context" ? I must move the block HOST of the server.xml file in this path?
    Good Sunday and thank you!
    Antony.

  • How to verify OC4J uses Oracle Toplink 10.x and not Toplink Essentials

    Hi,
    We dont want to use the default JPA provider "Toplink *Essentials*" that comes with OC4J. Rather we want to use Oracle Toplink 10.x
    I downloaded [Oracle Toplink 10.x|http://www.oracle.com/technology/software/products/ias/htdocs/1013topsoft.html] and followed the installation instructions:- http://www.oracle.com/technology/products/ias/toplink/doc/10131/install/install.html#CHDBBIFB
    When i deploy my EJB 3.0 appliation and invoke a JPA Entity, i can see the server log:- NOTIFICATION TopLink, version: Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))
    Do i have to do any other configuration/setting to ensure that i use Oracle Toplink and not Toplink Essentials in OC4J?
    Thanks in Advance,
    Prashant Tejura
    Edited by: user1186295 on May 26, 2009 10:33 AM

    rashant,
    Hi, there are currently the following providers to choose from - you may want to consult your rep for any details on moving from 10.1.3.4 to 10.1.3.5.
    1) TopLink or EclipseLink using EclipseLink JPA - the RI for JPA for WebLogic, OC4J and GlassFish
    - EclipseLink JPA is focus of all current JPA development as part of EclipseLink and TopLink
    2) Another open-source JPA implementation like OpenJPA or Hibernate
    Deprecated:
    3) TopLink using TopLink JPA - replaced by (1) TopLink using EclipseLink JPA
    4) TopLink using TopLink Essentials JPA - replaced by (1) TopLink using EclipseLink JPA
    Changes to server.xml as follows:
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/OC4J_Web_Tutorial#Modify_server.xml
    <shared-library name="oracle.persistence" version="1.0" library-compatible="true">
              <code-source path="../../../eclipselink/eclipselink.jar"/>
              <code-source path="../../../eclipselink/javax.persistence_*.jar"/>
              <import-shared-library name="oracle.jdbc"/>
         </shared-library>
    Changes to persistence.xml as follows: (container-managed JTA datasource)
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/OC4J_Web_Tutorial#Persistence.xml
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="example" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <jta-data-source>jdbc/OracleDS</jta-data-source>
    <class>org.eclipse.persistence.example.jpa.server.business.Cell</class>
    <properties>
    <property name="eclipselink.target-server" value="OC4J"/>
    <property name="eclipselink.logging.level" value="FINEST"/>
    </properties>
    </persistence-unit>
    </persistence>
    You should see output similar to the following in your server log:
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/OC4J_Web_Tutorial#Console_Output
    [EL Finest]: 2009-02-26 14:04:34.464--ServerSession(8634980)--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--Begin deploying Persistence Unit example; state Predeployed; factoryCount 1
    [EL Info]: 2009-02-26 14:04:34.542--ServerSession(8634980)--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--EclipseLink, version: Eclipse Persistence Services - ***
    [EL Fine]: 2009-02-26 14:04:35.213--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--Detected Vendor platform: org.eclipse.persistence.platform.database.oracle.Oracle10Platform
    [EL Config]: 2009-02-26 14:04:35.26--ServerSession(8634980)--Connection(5230779)--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--Connected: jdbc:oracle:thin:@//1y.yyy.yy.yy:1521/ORCL
         User: SCOTT
         Database: Oracle Version: Oracle Database 11g Release 11.1.0.0.0 - Production
         Driver: Oracle JDBC driver Version: 10.1.0.5.0
    [EL Finest]: 2009-02-26 14:04:35.385--UnitOfWork(5746770)--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--PERSIST operation called on: org.eclipse.persistence.example.jpa.server.business.Cell@9107088( id: null state: null left: null right: null parent: null references: null).
    [EL Fine]: 2009-02-26 14:04:35.807--ClientSession(5748500)--Connection(6653899)--Thread(Thread[HTTPThreadGroup-4,5,HTTPThreadGroup])--INSERT INTO EL_CELL (ID, STATE, TSEQ, RIGHT_ID) VALUES (?, ?, ?, ?)
         bind => [551, null, null, null]
    thank you
    /michael
    www.eclipselink.org

  • My iPhone won't charge on certain devices it seems to work on one on one day and not on the next day.  Weird,  and I got kleptogirl in and out all the time

    It will work on one ; one day, and not the next day, but on third day it works again what is going on?

    When I was searching for people that had the same problem as me, I found one that said to go on amazon and by a new charger flex. I got the new charger flex and my iPhone charges again. It is not that expensive and my iPhone charges now

  • Tones not working after purchase on iPhone 6 and not syncing with iTunes

    Hi.
    I purchased three tones on iPhone 6 through the iTunes Store app.
    The tones worked for a while until today I noticed that they were gone. I checked the Settings - -->Sounds but could not find the tones.
    I connected the iPhone 6 to iTunes and could see the purchased tones under On My Device -- Tone but they are greyed out.
    I have tried every thing but could not sync the tones into iTunes and I can't get them to work either. Please suggest a way out.

    UPDATE:
    Called Apple support and they confirmed this is a known issue.
    They don't have an ETR on when this will be fixed. They offered a refund for the three tones but I will wait till this gets fixed. Must be a small software bug.

  • In FF3 I could trust or allow my banking site to store a cookie to allow me to register my pc and not have to keep answering the challenge question.

    When I set FF4 to "use custom settings for history" and allow my banks site but when I go back to check after my bank does not remember that I registered it has changed itself back to "never remember history".I have tried to find answers to this by searching your site and the web with Google. I think it is a common defect with version 4.

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Use Custom Settings for History"''' -> REMOVE Checkmark from "Permanent Private Browsing mode" -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> REMOVE CHECKMARK from CLEAR HISTORY WHEN FIREFOX CLOSES
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    Check and tell if its working.

  • Are there any update or patches for Firefox 4. It works very poorly with Windowa 7 and not at all with Youtube?

    It freezes up all the time..."Firefox not responding". Also it will mot allow me to share YouTube videos and Facebook. i have none of these problems with IE or the old Firefox 3.

    An update was released today. Give it a spin and see whether it helps! (Currently, I believe you would have to download the full install, but hopefully the update button will start working in a few hours.)
    For what it's worth, I haven't noticed any problems running Firefox 4 on Windows 7, but I have not tried posting anything to YouTube or Facebook.

  • An mov file which play fine in quicktime on my mac mini will not play in quicktime on a windows 7 unit. Error 2048, quicktime does not understand this file. Any ideas as to why it works in mac version of quicktime and not windows version?

    The .mov file sis downloaded from my Sony camera. It is not altered and plays fine on the Mac mini using QuickTime. It will not play on a Windows 7 unit using the latest version of Quicktime. Why would that be? Why will one version of QuickTime work and another not work?

    Also make sure the file type is not of a DivX. That your camera supports. Which QT for Mac also supports, but the Windows version of QT does not support DivX, so you're not purchasing something for the Windows computer that is not needed?

  • Why epson projectors work perfectly in MacOS X Lion and not in Windows 7 with bootcamp?

    Hi,
    Irecently bought the new Macbook Air 2011, which came with the Intel Graphics HD3000 video card, as many of you, I was forced to install windows using bootcamp software, everything worked fine, till I tried to connect it to theprojector in office, which is a Epson PowerLite S5+.
         Duringthe configuration, which normally is just plug the VGA adapter to the minidisplay port and everything works, this time was different, the projector orthe Macbook air doesn't recognize each other, for same reason. Doing some researchon the internet I've discovered that there are some issues between new Macbook’svideo cards which are Intel Graphics HD and some projector.
         Nowthe question is, why the video card driver recognize most of the projectors inMacos x Lion and in windows 7 64 doesn't work?, is there any driver parameterto modify in order to make them work?, when Intel will release a fully operatingdriver for windows 6 64 that work with all projectors?.
    Ithank you every one, who help me to solve this incompatibility of software.
    Sorryfor my English, but I'm not a native speaker.

    I recognize your problems and posted the same question. Very weird. Apple HELP!!

  • Why does itunes match work on some of my devices and not others

    I have a Iphone 4, Iphone, Ipad 2, and a new Ipad.  recently i purchased itunes match and everything seems to work fine... then the new ipad lost all music.  all other devices are working properly.  it shows the music, but all tracks are 0:00 and cannot do anything with it.

    Sounds like a simple local file corruption.  Would suggest re-installation of the application.

  • I cannot get my Bose speakers to work.  They are plugged correctly and not in the headset jack

    I have a new iMac 21.5 inch Led. 16.9 widescreen computer.  I purchased Bose speakers.  They are set up correctly and plugged in the back of the monitor in the correct slot (not headset slot) and I cannot get sound through  the Bose speakers.  I have tried the speakers on another computer and they work properly.  Can you help?

    Hi. If the speakers are using a standard 3.5mm plug, they need to be plugged into the headphone jack. Please clarify which jack you are using.
    Stedman

  • Can i patch oracle database on  RAC and not patch the RAC software

    Hi there
    Kindly advise on implications of doing the following
    1 i have oracle cluster version 10.2.0.1.0 running 2 nodes
    2 i have database version 10.2.0.1.0
    i have 4 different databases
    I want to patch only one database
    question !!
    Can i patch the database to 10.2.0.4 on both nodes with out patching the cluster software ?
    I' m doing this in order to fix a bug that is messing the live Db
    Is That possible
    Please answer
    Thanks
    Francis

    Can i patch the database to 10.2.0.4 on both nodes with out patching the cluster software ? Can you? yes
    Should you? NO

  • When I try to play a video the sound works, but a green screen apears and not video shows.

    When I try to play a video the sound works, but I get a green screen and no video.

    What is your operating system?  If Windows, see http://forums.adobe.com/thread/945765

Maybe you are looking for

  • Graph image not getting displayed when navigating from another page

    Hi All, I have implemented a line graph in ADF with "dept no"(in x-axis) and "avg sal"(in y-axis). When I am going to run only this graph page, its showing proper data. But,when I am trying to navigate from another jspx page (which is under some pack

  • How to Change default text in Multi-Selection Table Bar

    Hi, I would like to change the default text "Select Object" on the Multi-selection Table Bar. I tried adding the following in my resultsCO but I'm getting errors: tableBean.setTableSelectionText("<newText>"); Error(25,34): invalid method declaration;

  • Some of my emails are categorised as Spam. Is a BT...

    I've not managed to get satisfaction from BT Support Chat.  I'm hoping a Mod can help (they usually come up with the goods!). I use a feature on my NAS to email me a status report once per week through mail.btinternet.com (using my normal logon crede

  • Ipad wifi WORST problem

    hello. my ipad was working in the US, and also in kuwait but it is NOT in pakistan. i checked it in two networks. in both, my laptop and iphone were working. the ipad does not detect any network at ALL. i googled every possible combination and read a

  • Why isn't Facebook plug-in share button on Mountain Lion?

    Okay, so I just downloaded Mountain Lion on my Macbook Pro OS X 10.8 and I wanted to use the share feature it shows on the video, I signed in in Twitter and everything's fine but there is no Facebook option... I can't use the facebook 'plug-in' becau