Webcenter Framework and JSP Custom application for IE6 Compatibility

Hi All, I've a problem with a client which wants a portal application with all the bells and whistles which go with it but don't want to give up IE6.
So my question is can I build the Custom WebCenter Application (Portal) in a IE6 compliant technology like Trinidad and still get everything I want from the WebCenter framework in terms of portlet producers? The Portal application will be fixed in content and very basic in terms of layout.
Does this sound feasible or would it be better to use a older version of ADF or indeed Weblogic Portal?
Thanks
Doug

You could use whatever library of rich components you want... You could also use icefaces or primefaces or so. The trinidad components should also work in an 11g environment. Normally the trinidad components are just a library so you should be able to deploy it on a weblogic server...
Maybe you can ask this in the adf forum: JDeveloper and ADF
The guys over there will be better in answering whether or not you can use trinidad in an 11g environment without using the adf rich faces.
You also have to know that you ALWAYS have to use some adf 11g components. The way a portlets is rendered in a webcenter application is by using a showDetailFrame. You can not change this and i don't know how this behave's in IE6. It will definilty need to load up some javascript libraries what will cause some errors in IE6. Maybe you can try it... Just create an empty page with just a portlet on it and see how it reacts in IE6.

Similar Messages

  • Mapping and querying Custom Objects for a Contact with REST Api

    Hello All,
    We are hoping to get some details on managing DataCard set through REST APIs. Our implementation goal is to create Contacts and add Custom object for each Contact, or to be precise, add a DataCard Set for each Contact.
    At the moment, to associate a DataCard Set (or Custom Object) to an existing contact, we are supplying following custom object fields during creation of Custom Object:
    new CustomObjectField 
                                                                    name = "MappedEntityType",
                                                                    dataType = Enum.GetName(typeof(DataType), DataType.numeric),
                                                                    type = "CustomObjectField",
                                                                    defaultValue = "0"
                                                             new CustomObjectField
                                                                    name = "MappedEntityID",
                                                                    dataType = Enum.GetName(typeof(DataType), DataType.numeric),
                                                                    type = "CustomObjectField",
                                                                    defaultValue = "<ContactId>"
    Is this the correct approach? This is Based on the information provided here: http://topliners.eloqua.com/community/code_it/blog/2012/05/31/eloqua-api-how-to-mapping-a-data-card-to-an-entity.
    Would the REST API allow us to query the CustomObjects using the MappedEntityId value for later updates? If so, any pointers on how we approach that?
    Thanks in ad.

    Either the MappedEntityID field is not available or I do it wrong, Eloqua is ignoring the field and does not map the custom record with the unique Contact ID
    {"type":"CustomObjectData","ContactID":"8829509","fieldValues":[{"id":"195","value":"[email protected]"},{"id":"220","value":"a0KJ000000387QvMAI"},{"id":"191","value":"001J000001OrL77IAF"},{"id":"193","value":"NowTV MPP"},{"id":"194","value":"8829509"},{"id":"196","value":"Andreas"},{"id":"197","value":"Wolf"},{"id":"198","value":"003J00000145lkBIAQ"},{"id":"210","value":"777666555"},{"id":"199","value":"gbp"},{"id":"200","value":"0"},{"id":"215","value":"0"},{"id":"201","value":"999111999"},{"id":"214","value":"111111"},{"id":"202","value":"222222"},{"id":"204","value":"now"},{"id":"203","value":"xmas"},{"id":"205","value":"no description"},{"id":"206","value":"test"},{"id":"218","value":"holidays"},{"id":"219","value":"PPV-0878545"},{"id":"213","value":"N"},{"id":"212","value":"myself"},{"id":"209","value":"now tv"},{"id":"192","value":"1417542120"},{"id":"207","value":"1417542120"},{"id":"216","value":"1417542240"},{"id":"217","value":"1417542240"},{"id":"211","value":"1417542240"}]},"MappedEntityID":"003J00000145lkBIAQ"}
    Response
    DEBUG|Response------{"type":"CustomObjectData","id":"81720","fieldValues":[{"id":"195","value":"[email protected]"},{"id":"220","value":"a0KJ000000387QvMAI"},{"id":"191","value":"001J000001OrL77IAF"},{"id":"193","value":"NowTV MPP"},{"id":"194","value":"8829509"},{"id":"196","value":"Andreas"},{"id":"197","value":"Wolf"},{"id":"198","value":"003J00000145lkBIAQ"},{"id":"210","value":"777666555"},{"id":"199","value":"gbp"},{"id":"200","value":"0"},{"id":"215","value":"0"},{"id":"201","value":"999111999"},{"id":"214","value":"111111"},{"id":"202","value":"222222"},{"id":"204","value":"now"},{"id":"203","value":"xmas"},{"id":"205","value":"no description"},{"id":"206","value":"test"},{"id":"218","value":"holidays"},{"id":"219","value":"PPV-0878545"},{"id":"213","value":"N"},{"id":"212","value":"myself"},{"id":"209","value":"now tv"},{"id":"192","value":"1417542120"},{"id":"207","value":"1417542120"},{"id":"216","value":"1417542240"},{"id":"217","value":"1417542240"},{"id":"211","value":"1417542240"}]}
    Eloqua:
    Name: PPV-0878545
    Unique Code: a0KJ000000387QvMAI
    Status Registered
    Created Date 12/22/2014 12:44:49 PM
    Mapped NO
    Any Idea how to map this to a contact
    Entity Type is Contacts
    Entity Field is SFDC Contact ID

  • Connection Pooling and JSP Custom Tag Library - is code (inside) the best way/correc?

    Hi, can anyone advise as to whether my tag library code (based
    on Apache Jakarta Project) will actually achieve connection
    pooling functionality across my entire JSP based application? I
    am slightly concerned that my OracleConnectionCacheImpl object
    may exist multiple times, hence rendering my conection pooling
    attempt useless.
    package com.solved.tag.dbtags.connection;
    import java.io.IOException;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    import javax.servlet.jsp.JspTagException;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import oracle.jdbc.pool.OracleConnectionCacheImpl;
    * <p>JSP tag connection, used to get a
    * java.sql.Connection object.</p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>connection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.ConnectionTag&lt;/t
    agclass>
    * &lt;bodycontent>JSP&lt;/bodycontent>
    &lt;teiclass>com.solved.tag.dbtags.connection.ConnectionTEI&lt;/t
    eiclass>
    * &lt;info>Opens a connection based on a jndiName.&lt;/info>
    * &lt;attribute>
    * &lt;name>id&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    public class ConnectionTag extends TagSupport {
    static private OracleConnectionCacheImpl cache = null;
    public int doStartTag() throws JspTagException {
    try {
    Connection conn = null;
    if (cache == null) {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup
    ("jdbc/pool/OracleCache");
    cache = (OracleConnectionCacheImpl)ds;
    catch (NamingException ne) {
    throw new JspTagException(ne.toString());
    conn = cache.getConnection();
    pageContext.setAttribute(getId(),conn);
    catch (SQLException e) {
    throw new JspTagException(e.toString());
    return EVAL_BODY_INCLUDE;
    package com.solved.tag.dbtags.connection;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    * <p>JSP tag closeconnection, used to close the
    * specified java.sql.Connection.<p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>closeConnection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.CloseConnectionTag&
    lt;/tagclass>
    * &lt;bodycontent>empty&lt;/bodycontent>
    * &lt;info>Close the specified connection. The "conn"
    attribute is the name of a
    * connection object in the page context.&lt;/info>
    * &lt;attribute>
    * &lt;name>conn&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    * @see ConnectionTag
    public class CloseConnectionTag extends TagSupport {
    private String _connId = null;
    * The "conn" attribute is the name of a
    * page context object containing a
    * java.sql.Connection.
    * @param connectionId
    * attribute name of the java.sql.Connection to
    close.
    * @see ConnectionTag
    public void setConn(String connectionId) {
    _connId = connectionId;
    public int doStartTag() {
    try {
    Connection conn = (Connection)pageContext.getAttribute
    (_connId);
    conn.close();
    } catch (SQLException e) {
    // failing to close a connection is not fatal
    e.printStackTrace();
    return EVAL_BODY_INCLUDE;
    public void release() {
    _connId = null;
    package com.solved.tag.dbtags.connection;
    import javax.servlet.jsp.tagext.TagData;
    import javax.servlet.jsp.tagext.TagExtraInfo;
    import javax.servlet.jsp.tagext.VariableInfo;
    * TagExtraInfo for the connection tag. This
    * TagExtraInfo specifies that the ConnectionTag
    * assigns a java.sql.Connection object to the
    * "id" attribute at the end tag.
    * @author Matt Shannon
    * @see ConnectionTag
    public class ConnectionTEI extends TagExtraInfo {
    public final VariableInfo[] getVariableInfo(TagData data)
    return new VariableInfo[]
    new VariableInfo(
    data.getAttributeString("id"),
    "java.sql.Connection",
    true,
    VariableInfo.AT_END
    data-sources.xml:
    <?xml version="1.0"?>
    <!DOCTYPE data-sources PUBLIC "Orion data-
    sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
    <data-sources>
    <data-source
    class="oracle.jdbc.pool.OracleConnectionCacheImpl"
    name="jdbc/pool/OracleCache"
    location="jdbc/pool/OracleCache"
    url="jdbc:oracle:thin:@oracle1:1521:pdev"
    >
    <property name="maxLimit" value="15" />
    <property name="cacheScheme" value="2" />
    <property name="user" value="console" />
    <property name="password" value="console" />
    <description>
    This DataSource is using an Oracle-native DataSource Class so as
    to allow Oracle Specific extensions.
    A getConnection() call on this DataSource will return
    oracle.jdbc.driver.OracleConnection.
    The connection returned is a logical connection.
    The caching scheme in place is Fixed Wait. Refer below to
    possible values.
    Dynamic 1
    Fixed Wait 2
    Fixed Return Null 3
    </description>
    </data-source>
    </data-sources>
    many thanks,
    Matt.

    Hi. Show me your pool definition.
    Joe
    Ramamurthy wrote:
    I am using the jsp custom tag library from BEA called sqltags.tld which came with Weblogic 5.1. Currently I am using Weblogic6.1 sp2 on Solaris.
    I have created a Connection Pool for Sybase database using the driver com.sybase.jdbc.SybDriver.
    When I created jsp page to connect to the connection pool using sqltags custom tag library, I am getting the error
    "javax.servlet.jsp.JspException: Failed to write body content
    at weblogic.taglib.sql.ConnectionTag.doAfterBody(ConnectionTag.java:43)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:1014)"
    After this message, whenever I try to access the same jsp page I am getting the message
    "javax.servlet.jsp.JspException: Failed to load JDBC driver: weblogic.jdbc.pool.D
    river
    at weblogic.taglib.sql.ConnectionTag.doStartTag(ConnectionTag.java:34)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:205)".
    Can you please help me the reason why this problem is happening and how to fix this ?
    This problem doexn't happen consistently. This occurs once in a while.
    I tried to increase Login delay Seconds parameter in the Connection Pool to 15 sec. It didn't help me much.
    Thanks for your help !!!
    Ram

  • Advice and Internet Software Applications for iBook G3?

    Ok, So I did it late last night, or technically early this morning... I went and bought a Refurbished MacBook - Black 2.0GHz Core Duo with 512mb RAM (in 2x265 sticks which I am replacing with 2x1gb sticks purchased from TigerDirect at the same time) 80gb HDD, Superdrive, Built-in iSight, Bluetooth, Ethernet, and Airport Extreme. Basically the same as the new ones that they are selling except it is only a Core Duo and not Core2 Duo... Will get my AppleCare from LA Company (thanks Ronda for the link, they have great prices) in a month or 2 after testing out the MacBook and making sure I won't need to send it back...
    Anyways, this post is not supposed to be about the bragging of the new laptop (due to arrive Tue or Wed, heh), but about finding some good mac software (hopefully freeware or shareware) to use for internet stuff on my old iBook G3, which I am giving to my roommate to use (he will use his desktop for most of his heavy speed/memory/graphics needs and the ibook as an extra mobile internet tool). Basically, he used to use a mac when he was married (an old power pc with OS9 on it) but once he moved out and got the big D, has used windows XP since then, and has never seen OSX at all I don't think, so he definitely hasn't used it before.
    He mainly likes to browse web sites and use IRC (he uses mIRC) and watches the free streaming videos from sites like Yahoo... He seemed unsure whether he would find use of it (the ibook), but I am thinking it's because he doesn't know how much better it can be with OSX (10.2.8) than OS9...
    So I am asking for help in a way to show some nice simple ways he could work it into his routine (while still using the desktop pc) and have it not be a hassle to "learn" and find programs he wants to use (in comparison to ones he has for windows). Again, this will be for lighter applications because of the 500 MHz speed (has 576mb RAM).
    He (unlike me) does not use Mozilla Firefox and therefore does not use its extentions and themes and other add-ons, but sticks to IE7 (which is crazy), but I think it is more out of laziness to try something new and to have to go and add on the extentions (compared to if they are built-in to the browser). So since I never had much experience using the different web browsers for mac, which ones would be most like IE, I know Firefox is available for macs, are there any that are simple basic, but could have things added on to it or customized more (yes, I know I am describing Firefox)?
    Also, if wanting to use an application for music, but you wanted it to be smaller than the size of iTunes (and not need as much memory while running it), is there one you would say to go for? Any good mac IRC programs (not messenger things but specific to the IRC protocol)? Ones that have additional scripts you can run for them (he is really into that, he uses Excursion 9.5 alot too)?
    I do not want to throw the iBook at him and say here, use it, and walk away, and I also don't want to go and show him every little thing that it does, but want to just find some programs that he might actually use on it right away, and ease himself into using the ibook on a regular basis (I would install everthing for him, and set up all the system preferences and if he actually keeps on using the ibook, I will give him little "lessons" on how to change things, install stuff etc). I threw myself into my ibook as that is what I tend to do with anything electronic and tech like (I am the biggest tech geek around), but I know that alot of others can't do the same and need to slowly learn how to swim in the mac pool, with those floaty arm band things and floating kickboards and all...
    Any advise on how to do this for someone that I know would end up loving the ibook and OSX for more basic stuff, but just needs that gentle nudge in the right direction and the right kind of software to make him feel comfortable using it, would be greatly appreciated.
    And yes, if he doesn't want to use it after that nudge, I will back off and take it back to sell (or just have a 3rd laptop hanging around, but then I will feel like the old lady with an apartment full of laptops -and other lonely tech gear).

    Some people use VLC for watching video, but, in my experience, you are not going to get good streaming video on a 500 MHz iBook.
    Shut down all other applications and maybe even restart the iBook before trying to watch YouTube or whatever. I've not had much success with it. (You are talking about a 5½-year-old computer, after all.)
    I don't even know what IRC is. It sounds like it's a chat client? If so, iChat works great for me. It uses the AIM protocol.
    I would stick with Apple applications. I prefer Safari as my web browser, but Firefox would probably be my second choice. Camino is good. Other browsers out there are iCab, Opera, and OmniWeb, and I may be forgetting some of them. Safari is the one that comes with OS X, and it's my pick over all the others. Once he gets used to tabbed browsing, he will wonder what he ever saw in Explorer (and I was a die-hard Internet Explorer fan, too).
    I know of no better music app for a Mac than iTunes. Just so simple.

  • WebCenter Framework and Services Design Time Download Error.

    Hello,
    I am working on JDev(11.1.1.5) for a project and I need this WebCenter Framework. I'm new to JDev but, I got an error that says "Server redirected too many times (20)" and I was wondering if there was any fix for this because I need to start working soon.
    Thanks.

    Fixed error by putting a wildcard in the exception line for the proxy.

  • How to create and deploy portal applications for WebLogic TP10

    Hi Friends:-) Thej here,
    I want to know, how to create weblogic portal applications for tech preview version 10.
    Thanks

    The Tech Preview of 10.0 contains only WebLogic Server. WebLogic Portal 10.0 functionality is not contained in this preview. Therefore, you cannot create portal applications in this Tech Preview.
    Thank you.

  • Integration of customers and vendors- customer exit for renaming

    We are planning to use customers for capacity reservation functionality and vendors for subcontracting in APO.
    Due to this, we will need Vendors and Customers in APO.
    Currently some plants are using same number range for customers and vendors.
    So, we will have to rename either customer number or vendor number.
    In such situation, do you recommend renaming customer number or Vendor number?
    Do you see impact of renaming customer or vendor in above processes?
    Can you please e-mail me which customer exit  I should use and steps that should be followed for renaming?
    Thanks,
    Srini

    Your problem:
    Different location types with the same name or number in the external system. For example, a customer and a supplier both have the number 1000. This problem occurs especially with vendor and customer numbers.
    You can do the following:
    described in SAP Note 458914.
    Activate BAdI Implementation for Location Prefix
    Procedure
    1.     Access the activity using one of the following navigation options:
    SAP SCM Menu     Tools  Customizing  IMG  Execute Project  SAP Reference IMG  SAP Implementation Guide  SCM Basis  Integration  BAdIs for Specific Applications  Location and Business Partner  BAdI: Inbound Processing for Location
    Transaction Code     SPRO
    2.     In the Business Add-Ins: All Implementations for Definition SMOD_APOCF001 dialog box, go to the Defined filters table and select the suitable implementation for your problem situation, for example:
    Field Name     Entry Value
    Bus. add-in implementation name     APOCF001_TYPEDIF
    Implementation short text     Locations of different type with similar names
    3.     Choose Change.
    4.     Confirm the warning message.
    5.     On the Business Add-In Builder: Change Implementation APOCF001_TYPEDIF screen, choose Activate business add-in implementation.
    6.     In the Prompt for transportable Workbench request dialog box, enter a workbench request and press ENTER.
    7.     Choose the Back pushbutton (F3) twice.

  • ContentDB 10.1.3.2.0 of WebCenter Suite and S2S Trusted Application error

    Hi ,
    Any one have tryed creating trusted s2s application entry in OID, using steps provided under contentdb devkit (cdb\doc\authentication.html) ?
    When I run ./runs2s.sh Permission denied even though I have updated jazn-data.xml file
    Then I have try running
    /home/oracle/cdb/jdk/bin/java -classpath /home/oracle/jk/cdb_bpel/cdb/lib/trusted-app-utility.jar:/home/oracle/cdb/jlib/repository.jar oracle.ifs.examples.s2s.TrustedApplicationUtility -create applicationInfo=/home/oracle/jk/cdb_bpel/cdb/conf/application.info
    got this error
    oracle.ias.repository.schema.SchemaException: oracle.ias.repository.schema.SchemaException: iAS Property could not be foundProperty Name OIDsslport in /home/oracle/cdb/config/ias.properties
    ias.properties file
    [ComponentConfig]
    Apache.LaunchSuccess=true
    J2EE.LaunchSuccess=true
    Portal.LaunchSuccess=true
    ContentDB.LaunchSuccess=true
    WebCenter.LaunchSuccess=false
    [InstallData]
    Version=10.1.3.2.0
    InstallType=contentdatabase
    Components=j2ee,apache,content database
    IASname=cdb.contentdb.sjrwmd.com
    InstanceNamesList=%InstanceNamesList%
    IASpassword=
    IASSvcpassword=
    UserName=oc4jadmin
    InfrastructureUse=false
    DatabaseManagedClusterSupport=false
    SSLOnly=%SSLOnly%
    VirtualHostName=contentdb.sjrwmd.com
    InfrastructureInstallOnRAC=%b_InfrastructureInstallOnRAC%
    OIDhost=%s_oidHost%
    OIDport=%s_oidPort%
    OIDSSLport=%s_oidSSLPort%
    OC4JAdminpassword=05491107c9440243e58219322b068c4dbd59dddff4c5575902
    [InfraStructureDatabase]
    InfrastructureDBCommonName=%s_infrastructureGlobalDBName%
    [EMConfigData]
    IMAdminSupported=%IMAdminSupported%
    IMServerLocConfigurable=%IMServerLocConfigurable%
    IMReposAdminSupported=%IMReposAdminSupported%
    CentralAdminSupported=%CentralAdminSupported%
    MRAdminSupported=%MRAdminSupported%
    FarmAdminSupported=%FarmAdminSupported%
    I can notice OIDSSLport and lower case OIDsslport in error output.
    Any idea to resolve this.
    Thanks,
    Jigar

    I have a similar problem on a similar environment (Win 2003/ 10.1.3.2.0/DB 10.2.0.1) installation of Webcenter Suite using Basic installation.
    I have tried creating the table spaces according to the specifications given in oracle documentation, yet the installer complained about the table spaces not having free space left (specially, the WORK_IFS tables space). I also tried giving spaces on average 15MB more then the suggested space for their datafiles, and it still complained about the table space issue.
    - When the configuration assistant fails, and you exit out of the Universal Installer, is there any option or way to just rerun the configuration assistant for content db again?
    - I see on the EM for WebCenter Suite that all the other components seem to install properly and are up and running yet there is no mention of Content DB. Nor there is any option to try to reconfigure it.
    - or do we have to uninstall the whole WCSuite, and/or the database 10201 too and then reinstall the software?
    Can someone please help in finding a way forward?
    thanks for your cooperation.
    AMN

  • How to receive and evaluate customer feedback for Makreting Survey?

    Dear all,
    We need to send a Customer satisfaction survey to a target group and we have to get the feedback from customers.
    How can we know that, how many customers selected the same answer for a specific question, and how can we evaluate the answers based rating factor.
    I know 'Evaluate without BIW' option, but how this report looks like?, and can we get the detailed analysis from this report. We are using CRM 7.0 and we don't have BIW in our Landscape
    Please educate me in the above scenario as it is an immediate requirement from client side. Your help will be highly appreciated.
    Best regards,
    Raghu ram

    The SAP Library has a good starting point with examples that should offer some insight into how to work with the Campaign Automation, which is how you could process the specific survey responses...otherwise the area you've already found is where you can check for more generalized data (How many people answered Yes/No, etc.)
    Specific answers are typically tracked by adding the respondents to various Target Groups for subsequent processing.
    http://help.sap.com/saphelp_crm60/helpdata/en/46/0ac0da293114dbe10000000a155369/content.htm

  • How to create and register custom views for Bulk Export

    In the FAQ of "Understanding Bulk Export" chapter, it says "You can define your own view object for export. However, before you can use your view object for export, you must register
    and enable it as an export object in the Setup and Maintenance, Manage Export Objects task."
    Task "Manage Export Objects" does not have a create or edit option. Do I have to use a particular rol to activate this options?

    As you state this is likely related to the permissions you have. Have you confirmed that you have the necessary roles mentioned in the documentation ? I think you would need at least "Application Implementation Consultant" and potentially others from the list also depending on the objects accessed.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Custom application for newsletter??

    Hi experts,
    I want send newsletter with my SAP Portal, is it possible? Are there any application or method for do it?
    Thanks in advance,
    Regards,

    But,
    I want to send by email to anybody and they can read it whitout log in by portal.
    I want similar the SAP newsletter we receive in the email.
    Thanks in advance,
    Regards,

  • Design and deploy Tomcat Applications for Planned,  Unplanned Database Downtimes and Runtime Load  Balancing with UCP

    Brand new white paper @ http://www.oracle.com/technetwork/database/application-development/planned-unplanned-rlb-ucp-tomcat-2265175.pdf

    Brand new white paper @ http://www.oracle.com/technetwork/database/application-development/planned-unplanned-rlb-ucp-tomcat-2265175.pdf

  • Why are certain websites telling me I need to enable cookies? I've deleted cookies.sqlite, cleared the history, and set custom settings for history to allow cookies and I am still getting this message.

    I am on 3.6.17. Please don't tell me to upgrade. I shouldn't need to upgrade to solve a cookie problem.

    There is usually no need to enable third-party cookies. Only some websites needs them enabled. E.g. you can't logout properly from Hotmail unless third-party cookies are enabled, but apart from that Hotmail (Windows Live) works without problems. You usually notice it when you have to enable third-party cookies because the website gives a warning. You end up with a lot of extra cookies if third-party cookies are enabled, so I keep them disabled and remove the live.com cookies myself in this case.
    * https://support.mozilla.com/kb/Disabling+third+party+cookies

  • Ideas pls for a small application on java and jsp?

    hi ,
    I would like to create an application which for resume. I would like to codify the java code . The java code should be able to autogenerate jsp file's since the output of the resume would be on an jsp page. To add it simply a wizard for dynamic resume creation using java swings and jsp. Code for jsp should be autogenerated please note it.
    Ideas please!
    Thanks in advance

    I'd like to add more information to Patreck's suggestion.
    JSP pages are wonderful if you need the web server to perform some actions before sending you the final web page.
    Here, you don't need the web server to do anything because your Swing application can do it for you. As Patreck implies, Swing can make a connection to the database, retrieve any information you want, perform whatever logic you need, and write the output to an HTML file.
    To give you an example, you can use Internet Explorer to view a basic web page on your hard disk. You can also use Microsoft Word to view the same basic web page. They both do the same task and there is no need to force IE to use its Word plug-in in order to view the web page.
    JSPs are not necessary because Swing will do all of the work for you. You only need JSPs if you want people to use your program through a web browser because they can't do Swing inside a web browser. You should only use one or the other, not both. Understand now?
    If you really really must generate JSP code from a Swing application, then just write out the JSP stuff in the file. For example...
    public void createWebPage( Printwriter pw, String myName ) {
       pw.println( "<% String myJSPName = \"" + myName + "\" %>" );
       pw.println( "<HTML>");
       pw.println( "<HEAD>");
       pw.println( "<TITLE>My Resume</TITLE>" );
       pw.println( "</HEAD>");
       pw.println( "<BODY>" );
       pw.println( "<H1>My name is " + myName + " and my JSP name is <%= myJSPName %></H1>" );
       pw.println( "</BODY>" );
       pw.println( "</HTML>" );
    }As you can see, it's pointless to embed JSP when you can do all the programming within Swing first and just write out the correct response.

  • WebCenter Framework for Jdev 11.1.1.5 on Windows 2008 R2 64 bit not install

    Hi!
    WebCenter Framework and Services Design Time (11.1.1.4.0.110415.0606) for Jdeveloper 11.1.1.5
    not install on Windows Server 2008 R2 64-bit.
    Any idea?
    Thanks.
    Serg.

    Step by step.
    1. I install Jdeveloper 11.1.1.5.
    2. Using 'check for updates' install WebCenter Framework and Services Design Time (11.1.1.4.0.110415.0606) for Jdeveloper 11.1.1.5 ( on Windows Server 2008 R2 64-bit)
    3. The installation process runs without errors
    4. PROBLEM: 1. /help/about/Extensions - no identifier "oracle.webcenter.*" 2. /File/New/General/Application - not exist item "Webcenter portal Application"
    5. Any ideas.
    P.s. Everything works fine on Windows Server 2003 32 bit

Maybe you are looking for

  • Pro 9 Users Receive "There was an error opening this document. The file is damaged and could not be repaired."

    Users with Adobe Acrobat 9 Pro (Windows XP) are not able to open PDFs created on the server. They receive the error message: "There was an error opening this document. The file is damaged and could not be repaired." Even if the users save to disk and

  • Exception report based on dates

    dear all, we all know that in order for us to do an exeption report it has to be based on numbers, has anyone try doing this based on a date before? a key figure date that is. thanks in advance for your reply.

  • Can the Sound Object control two sounds at once?

    I have a sound object that I want to control two seperate sounds in different movie clips..one is intro music which lives on the main shell of the website along with the sound object. This fades out into a loop that lives on another movie clip that l

  • Proxy / Cache server for flash content / videos / stream

    hi there, i've tried to search the web, but so far no straight answer... we are looking to implement/deploy a proxy server to cache and then serve flash content (published in the internet), so we can reduce our internet bandwidth utilization. Windows

  • Error on using utl_mail in 10G (10.0.1.2)

    I am try to use the utl_mail function in datbase 10.0.1.2 using this declaration but when i trye to execute it returns this errror : ERROR LINE 1: ORA-29261: error argument ORA-06512: a "SYS.UTL_TCP", line 28 ORA-06512: a "SYS.UTL_TCP", line 257 ORA-