JSP 2.0 support in JDeveloper?

Hi,
Does JDeveloper 10g support the JSP 2.0 spec.? If no, why are there JSP 2.0 tutorials here,
http://otn.oracle.com/sample_code/tech/java/codesnippet/jsps/simpletag/how-to-simpletaghandler.html#run
that are deployed to the OC4J server? Is the embedded OC4J server of JDeveloper substantially different to the production OC4J? Can anybody help please?

JDeveloper 10g (9.0.5) supports J2EE 1.3 - so no JSP 2.0 support yet.
OC4J has a preview version with J2EE 1.4 support. It's still not production though.
Check it out at:
http://otn.oracle.com/tech/java/oc4j/index.html

Similar Messages

  • Support for JDeveloper 10.1.3 on Windows Server 2008 64 bit OS

    Hello,
    We are using JDeveloper 10.1.3.3.0 (patch # 9879989) for R12.
    Would like to know support for Jdeveloper on windows server 2008 - 64 bit.
    Thanks,
    Swati.

    Hi Swati,
    Currently I am using Jdeveloper Patch#9172975 for R12.1.2 on windows server 2008 X64 and it works fine.
    As Jdeveloper Patch#9172975 is lower version then Jdeveloper Patch#9879989, Patch#9879989 should work on Windows Server 2008 64bit.
    Still I am not confirm about Jdeveloper Patch#9879989 on Windows Server 2008 64bit.
    Thanks,
    Laukik

  • WSS version supported in JDeveloper 10.1.3.3?

    What is the version of WSS(Web Service Security) that is supported in JDeveloper 10.1.3.3?
    Thanks

    AFAIK, 10.1.3.0:
    WS-Addr 1.0
    WS-CF 1.0
    WS-Events 2.0
    WS-Reliability 1.0
    WS Basic Profile 1.1
    http://www.oracle.com/technology/tech/standards/soa-standards.html
    Marc
    http://orasoa.blogspot.com

  • SMS support  in Jdeveloper 11.1.1.6

    Hi,
    Could you please help us know, whether SMPP receiver can be supported on JDeveloper Studio Edition Version 11.1.1.6.0. Presently the UMS adapter supports only email notifications. The whole SOA suite which we use is of version 11.1.1.6.. Our requirement is to receive SMS, and based on which services should be invoked.
    Thanks

    Hello, please read this article:
    Java / Oracle SOA blog: Lets SOA Suite UMS do your Application Messaging</title><link type='text/css' rel='styl…

  • When or If BPM 11.1.1.7 be supported by JDeveloper 11.1.1.7?

    Reference Page: http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/obpm/11g/r1/firstProcess/firstprocess_obpm11g.htm
    Following that simple page, it turns out JDeveloper does not support Oracle BPM (missing a huge feature). If you head to the following spot:
    This opens the Data Object window displaying available data objects that you can drag into the Parameters panel. Click on the hello data object and drag it into the parameters panel. Select the Editable checkbox for the new parameter.
    You will notice that drag/drop is not enable in JDeveloper 11.1.1.7, thus rendering BPM development impossible.
    I am wondering if or when BPM 11.1.1.7 will be supported in JDeveloper?
    For reference, I have seen this bug referenced in a different thread: https://forums.oracle.com/thread/2569315
    However there were no solution. Java 6 is no longer supported by Oracle, we are required to use Java 7 in order to get any of the support we pay Oracle for.

    Not sure I follow you and it's pretty clear that you have been misinformed.
    If you're using JDeveloper 11.1.1.7, you need JDK 1.6.  Go to http://www.oracle.com/technetwork/developer-tools/jdev/documentation/index-091111.html that says 11.1.1.7 corresponds to FMW 11.1.1.7 and WL 10.3.6.  The certification matrix shows these both need JDK 1.6.  The compatibility matrix that shows this can be reached by going to Oracle Fusion Middleware Supported System Configurations - > search for "BPM" on the page -> if you're in the 11g section, click on "xls".  This will take you to http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls.
    For JDeveloper, also make sure that you've installed the 32 bit version of the JDK and not the 64 bit version of the JDK.  This also has caused an issue with the drag and drop problem you are seeing.  Stuart Fleming addresses this here - https://community.oracle.com/thread/3515829.
    Dan

  • "JSP-compiling" on deployment from JDeveloper

    Hi
    Can i remove compilation for JSP-files on deployment from JDeveloper 903?
    When I'm compiling and deploying a project from JDev it tries to compile my *.jsp source files.
    - Why?
    And JDevs jsp-error-checking has BIG holes. (The pages runs well then OC4J-compiles them...) Some projects don't get trough while other projects with the same code style works fine for some reason.
    I'm using JDeveloper version 9.0.3.10.35
    Thanks,
    -Erik

    Yes you can.
    Go into the "Settings..." of your deployment profile for your project. --> <yourprofile>.deploy
    Under the "WAR File" click on WEB-INF/classes.
    On the bottom right you'll see the option:
    "How should the selected source files be deployed?"
    Here you can select: "As source files only" and it won't
    compile and deploy your class files.
    Hope this helps,
    -Chris

  • JSP ADF Tree Binding in JDeveloper 10g

    I am attempting to create a JSP hierarchical tree structure in JDeveloper 10g. I can successfully create the tree structure for two levels only. I need to be able to create a tree 5 or more levels deep. I have created an ADF Master Detail structure using the sample OE schema for three levels and to the best of my knowledge, I have set up the rules correctly using the Tree Binding Editor accessed by a creating a new binding under Create Binding > Input > Tree for the UIModel of the test web application I created. However, in the JSP page, I can only access the first two levels. The code I'm using is as follows:
    <c:forEach var="masterRow" items="${bindings.CustomerOrdersTree.rootNodeBinding.children}">
    <c:out value="${masterRow.CustomerId}"/> -
    <c:out value="${masterRow.CustFirstName}"/>
    <c:out value="${masterRow.CustLastName}"/><br>
    <c:forEach var="ordersChildRow" items="${masterRow.children}">
    <c:out value="${ordersChildRow.OrderId}"/><br>
    <c:forEach var="Row2" items="${ordersChildRow.children}">
    </c:forEach>
    </c:forEach>
    </c:forEach>
    The first two levels display fine, but the third level is not displaying. What syntax should I be using to traverse further levels of the tree binding? Is it even possible? Thanks.
    Note: I didn't connect any event handlers for collapsing or expanding data. I'm just trying to display everything right now.

    I have the nodeExpanded attribute on the second level, set up exactly as the first level. I have a toggleSelection method on the second level (View Object) as well. I've stepped through this method and the arguments are passed correctly and the transient attribute is updated correctly. I'm calling this method through a second DataAction like treeHandler, and this works as far as calling the correct method with the correct argument values.
    The breakdown occurs back on the JSP. Even though the transient attibute gets populated accurately according to the toggleSelection method, when accessing that attribute on the JSP, it returns a null value. I can access all the other attributes from the same View Object, except for the transient attribute. I'm not sure what else to try.
    I'm starting to doubt this is even the best solution for a tree structure. With the way Oracle's example is set up, you would have to nest so many if-then structures in order to keep track of all the nodeExpanded attributes and which data to display or not, and I anticipate view state issues and caching problems.

  • TimesTen support in JDeveloper

    Hi,
    Does anyone know if there is TimesTen support in JDeveloper or future releases of JDeveloper? E.g. defining a database connection in JDeveloper to a TimesTen data source?
    Ronald

    Hi Frank,
    Currently, I'm working on a Java project involved in implementing simulation processes. This typically concerns high-throughput and low-latency processes in which a lot of statistics have to be stored in a database to be available for analysis later on.
    In the old situation, the simulation logic was programmed (dispersed) in the simulation tool itself. To enable reuse, this logic will be implemented in Java components.
    As a start (pilot-phase), Log4J is used to log information (i.e. statistics) to console, files and also to a "plain" Oracle RDBMS. As the speed of the simulation in the simutation tool is increased a bottleneck occurs in the Java application. Not surprisingly; this is caused by disk I/O of Log4J.
    As a possible work-around, TimesTen is investigated to store log statements and statistics. I did several tests and it seems the performance increase is "only" 5x over the "plain" Oracle RDBMS. I asked some questions on the possible performance increase when using TimesTen on the TimesTen forum of OTN. It seems they can't give precise answers in relation to Java applications.
    As our project evolves it could very well be possible that we use JPA or a full-blown TopLink implementation to write/read statistics. I was wondering whether someone has experience in combining TimesTen with a persistency framework like TopLink.
    Thanks,
    Ronald

  • Apache Trinidad support in JDeveloper 10.1.3.2.0

    Hi everyone!
    My company recently decided to use Trinidad faces with JDeveloper. I installed the libraries like Frank described in http://www.oracle.com/technology/products/jdev/howtos/1013/trinidad/trinidad.html.
    I downloaded the libraries (...-1.0.0-incubating...), copied them to the jlib-directory of JDeveloper and added them with the Manage Libraries tool. Then I included them into my project, and changed the web.xml and faces-config.xml files like described in the How-To.
    The problem is, I do not have any visual support in the editor since, after changing the tags in my JSPXs (e.g. from af:frameBorder to tr:frameBorderLayout) Jdeveloper displays the error "Invalid parent element for element f:facet".
    JSPX looks like this:
    <tr:panelBorderLayout>
    <f:facet name="top">
    </f:facet>
    </tr:panelBorderLayout>
    What else do I have to configure to be able to use the Trinidad components in JDeveloper?
    Thanks for help,
    Thomas

    Update:
    I just discovered a really weird effect... I created a new project from the example-war-files that came with Trinidad... To my surprise now the editor displayed the .jspx from my other project, even though I did not change the slightest thing in that project. As well, the editor now doesn't mark the <f:facet> tag as being erroneous due to a wrong parent object anymore. However... when I try to compile it says "ClassDefNotFoundError:UIXComponentTag", a problem I encountered earlier, and solved by deleting and re-including the Trinidad-libraries to my project.
    So now the editor doesn't show me any errors anymore and displays the .jspx correctly, but I can't compile, whereas before importing the Trinidad example to a different project it happened to be vice versa.

  • Is the jsp:plugin tag supported in Weblogic 5.1?

    I am running Weblogic 5.1 and I can't get the <jsp:pluging> tag to work.
              The server is not even translating the tag to anything usefull. When I do a
              'View Source' in the browser, the tag is exactly as I wrote it in the page.
              Is this feature supported in 5.1. I've tried the phonebook example and it
              doesn't work either. All my other JSP pages work just fine.
              Any help would be appreciated...
              Steven Carter
              Senior Software Developer
              VideoSpheres Inc.
              Office: 613-270-9646 Ext. 3025
              FAX: 613-271-9442
              e-mail:[email protected]
              

    Thanks for your response! Yes it was a typo in the message :). Would you have any idea why it is not working for me? Any special configuration required? A property I don't have correctly set in the properties file? I've tried the phonebook example shipped with the product and it doesn't work.
              "Kumar Allamraju" <[email protected]> wrote in message news:[email protected]..
              I never tested it myself. But i think we do support
              in 5.1 . Shouldn't it be <jsp:plugin>
              Was it a typo?
              Steven Carter wrote:
              I am running Weblogic 5.1 and I can't get the <jsp:pluging> tag to work.
              The server is not even translating the tag to anything usefull. When I do a
              'View Source' in the browser, the tag is exactly as I wrote it in the page.
              Is this feature supported in 5.1. I've tried the phonebook example and it
              doesn't work either. All my other JSP pages work just fine.
              Any help would be appreciated...
              Steven Carter
              Senior Software Developer
              VideoSpheres Inc.
              Office: 613-270-9646 Ext. 3025
              FAX: 613-271-9442
              e-mail:[email protected]
              [att1.html]
              

  • WebCenter Portal and Portlet support in JDeveloper 11.1.2 version

    Hi,
    When the WebCenter Portal and Portlet application creation will be available within JDeveloper 11.1.2 version ?
    Thanks
    Eli

    Thanks for your answer.
    My Requirements are:
    1) Develope a stand alone ADF FACES(JSF 2.0) application
    2) Develope a Portal using webcenter- We need to implement portlets by taking some of the functonality that was implemented in section (1) and use the Portlet-JSF bridge to create the portlets.
    Basically, we need to support JSF 2.0 standart.
    As I understood I must use the JDeveloper 11.1.2 version as it support the JSF 2.0. but what about the Webcenter and the Portlet-JSF bridge to support JSF 2.0 ?
    I will be happy to get a clarification for those requirments.
    Thanks a lot !
    Eli

  • Java 6 support in JDeveloper

    Does JDeveloper 10.1.3 support Java 6?

    Rolled back to version 5 to run JDev on. Java 6 is now one of the J2SE versions but I have some issues with it. Main one is that it won't recognise classes from from manually added libraries/jars. Guess I'll wait for official support of the non-bate release.

  • Availaibility of EJB3 support in JDeveloper 10g

    Hi,
    I found online demos such as this one http://www.oracle.com/technology/products/jdev/101/viewlets/101/ejb30entitybeanviewlet_viewlet_swf.htm impressive. Excactly what I need !
    I'd love to test it in real life but I can not access the EJB3 related features in the most recent JDeveloper 10g 10.1.3 I found on the web site.
    Is there someting to configure or an addon to install ? Do I have to wait for another release (when) ?
    Bernard

    Hello Bernard,
    The support of EJB 3.0 development/deployment inside Oracle JDeveloper will be in the release 10.1.3 production that should go out in Summer 2005.
    Regards
    Tugdual Grall

  • Maximum Number of Columns that adf table can support in JDeveloper 10.1.3.1

    Hi All,
    I'm using Toplink 10.1.3.1 . In JDeveloper 10.1.3.1 .
    I'm Trying to display the columns of a table which is having the more than 380 columns.
    When I'm trying to display the columns in adf table, it is getting hanged. The console of the displaying that "too long".
    If Execute the Application with nearly 50 columns, It is working fine.
    what is the Maximum number of columns that adf table can support. Is there any other solution for my problem.
    could anyone help me out.
    Thanks in advance,
    regards,
    Satish

    Hi,
    I am not sure there exist a limitation in columns and if the application hangs then this probably is a bug either in the business service or the view (which can also be due to that the server runs out of memory because of the created object instances).
    However, in my opinion a table with 380 columns is a loud cry for denormalization
    Frank

  • JSP / IAS 1.0 /EJB /Jdeveloper 3.1

    Hello:
    We upgraded to IAS 1.0 on Solaris Box. Deployed a EJB from JDeveloper to oracle8i. Ran the Snippet program successfully.
    Copied the snippet program into a jsp file. tried to run from IAS. It gives a error unable to import oracle.aurora.jndi.sess_iiop.*.
    Where do I copy the Client Jar / Zip files in
    IAS. Is there something as CLASSPATH..
    I would appreciate the input.
    Thanks,
    null

    Can you describe what the test is doing?
    Calling the browse page?
    Are the JSP pages verbatim as the wizard generated them,
    or have you made changes?
    What application module pool mode are you using?
    If you are using reserved mode and never ever checking back the
    application modules in, you could end up using a lot of memory
    for sure. This is not by design of course, but might be an
    explanation for what you are seeing.

Maybe you are looking for

  • HP Simplepass 2011 no longer working in IE

    Hello, I'm using a Dv7 notebook and I recently changed a setting, and unfortunately cannot find my route back to it. I was resolving another issue and changed a few settings specifically in my IE browser (9, 64 bit) and now I can use my fingerprint s

  • Issue with Exporting to PDF appears to be saving Automatically

    Currently under SAP Business One Version 2007A SP:01 and PL:09 On Exporting any report or document using the PDF  button on the Toolbar Open's up PDF  viewer showing the document, but also appears to automatically save a copy into the path of the "Pi

  • Using an external monitor with my clamshell

    Hi there, I was wondering if I can use an external monitor iwith my tangerine clamshell. If so, what adapters do I need to purchase. Thanks

  • Permissions to modify SQL Agent Jobs

    Permissions on SQL Server Agent I would like to assign the permission to user ,who can edit all SQL agent job(even own by others) without assigning the sysadmin role. is it possible? regards EA

  • Dynamic Parameter only showing 1000 records when Crystal report is run.

    I have created a crystal report using ODBC access to a table that has 3000 records.  I created a dynamic parameter to pull a list of all the Customer ID's in a customer table and the parameter will only show the 1st 1000 records.  In addition I canno