Jdev 1013 + service update 3 + uix migrate

Hello,
I have just installed jdev 10.1.3.0.4 with Service Update 3, but I cannot install UIX Migrate Tool. I don't see it in 'Official Oracle Extension and Updates' list in 'Check for Updates' menu, and when I'm trying to install it from local file, it says, that I don't have some extensions installed, but doesn't say which ones. What should I do?

If you are using templates in your UIX pages, dont worry about the conversion tool. When it hits the template it comments that section out, which is basically your whole page.
If you are not using templates, please post how the conversion went.
thanks
Kelly

Similar Messages

  • After Service Update can't connect to ADSL Dialup ...

    I received a 'Service Update Completed' notification e-mail this morning (16/7/11).
    From 14/7/11 I cannot connect to the BT Dialup Server. Attempting to connect completely freezes the PC with no messages. Ctl/Alt/Del will not respond and the PC must be rebooted!
    This occurs with Windows 98 and either an internal PCI ADSL modem or BT-supplied SpeedTouch 330 USB modem.
    I have three completely separate PCs all using ADSL modem connection via the Dialup Server: two using Windows 98 and one using Windows XP.
    The Windows XP system still connects successfully to the Dialup Server via the same telephone socket, so there is no problem with the line.
    For all three systems an ADSL connection with the exchange is established successfully - but with the PCI ADSL modems this process is taking 10/20 secs longer than before, with several 'retries'.
    The SpeedTouch dialup application crashes about 1 or 2 seconds into the process with the progress bar showing about halfway, but with no messages.
    My evidence shows two completely separate PCs failing - no software or Internet connection configuration setting changes have been made (For over 5 years!)
    I suggest that a change in the ADSL interface and/or protocol handling at the exchange is now causing an unhandled fatal error in the W98 Internet connection software and/or ADSL modem driver.
    Have the updates been tested with BT SpeedTouch hardware/software under W98?
    This is a serious problem!
    [ Service Request Ref: VOL01152535189404 15/7/11 (Telephone support) ]
    Update 18/7/11
    This morning an ADSL connection with the exchange can no longer be made via the internal PCI modem: it cycles through 'Attempting to activate line -> Training -> Channel analysis -> (Exchange) -> Attempting to activate line.......
    An ADSL connection is still achieved using the SpeedTouch 330 USB modem, but attempting connnection to the Dialup Server still freezes the PC.

    Thanks John46 and Seab20 for your interest and comments.
    The irony is that I've had very reliable broadband with my 'antiquated' software and hardware for the last 6 years but this stopped working instantly following the Network Upgrade!  It was particularily annoying to receive an e-mail from the BT Retail Migration Team boldly announcing: 'Good News - we've upgraded our network in our area'.  It's certainly not good news for me! (And I suspect others).
    Anyway, I have 'given in' and set up a BT Home Hub 2.0, connected to my Windows XP system via Ethernet.
    The problem now is that the ADSL speed is severely limited - a major 'downgrade'!
    BTSpeedTester reports:
    IP Profile = 250Kbps
    Best Effort Test: Download = 224K, Upload = 501K  Yes the download is less than upload!
    What I suspect has happened is that in the periods of letting the SpeedTouch and PCI ADSL modems attempt to connect, their inability to synchronise reliably has forced the IP Profile to this very low value. There seems no way it will attempt to reset - leaving the Home Hub on for over 2 days had no effect.
    It seems that the line might need to be 'reset' to start a new 10-day setup period.
    This, to me, indicates poor design of the ADSL self-adaptive software. Clearly, such an anomolous situation has not been anticipated.
    I reported this latest situation on 20th July. Since then BT support has not responded - not even a courtesy reply saying they are investigating.
    I'm afraid this is typical of previous experience - the Team are quick to respond and refer you to 'solutions' which are of no relevance, but once the problem is in their court they go quiet!

  • SOAPMessage dealing in runtim with jdev 1013

    Hi All,
    i have a problem in dealing with SOAPMessages in jdev 1013.
    the problem as follow...
    i have an MMSC application that send and recives MMS for mobile applications, we also have web UI for sending and receiving the MMS
    the Application uses servlet in receiving the request and sending the response......
    the response is a SOAP message
    the application is running somthly on any other IDE such as intllegai, but when running the application on jdev 1013 i have error in retreving the mesages...what happend that the oracle deal with soap messages transferd in runtime as oracle.j2ee.ws.soap....but our application deal with the soap as javax.xml.soap.soapmessage object
    the calling of he servlet is done using SOAPConnection as
    SOAPConnection conn = SOAPConnectionFactory.newInstance(). createConnection();
    SOAPMessage sMsg = conn.call(soapMessage, servlet_url);
    i trace the response , it is correct in the servet, but when converting the response to SOAPMessage it failes....
    so when i call writeTo method in SOAPMessage class, i have exception
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    sMsg.writeTo(output);
    the exception that i have is
    06/10/29 12:33:24 javax.xml.soap.SOAPException: Unable to get header stream in saveChanges
    06/10/29 12:33:24 at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChangesMimeEncoded(MessageImpl.java:576)
    06/10/29 12:33:24 at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:622)
    06/10/29 12:33:24 at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:686)
    06/10/29 12:33:24 at oracle.j2ee.ws.saaj.soap.MessageImpl.writeTo(MessageImpl.java:702)
    06/10/29 12:33:24 at com.eska.emmc.relay.vas.MM7Message.sendMessage(MM7Message.java:966)
    06/10/29 12:33:24 at com.eska.emmc.util.VASWrapper.retrieveNotifications(VASWrapper.java:383)
    06/10/29 12:33:24 at com.eska.emmc.subscriber.tags.ManageMessagesTag.doStartTag(ManageMessagesTag.java:67)
    06/10/29 12:33:24 at sub.mmessages._myMessages._jspService(_myMessages.java:70)
    06/10/29 12:33:24 at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    06/10/29 12:33:24 at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)
    06/10/29 12:33:24 at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
    06/10/29 12:33:24 at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
    06/10/29 12:33:24 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    06/10/29 12:33:24 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
    06/10/29 12:33:24 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/10/29 12:33:24 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/10/29 12:33:24 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/10/29 12:33:24 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/10/29 12:33:24 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/10/29 12:33:24 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/10/29 12:33:24 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/10/29 12:33:24 at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/10/29 12:33:24 at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/10/29 12:33:24 at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/10/29 12:33:24 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/10/29 12:33:24 at java.lang.Thread.run(Thread.java:595)
    anyboy can help resolving this problem....... how can i force the jdev not to use its owen soap class in runtime

    Hello,
    The easiest way to use SOAP over HTTP is to build a service usign the JAX-RPC API, for example you can expose easily a Java class as Web Service (SOAP) and this is based by default on HTTP.
    See Oracle Web Services section in the Documentation page.
    For example for attachments: Working with message attachments
    Can you check if this is possible to integrate to your application?
    Regards
    Tugdual Grall

  • Compile error after upgrade to jdev 1013 from 9052

    Hi,
    I just upgraded to jdev 10.1.3.0.4. We had this program compile correctly in jdev 9052, but is now erroring out during compile:
    Error(5,34): identifier expected (with enum highlighted), at the following line.
    import gov.epa.cdx.axis.security.enum.AuthMethod;
    Can you help me to correct this? Thanks.

    SU is a service update but that won't fix your problem.
    "enum" is a keyword in Java 5 and therefore may not be used in identifiers.
    In 9.0.5.2 you were compiling with JDK 1.4 I presume.
    Either change the package name or use JDK 1.4 for your project.
    Sascha

  • Windows 2012 R2 hyper-v integration services update - error code: 50

    Physical Host is a brand new Windows 2012 R2 with hyper-v role, VM is a Windows Server 2012
    I try to upgrade the integration services update, VM become unresponsive and I lost connection to it,  had to turn it off, afterwards it wouldn't boot.
    Tried F8 on the reboot and then switched to the command prompt to manually upgrade the integration services running the setup, but got an error (Error code: 50 )
    VM halts in the middle of booting up.
    saying: Please wait ...
    Anyone has any idea why it happened and how to fix this?

    Hi Seyed,
    Please try to follow the link below to install integration services manually :
    http://blogs.technet.com/b/virtualization/archive/2013/04/19/how-to-install-integration-services-when-the-virtual-machine-is-not-running.aspx
    Best Regards
    Elton Ji
    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.

  • CS Live Services Update Failed

    I'm trying to update my CS5 CS Live Services Update, but everytime I try it gets 2 seconds in and gives me an error. I've tried to read other discussions, but I'm not that tech savvy and I don't know what to look for to solve the problem. InDesign crashes everytime I open a file versus opening the program (Illustrator is starting to crash at times too) then the file and from the description on adobe's site this is supposed to help and it won't work.
    I don't have the original install CDs.
    I'm using Mac OSX 10.6.8 (poor college student can't afford the newest update.)
    I purchased my mac in August 2008.
    I have tried both through Help>Update and through the website link.
    I have two big projects due in the next week, I have got to figure out how to fix this.... HELP!!

    I'm trying to update my CS5 CS Live Services Update, but everytime I try it gets 2 seconds in and gives me an error. I've tried to read other discussions, but I'm not that tech savvy and I don't know what to look for to solve the problem. InDesign crashes everytime I open a file versus opening the program (Illustrator is starting to crash at times too) then the file and from the description on adobe's site this is supposed to help and it won't work.
    I don't have the original install CDs.
    I'm using Mac OSX 10.6.8 (poor college student can't afford the newest update.)
    I purchased my mac in August 2008.
    I have tried both through Help>Update and through the website link.
    I have two big projects due in the next week, I have got to figure out how to fix this.... HELP!!

  • CS Live Services Update for CS5 - Installation Failed

    Hello,
    When applying the latest updates using the AAM, I receive the following error: "Some updates failed to install - CS Live Services Update for CS 5 - Installation failed.
    In the install log, the summary lists
    the following
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ERROR: 5 Command ARKPatchCommand failed.
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul: Install failed
    The complete log is below.
    I have tried 2 additional times, including a restart, to to avail.
    Thoughts on what to do?
    Thanks,
    Daniel Ledingham
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.0.122.0
    OSX version: 10.5.8 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 55 miliseconds (0.055 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/dledingham/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS5-2/2.0.1
    Updating media info for: {273F2A32-EC95-4AF7-BF26-EF4A57368DC9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/dledingham/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS5-2/2.0.1/payl oads/AdobeCSXSInfrastructure2-mul-050810112728/AdobeCSXSInfrastructure2-mul-050810112728.d mg
    --------------------  END  - Updating Media Sources -  END  --------------------
    [       0] Tue Aug 24 11:08:54 2010  INFO
    Supported RIBS version range: [0.0.66.0,3.0.122.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Tue Aug 24 11:08:55 2010  INFO
    ______ Verify Dependency Subscribers ______
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {273F2A32-EC95-4AF7-BF26-EF4A57368DC9} Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul is: false
    Action string for  {273F2A32-EC95-4AF7-BF26-EF4A57368DC9} Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS5ServiceManager
    ::START TIMER:: [System check :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 2 miliseconds (0.002 seconds)
    [       0] Tue Aug 24 11:08:56 2010  INFO
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 0 miliseconds (0 seconds)
    Calling the custom action code for pre-install for payload {273F2A32-EC95-4AF7-BF26-EF4A57368DC9}
    ::START TIMER:: [Pre payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 0 miliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    [       1] Tue Aug 24 11:08:56 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    [       1] Tue Aug 24 11:08:57 2010  INFO
    CustomizedPatch property not found in database
    Beginning installation for payload at /tmp/.tempdirfBtHyPlu/Install.db
    [       1] Tue Aug 24 11:08:57 2010 ERROR
    5 Command ARKPatchCommand failed.
    [       1] Tue Aug 24 11:08:57 2010  INFO
    Completing installation for payload at /tmp/.tempdirfBtHyPlu/Install.db
    [       0] Tue Aug 24 11:08:58 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 2093 miliseconds (2.093 seconds) DTR = 1.91113 KBPS (0.00186634 MBPS)
    User specified overrideFile:
    Calling the ROLLBACK custom action code for pre-install for payload {273F2A32-EC95-4AF7-BF26-EF4A57368DC9} Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul
    ::START TIMER:: [Pre payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 0 miliseconds (0 seconds)
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [       0] Tue Aug 24 11:09:00 2010  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Tue Aug 24 11:09:00 2010 ERROR
    The following payload errors were found during install:
    - Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul: Install failed
    [       0] Tue Aug 24 11:09:00 2010  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 0 miliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 12276 miliseconds (12.276 seconds) DTR = 0.977517 KBPS (0.000954607 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ERROR: 5 Command ARKPatchCommand failed.
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul: Install failed
    Search the same string above to find when the error occured.
    Exit Code: 7 - Unable to complete Silent workflow
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hello Vineet,
    I did a complete uninstall (including the CS5 Clean Tool) and reinstalled MC CS5.  I ran the updater and everything seems to have updated properly.  Thanks for your help.  I was holding off on the reinstall because of the time involved with reconfiguring the apps, reinstalling plugins, etc. 
    Looking at the installer log, there appears to be some permissions related entries that were not present in logs of the failed installs.  Here is the relevant section of the log.
    ::START TIMER:: [Post payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In PostPayloadInstallProc
    Logged in userid (501)
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/cache' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/configuration' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/extensions' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/logs' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/preference' to '501'
    Changed Owner of '/Users/dledingham/Library/Application Support/Adobe/CS5ServiceManager/StageManager' to '501'
    Custom action return code: 0
    :: END TIMER :: [Post payload :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 3 miliseconds (0.003 seconds)
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 1053KB
    [       0] Wed Sep  1 12:51:48 2010  INFO
    Successfully installed 1 component:
    - Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul
    Total components repaired: 0
    Total components removed: 0
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{273F2A32-EC95-4AF7-BF26-EF4A57368DC9}] took 0 miliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 11917 miliseconds (11.917 seconds) DTR = 58.404 KBPS (0.0570351 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 0 warning(s)
    Exit Code: 0 - No error
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    I did run a permissions repair using the Disk Utility before downloading and installing the updates. I don't know if that helps, but I thought I'd include it.
    Thank you,
    Daniel Ledingham

  • Microsoft Intune Service update planned between July 22 and July 30

    Microsoft Intune Service update planned between July 22 and July 30
    We will be releasing the next service update for Microsoft Intune between July 22 and July 30. This Intune service update will deliver behind-the-scenes enhancements, allowing us to continue providing you with a high quality product experience. New product features will not be included as part of this service update.
    To see the specific timeframe for when your tenant will be updated, please visit the Microsoft Intune status page. You can identify the Service Instance that your Intune subscription is running on by opening your Intune administration console, clicking on the Admin tab and then selecting View Service Status. Your Service Instance will be displayed at the top of this page.
    Additional resources:Visit the what’s new in Intune page on TechNetSubmit feedback and...
    This topic first appeared in the Spiceworks Community

    Good morning ranatlas,
    We were able to resolve the issues you had with your service. We did do some extensive troubleshooting to isolate the slow speed issue. Please let us know if you have any more questions or concerns here on the forums. You were a pleasure to work with and our team wishes you a great day.
    Thanks again,
    Rachel_VZ

  • Jdev 1013  is not  working !

    Hello
    i dowlaoded Jdev 1013 and extracted it to the desired directory but when i start up Jdev it Gives this Error :
    java.lang.nullPointerException
    at oracle.ide.net.AlikeString.packStringArray(AlikeStrings.java192)
    etc..........
    at oracle.ide.IdeCore.startupImpl(IdeCore.java1049)
    ar oracle.ide.Ide.startup(Ide.java.672)
    at oracle.IdeImpl.Main.start(Main.java49)
    at oracle.ideImpl.Main.main(Main.25)

    I did a clean download of the Studio Download (with JDK) fro OTN this morning - everything works just fine. If you are having a problem please state exactly which download you choose for which platform.

  • Windows 2008 Hyper-v Guest - BSOD after Integrated Services updated

    Hi,
    Hyper-V single node with Windows 2012 R2 Datacenter - the VM had its Integrated Services update and rebooted properly. After that, Windows 2008 start and shows BSOD as listed below - safe mode doesn't work. Any tips?
    Vinicius Deschamps

    Hi deschamps,
    Is the VM brand new setup ?
    Did you try to attach the VM's VHDx file to another new created VM ?
    Also you can try to mount the vhdx file and copy Dump File (default path  %SystemRoot%)then analysis it :
    http://blogs.technet.com/b/juanand/archive/2011/03/20/analyzing-a-crash-dump-aka-bsod.aspx
    Best Regards
    Elton JI
    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.

  • Missing Descriptior with Toplink 1013 and Jdev 1013

    Hi guys,
    I keep getting the following error when I try to run my project:
    Exception [TOPLINK-6007] (Oracle TopLink - 10g release 3 (10.1.3.0.0) (Build 050912)): oracle.toplink.exceptions.QueryException
    Exception Description: Missing descriptor for
    The project is a Web Application with a Model and View/Controller projects. The Model has a Toplink project in it and I created the mappings, classes, and the sessions.xml for it.
    What am I doing wrong? This seems to work in Jdev 1012.

    * Does the sample client work ok when you use sessions.xml?
    * What is the sequence of steps you are taking to create view project and in which project you are getting the errors? A detailed sequence of steps will be helpful in reproducing this issue.
    * If you are running into this issue in your view project using ADF and your use case simply involves reading objects, perhaps you can try writing a plain sample client in java yourself to simulate the use case and see whether this client works.
    Also
    * Take a look at my response to your other question at Mutliple writeable mappings in Jdev 1013 and setup your mappings correctly.
    * If you are running into this issue in the view project with the use of ADF, then try regenerating the datacontrol and recreating your view project. Make sure your logging in the sessions.xml is turned on.
    Hope this helps.

  • How do I remove the apple service update

    from my computer??? I cannot update my itunes. And my pc cant locate it to erase it.

    Doublechecking before proceeding. Is that Apple Software Update (rather than Apple Service Update)?

  • Http-web-access.log en Jdev 1013

    Hi:
    In Jdev 1012 exist "jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\log", here appear HTTP 404 logs. But in Jdev 1013 don't exist this directory and I need view this logs.
    Can you help me?

    Hi John:
    In this directory only apper global-application.log, rmi.log, server.log and system-application.log and two directories with *xml. You know  if I need any configuration in the IDE.
    Thanks you :)

  • Cloud service update issue

    Hi Team,
    when we use cloud service update function to update a specific web role, 
    the message shows the role was updated successfully, 
    when we remote to that web role and found that the files in F(or E) the location where our application are deployed,
    didn't be updated actually.
    are there some known issues related this or  what logs can we check to diagnostic the problem.
    thanks in advance.

    Hello Baker,
    Thanks for posting here.
    Please refer this article which talks about update a cloud service.
    http://msdn.microsoft.com/en-us/library/azure/hh472157.aspx
    I hope that helps.
    Let me know if you have any questions.
    Best Regards,
    Sadiqh Ahmed

  • Unable to update zones after migrating from SRU13 to Solaris 11 Release

    When attempting to migrate to 11-release, I ran into a bizarre problem when I began to migrate my zones to the new format. It would appear that there is an erroneous and hardcoded pkg publisher somewhere in the toolchain. During a zoneadm attach -u:
    [Saturday, November 12, 2011 05:40:38 AM UTC] Sanity Check: Passed. Looks like a Solaris system.
    [Saturday, November 12, 2011 05:40:38 AM UTC] Zone BE root dataset: data/zones/rooter/rpool/ROOT/zbe-8
    [Saturday, November 12, 2011 05:40:39 AM UTC] Cache: Using /var/pkg/publisher.
    [Saturday, November 12, 2011 05:40:39 AM UTC] Updating image format
    pkg: 1/2 catalogs successfully updated:
    http protocol error: code: 400 reason: Bad Request
    URL: 'http://localhost:10000/za100/catalog/1/catalog.attrs'.
    [Saturday, November 12, 2011 05:40:51 AM UTC] ERROR: Updating image format failed
    Note that I do not have any such publisher configured:
    # pkg publisher
    PUBLISHER TYPE STATUS URI
    solaris origin online http://pkg.oracle.com/solaris/release/
    Any thoughts?

    In the global zone, run:
    # svcs svc:/application/pkg/system-repository:default svc:/application/pkg/zones-proxyd:defaultIf one of those services is not online, you will see this problem. If the service is in maintenance:
    # svcadm clear <service>If it is disabled:
    # svcadm enable <service>

Maybe you are looking for

  • Upgraded to snow leopard, now browsing SLOW can I reinstall?

    I wasn't having any real problems with Leopard, but when Chrome stopped updating flash for it, I decided what the heck, I'll upgrade (against my better judgement).  So, I ordered my Snow Leopard disk directly from apple.  Backed up my Mac with Carbon

  • Windows 7 Brightness and Function key not Working Properly

    i have HP 15-af024AU APU Quad Core A8-7410 - (4 GB DDR3,1 TB HDD) Noteboook and it  came with windows 8.1 preinstalled than i installed windows 7 ultimate. i have problem in Display Brightness i am not able to change Brightness by function key or by

  • Adobe Reader XI 11.0.07 freezes intermittently on Windows 8.1 when doing "Save As"

    Adobe Reader XI 11.0.07 freezes intermittently on Windows 8.1 when doing "Save As". This occurs when opening a file from Outlook or from the web. I have IE 11 and Microsoft Office 365 installed on a Toshiba Satellite P50. Windows and Office have the

  • Number of Rows in a Tree

    I think this should have a fairly simple answer, but I can't find it for the life of me. Is there somehow I can obtain the total number of rows in a tree control? With a listbox you can use the Property node "ItemNames" and just use an Array Size, bu

  • Help me with mail sending with servlets/jsp

    : doe any one have a clue as to how to send a mail via jsp/servlets.