Jdeveloper 9.0.3 Apps works well on 9iAS but not on 10g AS

We have application built in Jdeveloper 9.0.3 it is working well on 9i AS R 2 but when we deploy it on 10 AS R1 it is deopled no error but all JSP function are giving error at run time
pleas help

JDeveloper 9.03 does not support 10g application server.
http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html

Similar Messages

  • Flex mobile 4.6 app works inside flash builder but not in android emulator

    Originally posted on stackoverflow: http://stackoverflow.com/questions/8663892/flex-mobile-4-6-app-works-inside-flash-builder- but-not-in-android-emulator
    I have a basic flex mobile 4.6 app and it works fully fine in the flash builder built-in emulator using an android device profile like aria...
    It also launches fine in the android emulator but one particular view shows blank (and this view works fine in flash builder).
    Before I get in to many details of the view are there any categorical gotchas that can be causing this?
    I can't seem to get the trace statements from the app to show in 'adb logcat'. It seems I need to compile a debug version of the apk but I don't know how to do this. I use the 'Export Release Build' from the Project menu in flash builder and it doesn't seem to have an option for debug=true.
    The problematic/blank view basically uses the stagewebview and iotashan's oauth library to call linkedin rest apis... A different (and working) view can make restful web service calls in the emulator fine, so it doesn't seem to be an internet permission.
    The source code contained in the problematic/blank view is almost identical to the tutorial found at:http://www.riagora.com/2011/01/air-and-linkedin/
    The differences are: a) The root tag is a View b) I use StageWebView instead of HtmlContainer c) I use my own linkedin key and tokens.
    I would appreciate it if someone can provide me with some pointers on how to troubleshoot this situation. Perhaps someone can tell me how to debug the app while running in the emulator (I think I need the correct adt command arguments for this which matches the 'Export Release Build' menu but adds the debug param?)
    Thanks for your help in advance.
    Comment Added:
    I suspect that this has to do with connections to https:// api.linkedin.com and https:// www.linkedin.com. The only reason I can think of that the same code is not having issues inside of Flex Builder but indeed having issues in the Android emulator is something to do with certificates. Any ideas?

    Thanks er453r,
    I have created a project that clearly reproduces the bug.  Here are the steps:
    1) Create a UrlLoader and point it to https://www.google.com (HTTPS is important because http works but HTTPS does not)
    2) Load it
    3) Run in Flash Builder 4.6/Air 3.1 and then run in Android emulator.  The former works with an http status 200.  The latter gives you an ioerror 2032.  I am assuming what works in Flash Builder is supposed to work in the Android Emulator and what what works in the emulator is supposed to work in a physical device (plus or minus boundary conditions).
    I see a certificate exception in adb logcat but not sure if it's related...
    Here is the self contained View code which works with a TabbedViewNavigatorApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        xmlns:ns1="*"
                        xmlns:local="*"
                        creationComplete="windowedapplication1_creationCompleteHandler(event) "
                        actionBarVisible="true" tabBarVisible="true">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  protected var requestTokenUrl:String = "https://www.google.com";
                                  protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader = new URLLoader();
                                            loader.addEventListener(ErrorEvent.ERROR, onError);
                                            loader.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                                            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                                            loader.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatusHandler);
                                            loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                                            var urlRequest:URLRequest = new URLRequest(requestTokenUrl);
                                            loader.load(urlRequest);
                                  protected function requestTokenHandler(event:Event):void
                                  protected function httpResponse(event:HTTPStatusEvent):void
                                            label.text += event.status;
                                            // TODO Auto-generated method stub
                                  private function completeHandler(event:Event):void {
                                            label.text += event.toString();
                                            trace("completeHandler data: " + event.currentTarget.data);
                                  private function openHandler(event:Event):void {
                                            label.text +=  event.toString();
                                            trace("openHandler: " + event);
                                  private function onError(event:ErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("onError: " + event.type);
                                  private function onAsyncError(event:AsyncErrorEvent):void {
                                            label.text += event.toString();
                                            trace("onAsyncError: " + event);
                                  private function onNetStatus(event:NetStatusEvent):void {
                                            label.text += event.toString();
                                            trace("onNetStatus: " + event);
                                  private function progressHandler(event:ProgressEvent):void {
                                            label.text += event.toString();
                                            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
                                  private function securityErrorHandler(event:SecurityErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("securityErrorHandler: " + event);
                                  private function httpStatusHandler(event:HTTPStatusEvent):void {
                                            label.text += event.toString();
                                            //label.text += event.responseHeaders.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function httpResponseStatusHandler(event:HTTPStatusEvent):void {
                                            label.text +=  event.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function ioErrorHandler(event:IOErrorEvent):void {
                                            label.text +=  event.toString();
                                            label.text += event.text;
                                            trace("ioErrorHandler: " + event);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="label" y="185" width="100%" color="#0A0909" horizontalCenter="0" text=""/>
    </s:View>

  • Is it possible http connection work well in simulator but not in mobile?

    i am developing database three tier client/server application.
    i want to connect mobile application to databse server via servlet page using tomcat server.
    my code is working well in java wireless toolkit and it can download and upload data using my servlet page in which i had used JDBC connectivity but when i am installing same JAR file into Nokia 6030 it will gives me error like java.io.IOException: error in http operation. i had used this code to establish connectivityhcon = (HttpConnection)Connector.open(url, 3);
    hcon.setRequestMethod(HttpConnection.POST);
    hcon.setRequestProperty( "User-Agent","Profile/MIDP-2.0, Configuration/CLDC-1.0");
    hcon.setRequestProperty("Content-Language","en-US");
    hcon.setRequestProperty( "Content-Type", "application/x-www-form-urlencoded" );
    dos = (DataOutputStream)hcon.openDataOutputStream();               
    byte abyte0[] = data.getBytes();      
    dos.write(abyte0);
    dos.flush();
    dis = (DataInputStream)hcon.openDataInputStream();
    while((ch = dis.read()) != -1)
               response = response+(char)ch;
    if(hcon.getResponseCode()==200 && !response.equals("ERROR"))     
         setData(response);
    else
         errorAlert("Server Error","Server can not handle your request at this time, Error msg : " + response);in this code i am sending data to server at url where i have used servlet post method this method work well in simulator but when i m instaling this program into deveice request generated from mobile didn't came to servlet.
    whe i am browsing same page's get method through WAP in mobile it is working but thruogh application not connecting.
    is there any more setting require to browse url via application like in Accesspoint proxy server of provider or i need to change code?.
    If anybody having the solution then please send me.
    thanx .
    jasmit vala.
    [email protected]

    Hi,
    I am also facing the same problem?
    Have u got any solution?
    pls let me know
    its urgent
    thanx in adv.
    Regards,
    Raj

  • Some games and apps work on nokia n8 but not on no...

    i have a nokia c7 and i just went to the ovi store to download need for speed shift HD but it said that it was not available for my set but when i set the phone as n8 it said your phone is set
    why? they both have same os and almost the same hardware with the 3d accelerometer and all
    the RAM is same the graphic capeabilities of both phones are same thenwhy and this not only for this game for a number of apps

    699taha wrote:
    Hello did you try to download the game? CAN YOU DO THIS FOR ME PLEASE? just set your phone as n8 send the link of the game to your phone and try to download and then run it THANK YOU!!!!!!..... PLEASE TELL ME IF WORK OR NOT
    Need for Speed Shift is now available in Ovi Store for C7. It is named NFS Shift instead, and unfortunately, it is not free.
    IMO, Need for Speed Shift is free only for N8 was as a form of sales marketing technique to differentiate the product (N8, as an Nseries is suppose to be a flagship device anyway) from other Symbian^3 devices. I'm not sure why they can't launch paid version of NFS for C7 earlier, probably technical issue maybe. I wanted to buy but I bought GT Racing instead, since it is available from the beginning.
    I faced similar issue that certain apps are available to N8 but not to C7, you can email Ovi support to ask them why, basically I forgot what they replied me lol.

  • Same page with tables works well on IE but not on Firefox or Safari

    This qs may have been asked already but I am new to the forum.
    I have created a page in DW using tables and everything fits beautifully in it. It works really well when tested on IE but all the alignments are way off on Mozilla Firefox and Safari(mac). I cant figure out why this is happening. I would like to site to work well on all 3 browsers.
    here is the page: http://3beespaperie.com/casablanca.htm
    as you can see, the top of the main photo should line up wiht the top of 'details'.  same with http://3beespaperie.com/rajkumar.htm where the top of the photo is in the same table and row as that of the orange text on the right.
    please help,
    Thanks

    Please see the announcement at the top of the discussion list for this forum.  Pick the Dreamweaver General Discussion forum from it, and repost your question there.

  • FCP Quicktime Movies works well in iDVD, but not in DVDSP

    Hello,
    I work in a film school with several iMac & PowerMac editing suites running Final Cut Studio 2.
    Every computer is set up exactly the same way, yet we are having odd problems with DVDSP on one of the PowerMacs.
    From FCP6, we export self contained quicktime movies, that we then Compress, and then import into DVDSP. This system works well on all of our new iMacs, but on the 3 year old PowerMac, the resultant DVDs that it burns do NOT playback on any DVD Players at all.
    Yet strangely, when I take the same QT Movie into iDVD on that computer, it burns a perfectly good DVD.
    I have even tried bringing the QT Movie files and Compressor files from the Power Mac and transfer them onto an iMac and have been able to burn them fine that way as well. This is occurring with all the FCP projects on this computer.
    Any help would be much appreciated,
    Sincerely,
    Marc Griffin

    It could be a few things, but it may be that the drive itself is dirty or going. It sounds strange but there were people on the board who ran into issues where they could burn the DVD but not play it back on the same drive. Could be something became corrupted. Also people have noticed some strange things happening if an install of Studio 2 was done over a prior installation - it seemed to be most reliable by doing a fresh OS install then installing 2. Also does the computer have all the updates to the software? Are all the computers running the same OS? Have you deleted prefs and repaired permissions?
    Also check your settings on the PowerMac, are you doing a proper build/burn? Did you set a first play? Are you using the same type of media?

  • Apps work in one location but not another

    Some apps (iheartradio and tvguide) work fine from my home wifi, but not in another wifi area (at work, which has better wifi).  Other apps such as pandora work fine at both locations.  What is the difference and how can I get all apps to work everywhere?

    It's entirely possible that your employer has blocked certain ports on the corporate firewall, which will prevent some apps from working.

  • App working in preview/ADL but not working in .app

    Hi, so I've been testing my code with the preview in
    Dreamweaver and also using the ADL terminal command on my Mac at
    work and the app I've been coding works really well when testing
    through either of those two testing interfaces. But when I actually
    create the .air file and install it, my app just hangs at my
    loading screen. Is there anything specifically that would cause
    this? I can post the code if someon needs it.

    Could your app. write out a log file to find out exactly when
    it hangs?
    -ted

  • Office Web Apps - working in other browsers but not Internet Explorer

    Hi there,
    I have office web apps on my SharePoint 2013 environment.  The previews work file when hovering next to a document but if I try to open it, I get "Sorry, we ran into a problem".  It looks as though Excel files open okay but I
    have tested Word and Powerpoint documents and I get this error.  Also, it only appears to happen in Internet Explorer - Google Chrome and Firefox are okay.  Any ideas?

    Thanks for the advice.  I installed the hoftix (on the OWA server) and now it appears to really be broken - nothing is opening using office web apps anymore.
    I found this blog with the same errors I am getting - I'm guessing I will need to uninstall etc. too?? 
    http://blogs.technet.com/b/dodeitte/archive/2013/03/29/issue-with-automatic-updates-enabled-amp-office-web-apps-server-2013-update.aspx

  • Upload files from my app works fine in JDev but NOT on app server???

    i guys,
    I'm using jdeve 10.1.2. and adf bc's. So here's my problem:
    In my application i need to allow for the upload of files from user's computers. This works perfectly fine from jdeveloper but when i deploy my application on the application server i get the following error:
    JBO-26041: Failed to post data to database during "Insert": SQL Statement "D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)".
    D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)
    For some reason the system cannot find the path. This is most frustrating as it works perfectly fine when run from jdeveloper.
    Any ideas would be most welcome.
    Thanks in advance,
    Newbe

    Hi Frank,
    Thanks for the response. I've consulted with our server guy and he says that there are no read/write privileges. Jdev is not on the server.
    I'm really stumped by this so if you have any ideas, I'd really appreciate it.
    Happr New Year to you,
    Newbe.

  • XNA app works on 8.1 but not 7.1

    Hello all,
       Weird happenings here, I have an xna game app that I rebuilt in visual studios 2013 ultimate edition and deployed it on windows phone 8.1 emulator with no issues, so it had worked on 7.1 and I assumed it still would, but when I submitted my
    app, it passed certification and then later today I got the email that it doesn't work with 7.1 devices, put the app in vs 2012 and sure enough it crashed on 7.1 devices, just wondering has anyone had this happen before and what would be the cause. The issue
    I am having is that I created custom content processors for some xml files and they are not being seen on 7.1 devices but they are being seen on the 8.1 devices......
    Any help is appreciated.
    Thanks
    Allen
    [email protected]

    Hi Allen,
    If I'm not misunderstanding, you mean that after rebuilding a WP7.1 project in Visual Studio 2013 Ultimate, this app will crash on WP7.1.
    >>The issue I am having is that I created custom content processors for some xml files and they are not being seen on 7.1 devices but they are being seen on the 8.1 devices
    Could you please clarify this issue?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Yes sir, that is exactly what I am saying.
    [email protected]

  • YouTube app works on iPhone 5 but not iPad Air. Keeps saying playback error. How can I fix this?

    youtube app and via Safari is refusing to work On my iPad air . Constantly getting a playback error......tap to retry. I've deleted it and reinstalled it, forced it to close down, turned ipad off but nothing has worked. however it's working perfectly on my iPhone 5!!!
    is there anything I have done wrong or a way to fix it?
    thankyou

    Update to iOS 7.1.1. Then bring it to an Apple Store if it isn't fixed.

  • I m using iPhone 6 64gb. one of the app works fine on wifi but not on 3g

    Snapchat doesn't work on 3g only on wifi. installed d latest update.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • 2 jdbc connections from a java application works ok to 9i but not to 10g

    Hi,
    I hava java swing application which opens one jdbc connection. Tha application has 10 classes all of which are in one package say app.someapp.pkg1. This works ok.
    I am trying to integrate a second java component which provides a drilldown JTree interface to the user. The second component has 6 classes and has its own package app.someotherapp.pkgA. The second java component also opens a JDBC connection.
    If both the jdbc connections point to a common 9i database it works fine.
    If both the jdbc connections point to a common 10g 10.0.2.0.0 database the second component fails to open the conection.
    Some static variables in the two packages may be getting overloaded i.e connection. Should this matter even though the packages are different.
    Are there any issues in opening a 2nd connection to 10.0.2.0.0 using JDBC.
    What might I be doing wrong can anyone suggest a line of attack
    Saugato

    Dear All
    IT WORKS FINE . Pls disregards this thread
    I misinterpreted the ORA-02019 error message. The 10g instance was missing a database link to a 3rd remote database . The 9i instance had this database link hence was not complaining.
    The following error was thrown when a select was performed on a table refred to using the database link.
    java.sql.SQLException: ORA-02019: connection description for remote database not found
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)

  • Distributed Transaction Sample works fine on 9i but not on 10g

    See my previous two posts about the dll error.

    What are the exact steps you took to resolve this problem. I gave the directory permissions that would let worst hacker in the world in. Oracle still cant find this dll. It is there just not found.
    ASP.NET - Full Control
    IUSR - Full Control
    IWAM - Full Control
    Windows XP
    Thanks,
    Dave

Maybe you are looking for

  • I wanted to update my itunes and it didn't update and now it wont open so i had to uninstall it and it wont install now at all can you please help?

    Hi I turned on my laptop this evening to import a new cd but it asked me if i wanted to download the new version of itunes so i went ahead to update it but it failed to update then it failed to open at all, and and runtime error keeps popping up but

  • FORMULA=USING/TOTAL IS NOT WORKING IN BPC NW.

    Hi,    I am doing Migration project from  BPC MS to BPC NW 7.5. In this I am not able test the Allocation formula. FORMULA=USING/TOTAL. Here in this  Total is not working. The final result same as USING combinational value. The formula is working for

  • Security solutions - no remote wipe Freeware

    Hi, I have an E61 and I am amazed by the number of different security solutions for locking the phone, sending thief-finding text messages, remotely turning on a siren and all sorts of fancy gadgets. I´m equally amazed by the fact that up to now a se

  • Tax When capturing AP invoice

    Hi Gurus We are getting the following situation: The supplier charge us 2 service in one line. A portion of the service is vatable and the rest tax exempt. The Purchase requisitioner does not know the split at the time and raise it as fully vatable.

  • Embedded fonts still print garbage to any printer

    Hello, I'm using Acrobat Pro XI 11.0.08 and even though I can't find anything wrong with the document or settings I'm using, I still can't print without getting font substitutions to garbage characters. Preflight shows all fonts are embedded, but tha