10g Developer Preview

After repeated attempts to download JDeveloper 10g 10.1.3, I'm finally giving up. I managed to find a couple of paths through the Oracle site to get to this download. Both of these produce "Sorry, this page was not found. (ErrorDocument 404)" errors, under both Firefox & IE.
I'm interested in evaluating JDeveloper for a reasonably significant commercial project, and hoping that somebody at Oracle will respond to this posting.

You are correct ClassDescriptor should now be used in place of Descriptor; RelationalDescriptor can also be used for relational projects.
Currently you will have to cast to avoid the deprecation warning.
i.e.
ClassDescriptor descriptor = (ClassDescriptor) project.getDescriptor(myClass);
Renaming/moving/deprecating classes requires this to maintain backward compatibility until the classes can be removed in a future release.
ClassDescriptor subclasses Descriptor, so using Descriptor will continue to work, and any API referencing Descriptor must remain so for backward compatibility.
I believe the only methods that were changed (not just deprecated) were Project.getDescriptors() (from Hashtable to Map) and Descriptor.getPrimaryKeyFields() (from Vector to List).
In general it would be a good idea to always use the collection interfaces in referencing TopLink structures.
Sorry for the inconvenience, we always try to keep backward compatibility issues to a minimum, but sometimes they are unavoidable.

Similar Messages

  • Where I can download the old OC4J 10g Developer Preview 1 to 3?

    I need the aqapi.jar from these old versions of OC4J. Any help will be greatly appreciated!

    Dear Eric,
    Does that mean that using DipsStartupClass (and BEA MDB) with aqapi13.jar from Oracle 9i R2 does not support transactions?
    I thought (and readme states), that xa-compliant-oracleaq shall support TX and XA?
    Nevertheless, I couldn't get transactions working (e.g rollback in MDB).
    Do you really mean that this is the reason because of aqapi.jar?
    aqapi.jar seems not to be compatible with DipsStartupClass anymore.
    Anyways, reading more and more about OC4J it sound that the built in JCA 1.5 adapter supports OJMS (AQ).
    If Oracle managed to get a really working AQ adapter into OC4J, shouldn't it also be possible to deploy "the" AQ JCA adapter into BEA WebLogic?
    I can only find flyer docs, but not any files or good documentation how to get that integration working.
    Maybe Oracle does not want to support that? :)
    Btw, as to Oracle 10g Streams AQ: AQ seems to have changed comletely in 10g; I do not really expect to get it working with DipsStartupClass :)
    We had to make a cut today anyways. All weeks lost :(
    Regards
    Thomas

  • 10g Developer Preview (R2)  -- too much reorganizing

    There has been quite a lot of class re-shuffling in the upcoming release, which is going to cost me quite a lot of time and trouble to react to.
    In particular, we are very much affected by changes to the Descriptor object, since we not only generate a bunch of descriptors at runtime, we actually generate code that generates descriptors. So now our generated classes will throw method-not-found exceptions when used with the new libraries.
    I just wanted to try out the new XML mapping things (which look very cool) but I find myself with days of conversion work...

    You are correct ClassDescriptor should now be used in place of Descriptor; RelationalDescriptor can also be used for relational projects.
    Currently you will have to cast to avoid the deprecation warning.
    i.e.
    ClassDescriptor descriptor = (ClassDescriptor) project.getDescriptor(myClass);
    Renaming/moving/deprecating classes requires this to maintain backward compatibility until the classes can be removed in a future release.
    ClassDescriptor subclasses Descriptor, so using Descriptor will continue to work, and any API referencing Descriptor must remain so for backward compatibility.
    I believe the only methods that were changed (not just deprecated) were Project.getDescriptors() (from Hashtable to Map) and Descriptor.getPrimaryKeyFields() (from Vector to List).
    In general it would be a good idea to always use the collection interfaces in referencing TopLink structures.
    Sorry for the inconvenience, we always try to keep backward compatibility issues to a minimum, but sometimes they are unavoidable.

  • JDeveloper 10g Developer Preview Bug

    Hi,
    Here is a misfunctionality that caused some hard times for me , so I decided to share it with you. Compiling files by means of right clicking on the projects pane successfully produces class files in the spesificied output directory of the project. But when working on more that one projects, compiling a class by right clicking on the source file in the code editor and rebuilding there producess the classes in the output directory of the currently selected project not the output directory of the project that the source file belongs. I hope I made my self clear enough.
    Regards...

    I am also seeing this.
    It is more releated to which window is active when you compile the program.
    If I could attach a damned image to this note, i could p[ost the screen shots, that clearly show it compiling 1 progrma when , it clearly states it is compiling another.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • 10g Dev Preview -- sub query problem

    I'm not sure if this is the place to report bugs or problems with the 10g developer preview. But here goes.
    I have some code that used to work. The idea is to find "task" objects that are not assigned to anyone, ie, have no "task assignment" records pointing to them. This code used to work. It creates an expression that when queried returns all Task objects that are not in the subQuery which fetches task assignments.
    ExpressionBuilder eb = new ExpressionBuilder();
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, new ExpressionBuilder());
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, new ExpressionBuilder());
    queryAssigned.addAttribute("ID", eb.get("task").get("ID"))
    return eb.get("ID").notIn(eb.subQuery(queryAssigned));
    When I use TOPLink 10g, however, I get the following error:
    [junit] Query: ReadAllQuery(com.marketsoft.workflow.Task)
    [junit] Local Exception Stack:
    [junit] Exception [TOPLINK-6015] (Oracle TopLink - 10g Developer Preview 3 (10.1.3.0 ) (Build 041116)): oracle.toplink.ex
    ceptions.QueryException
    [junit] Exception Description: Invalid query key [task] in expression.
    [junit] Query: ReadAllQuery(com.marketsoft.workflow.Task)
    [junit] at oracle.toplink.exceptions.QueryException.invalidQueryKeyInExpression(QueryException.java:491)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.validateNode(QueryKeyExpression.java:555)
    [junit] at oracle.toplink.expressions.Expression.normalize(Expression.java:2587)
    [junit] at oracle.toplink.internal.expressions.DataExpression.normalize(DataExpression.java:349)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:369)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:356)
    [junit] at oracle.toplink.internal.expressions.DataExpression.normalize(DataExpression.java:343)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:369)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:356)
    [junit] at oracle.toplink.internal.expressions.SQLSelectStatement.normalize(SQLSelectStatement.java:951)
    [junit] at oracle.toplink.internal.expressions.SubSelectExpression.normalizeSubSelect(SubSelectExpression.java:123)
    [junit] at oracle.toplink.internal.expressions.ExpressionNormalizer.normalizeSubSelects(ExpressionNormalizer.java:82)
    [junit] at oracle.toplink.internal.expressions.SQLSelectStatement.normalize(SQLSelectStatement.java:982)
    [junit] at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.buildNormalSelectStatement(ExpressionQuery
    Mechanism.java:223)
    [junit] at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.prepareCursorSelectAllRows(ExpressionQuery
    Mechanism.java:587)
    [junit] at oracle.toplink.queryframework.CursorPolicy.prepare(CursorPolicy.java:137)
    [junit] at oracle.toplink.queryframework.CursoredStreamPolicy.prepare(CursoredStreamPolicy.java:93)
    [junit] at oracle.toplink.queryframework.ReadAllQuery.prepare(ReadAllQuery.java:571)
    [junit] at oracle.toplink.queryframework.DatabaseQuery.checkPrepare(DatabaseQuery.java:367)
    [junit] at oracle.toplink.queryframework.ObjectLevelReadQuery.checkPrepare(ObjectLevelReadQuery.java:506)
    [junit] at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:537)
    [junit] at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:408)
    [junit] at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1977)
    [junit] at oracle.toplink.publicinterface.Session.executeQuery(Session.java:973)
    This maybe isn't that surprising. I see that the unbound ExpressionBuilders might be causing problems. However, which I switch to something a little bit more like what I see in the examples:
    ExpressionBuilder eb = new ExpressionBuilder();
    ExpressionBuilder assignBuilder = new ExpressionBuilder();
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, assignBuilder);
    queryAssigned.addAttribute("ID", assignBuilder.get("task").get("ID"));
    queryAssigned.useDistinct();
    return eb.get("ID").notIn(eb.subQuery(queryAssigned));
    In this case, it seems to generate messed up SQL where the table name goes missing:
    Exception [TOPLINK-4002] (Oracle TopLink - 10g Developer Preview 3 (10.1.3.0 ) (Build 041116)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-00903: invalid table name
    Error Code: 903
    Call:SELECT COUNT(*) FROM TASKS t0 WHERE ((t0.ID NOT IN (SELECT DISTINCT t1.ID FROM )) AND (t0.ITEMTYPE = ?))
         bind => [Task]
    Query:ReportQuery(com.marketsoft.workflow.Task)
    Local Exception Stack:

    Charles,
    I couldn't reproduce your problem. I used an employee example in which Employee has 1:m relationship with PhoneNumber. My code and sql are as follows:
         ReadAllQuery query = new ReadAllQuery(Employee.class);
         ExpressionBuilder emp = new ExpressionBuilder(Employee.class);
         ExpressionBuilder phone = new ExpressionBuilder();
         ReportQuery subquery = new ReportQuery(PhoneNumber.class, phone);
         subquery.addAttribute("id", phone.get("owner").get("id"));
         subquery.useDistinct();
         Expression expression = emp.get("id").notIn(subquery);
         query.setSelectionCriteria(expression);
    Vector employees = (Vector)getSession().executeQuery(query);
    SELECT t0.VERSION, t1.EMP_ID, t0.L_NAME, t0.F_NAME, t1.SALARY, t0.EMP_ID, t0.GENDER, t0.END_DATE, t0.START_DATE, t0.MANAGER_ID, t0.START_TIME, t0.END_TIME, t0.ADDR_ID FROM EMPLOYEE t0, SALARY t1 WHERE ((t0.EMP_ID NOT IN (SELECT DISTINCT t2.EMP_ID FROM PHONE t4, SALARY t3, EMPLOYEE t2 WHERE ((t2.EMP_ID = t4.EMP_ID) AND (t3.EMP_ID = t2.EMP_ID)))) AND (t1.EMP_ID = t0.EMP_ID))
    Shanno

  • JDeveloper 10g (10.1.3) 10.1.3 Developer Preview: can't start embedded oc4j

    With Oracle JDeveloper 10g (10.1.3) Developer Preview, I tried to make a simple jsp page as in this tutorial:
    http://www.oracle.com/technology/obe/obe9051jdev/visual_jsp/intro_to_visual_jsp.htm
    I only added some text then right-clicked file, selected Run. It didn't work:
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config>
    /usr/java/j2sdk1.4.2/bin/java -client -classpath /my/home/data/opt/jdeveloper/j2ee/home/oc4j.jar:/my/home/data/opt/jdeveloper/jdev/lib/jdev-oc4j-embedded.jar -Xverify:none -DcheckForUpdates=adminClientOnly -Xrs -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doracle.dms.sensors=NONE -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/server.xml
    [waiting for the server to complete its initialization...]
    05/04/08 09:02:24 Node started with id=127765687050882
    05/04/08 09:02:27 Auto-unpacking /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/applications/dms0.war... done.
    05/04/08 09:02:27 Auto-unpacking /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/applications/admin_web.war... done.
    Apr 8, 2005 9:02:29 AM com.evermind.server.XMLDataSourcesConfig parseRootNode
    INFO: Legacy datasource detected...attempting to convert to new syntax.
    05/04/08 09:02:37 Copying default deployment descriptor from archive at /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/connectors/datasources/datasources/META-INF/oc4j-ra.xml to deployment directory /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/application-deployments/default/datasources...
    05/04/08 09:02:37 Copying default deployment descriptor from archive at /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/connectors/OracleASjms/OracleASjms/META-INF/oc4j-ra.xml to deployment directory /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/application-deployments/default/OracleASjms...
    05/04/08 09:02:42 Copying default deployment descriptor from archive at /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/applications/admin_ejb.jar/META-INF/orion-ejb-jar.xml to deployment directory /my/home/marius/jdevhome/system/oracle.j2ee.10.1.3.3.51/oc4j-config/application-deployments/default/admin_ejb.jar...
    05/04/08 09:02:42 Auto-deploying - applications/admin_ejb.jar (orion-ejb-jar.xml had been updated since the previous deployment)...
    05/04/08 09:02:45 Auto-deploying - compiling and loading...
    05/04/08 09:02:45 done.
    05/04/08 09:02:46 Error initializing server: Error initializing ejb-module; Exception java.io.IOException: /my/home/data/opt/jdeveloper/jdev/bin/ojc: cannot execute
    05/04/08 09:02:47 Fatal error: server exiting
    Process exited with exit code 1.
    For a simple stand-alone java application, it worked.
    I have sun jdk 1.4.2 on Fedora Core 3.
    Don't know if there are similar bug reports, I searched this forum for "10.1.3" but the search page stays like that for ~2 minutes, then stops without showing anything.

    Hello Frank,
    Thank you for your suggestion. I tried that and I got the same error. Looked more careful at it:
    Exception java.io.IOException: /my/home/data/opt/jdeveloper/jdev/bin/ojc: cannot execute
    I tried to execute it manually:
    $ l /my/home/data/opt/jdeveloper/jdev/bin/ojc
    -rw-rw-r-- 1 marius marius 1.9k Dec 2 19:20 /my/home/data/opt/jdeveloper/jdev/bin/ojc
    $ /my/home/data/opt/jdeveloper/jdev/bin/ojc
    bash: /my/home/data/opt/jdeveloper/jdev/bin/ojc: Permission denied
    Did
    $ chmod a+x /my/home/data/opt/jdeveloper/jdev/bin/ojc
    which solved the execution. Now Hello word works.
    I got jdeveloper as a .zip archive, which doesn't keep unix permissions. The Linux distribution should be in .tgz archive, it would have avoided this problem.
    Thanks!

  • JDeveloper 10g 10.1.3 J2EE Edition Developer Preview download

    I was unable to download JDeveloper 10g 10.1.3 J2EE Edition Developer Preview. After passing syrvey, i'm gotting : "Sorry, this page was not found. (ErrorDocument 404)"

    I just tried to do this and got to the download page. Can you try again?

  • [ANN] OC4J 10g (10.1.3) Developer Preview is now available

    OC4J 10g (10.1.3) Developer Preview 3 is now available for download.This Developer Preview is J2EE 1.4 compatible and provides significant new features covering Web Services, general infrastructure services such as classloading, and the first glimpse of Enterprise Manager Application Server Control console to manage, deploy and monitor.
    http://www.oracle.com/technology/tech/java/oc4j/1013/index.html

    I am very sorry .Bu i found so many errors after i tried
    Oracle Jdeveloper 10g(10.1.3)
    I am using a machine with cou 3.0G, 1G DDrR memeory and an chinese windows 2000.I am enjoy using jdeloper9.0.5.2.But when I was trying 10.1.3,I created a normal jsp and made it.I get erros as follows :Error(1,44): [][][][][][][][]。
    I tried to lauch the oc4j server ,got the following errors:Error compiling D:\jdevj2ee1013\jdev\system\oracle.j2ee.10.1.3.3.51\oc4j-config\applications\admin_ejb.jar: Syntax error in source or compilation failed
    04/12/04 21:48:31 Error in application default: Error loading package at file:/D:/jdevj2ee1013/jdev/system/oracle.j2ee.10.1.3.3.51/oc4j-config/applications/admin_ejb.jar, Compile error: Syntax error in source or compilation failed
    04/12/04 21:48:31 done.
    04/12/04 21:48:31 Error initializing server: Error initializing ejb-module; Exception Compile error: Syntax error in source or compilation failed
    04/12/04 21:48:32 Fatal error: server exiting
    And i found all the buttons in this version 10.1.3 that show chinese are all [][][][][]........
    after these annoying errors ,I cant use it at all.Maybe I should wait for the production version.

  • New OC4J 10g (10.1.3.1) Developer Preview now available for download!

    A Developer Preview of the new OC4J 10g (10.1.3.1) release is now available for download.
    This developer preview release is fully J2EE 1.4 compatible and offers numerous enhancments, including full support for the final EJB 3.0/JPA specifications and Common Annotations (JSR-250) support in the Web container. It also provides a complete Web Services stack with support of JAX-RPC, annotations based development using JSR-181, and attachment support including MIME, DIME and MTOM with support of streaming for large documents.
    See http://www.oracle.com/technology/tech/java/oc4j/10131/index.html for details.

    I've tried http://localhost:8888, but I get a "connection refused."
    I have since found the answer. The site http://localhost:8888/ will indeed work. The problem was that the java_home for oc4j was pointing to a Java Runtime Edition of 1.5.0, and so oc4j was not starting, since oc4j only works with 1.4.x.
    Still have the missing info from the readme, though.

  • OracleAS TopLink 10g (10.0.3) Developer Preview 2 - NOW AVAILABLE

    Earlier this week we upgraded the 10.0.3 Developer Preview. The full set of functionality is documented in the release notes available on the preview landing page(http://otn.oracle.com/products/ias/toplink/preview/index.html).
    The functionality added in this refresh of the preview includes:
    - OC4J CMP Support
    - CTS 1.4 compliance
    -Support for hot/re-deployment of TopLink enabled CMP applications
    - Bean Pessimistic Locking - Have any of your beans locked on the database as you access them in a TX
    - Read-only entity beans are now supported
    - Enhanced integration with OracleAS for DMS capturing of performance statistics
    - Object-XML mapping enhanced:
    - Document Preservation - keep your un-mapped XML from being lost in the translation
    - JAXB Compiler - Generate an object model from schema with TopLink MW project
    - EIS/JCA mapping enhanced. Access your non-relational data source through OracleAQ or MQ Series
    - Object-Relational Enhancements
    - Value return from write - Use triggers to assign and return your PK or other calculated values on INSERT or UPDATE
    - Isolated Session Cache - Use TopLink to map your VPD/OLS managed tables
    - Conversion support for oracle.sql.TIMESTAMP & TIMSTAMPTZ
    - Generic history support - With versioning columns you can perform queries for past points in time using the HistoricalSession
    - Stored Function Support - Invoke your favourite stored function in the Oracle DB
    - Configurable query timeout support
    - Enhanced and re-organized examples. See examples link from preview landing page
    Additionally we have also added several new how-to docs that can also be accessed from the preview link above.
    If you encounter any issues with the preview please post them to this forum.
    Cheers,
    Doug Clarke
    Principal Product Manager
    OracleAS TopLink

    Sorry about the link above. Try:
    http://otn.oracle.com/products/ias/toplink/preview/index.html
    Doug

  • I had the developer preview for IOS 6 on my phone, and just got a message telling me that my operating system is no longer active. How do I get my phone activated again?

    I had the developer preview for IOS 6 on my phone, and just got a message telling me that my operating system is no longer active. How do I get my phone activated again?
    I had the developer preview installed. Never had to update to the release version of the OS. Now, the preview has expired, and I cannot use my phone because my iTunes reads my OS as being current, but my iPhone cannot active. Any ideas on how to fix this issue?

    If I Google for Michael Superczynski, first match tells "Michael Superczynski's Profile : Apple Support Communities". It in fact does a lot of work there even if not paid.
    And yes we do not have disagreement about "official apple developers". Problem is that Apple screwed our devices because we are "official apple developers" and did effort to stop us getting proper help. I unbricked my ipad and iphone thanks to unofficial help. Thank you who wrote this unofficial help and "no thanks" for apple for ruining my access to my devices. My mistake was assuming that "update" button on my devices works. It did not because it always told "Your device has latest IOS6 installed" until it bricked yesterday.
    If Apple does not want to listen us, continue do delete post, blame us installing your software and yes we stop buying your devices and developing for them.
      Tonu

  • Error while installing oracle 10g developer suite  on windows xp

    I am getting following error when i am trying to install the oracle 10g developer suite windows xp with sp3
    +*"---------------------------*+
    Oracle Universal Installer+
    ---------------------------+
    Error in writing to directory c:\TEMP\OraInstall2010-03-18_12-57-52PM. Please ensure that this directory is writable and has atleast 55 MB of disk space. Installation cannot continue."+
    Even i have enough space of my C drive plus i m the administrator on my PC. I changed the temp location as well and download the zip files(installation) again but it doesn't work. Kindly provide some solution for this error.

    Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202) This means you already have ISA configured as proxy server. Disable the proxy from the browser and you should be able to access the application. Or simply add the application URL to the list of the proxy exceptions.

  • Windows 8.1 apps downloaded during developer preview install in Chinese on RTM (MS requsted I post this here for script to fix this)

    Hello
    Ever since updating to the RTM version of Windows 8.1 on every PC I have updated and signed into using my Microsoft account whenever I try to install any 8.1 app I installed onto the developer preview version it will always install in Chinese which makes
    using the app impossible for me.
    This happens on all PCs I have updated/used including:
    Surface RT (Windows 8.1 RT)
    Surface 2 (Windows 8.1 RT)
    Dell OptiPlex 990 (Windows 8.1 Pro)
    Dell OptiPlex 790 (Windows 8.1 Pro)
    Sony Tap 20" (Windows 8.1 Pro)
    The language settings of the Microsoft store and all the computers are all set to UK English and as soon as I do a fresh install of the UK version of Windows 8.1 and sign into my Microsoft account then certain apps will always install in Chinese (when in
    the store it says you already own this app and can install it on this PC - when I do it is in Chinese. When the app has not been installed before or was not installed when I had the developer preview then it will install in English).
    This has been driving me mad for months and I previously posted this question back in October in the Office 2013 forums as I first noticed the issue with the OneNote app but it was never resolved:
    http://social.technet.microsoft.com/Forums/office/en-US/448670ae-4494-4a55-8cee-d9f1c9873db7/onenote-windows-81-app-changed-to-chinese-and-cannot-work-out-how-to-change-to-english?forum=officeitpro#448670ae-4494-4a55-8cee-d9f1c9873db7
    I then posted it a few days ago here:
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-windows_store/windows-81-apps-downloaded-during-developer/5dcd0df7-edfe-420e-8737-6a48922969e1
    I have now been asked by a Microsoft Support engineer to post the question here as they said a script can be provided which I can use to fix this.
    I think I just need to clear the fact that I have previously installed these apps as maybe some bug in the developer preview set them to Chinese and it seems to remember this setting. I cannot understand any Chinese so this makes these apps unusable.
    The only other option I can think of is to create a new Microsoft account but I would rather not have to do this.
    Some of the apps affected include the OneNote app and the HP scanner app. I have uninstalled most others and found alternatives.
    Thanks
    Robin
    Robin Wilson

    Hello jrv
    I managed to run the script but cannot really see how it is any different to uninstalling the apps in the normal way except for the fact that you can uninstall multiple apps at once.
    This exact same problem happens on a surface 1, a surface 2 and multiple machines running either Pro or Enterprise. It is not one machine but every machine running 8.1.
    I have not upgraded from the Developer Preview version on any of my machines and always do a fresh install but what I am saying is that I did use the same Microsoft account during that time and it seems to have some record of the apps I installed at that
    time and thinks I want them installed now in Chinese.
    The only thing in common on the 7 machines I have tried (including the 2 surfaces) is that I have joined them to my Microsoft account and the problem seems to be with the Microsoft account and not with all the machines.
    To replicate this I can go to any Windows 8.1 machine and join it to my Microsoft account and this will put certain apps from the store into Chinese and I can find no way to stop this. I am pretty confident that the issue is with the Microsoft account or
    a setting that is synchronising from there.
    The workaround is to sign into a different Microsoft account and this installs them correctly on the same machine.
    I would appreciate any help with clearing out my history of installed apps without having to create a new Microsoft account.
    Thanks
    Robin
    Robin Wilson

  • Camera on Lumia 822 Developer Preview Update 8.1 GDR1 not working, needs Cyan.

    About 5 months ago when the 8.1 Developer Preview was released I went ahead and got it on my Lumia 822. Everything was going great. It worked flawlessly until Updated 8.1 to the 3rd small update that was released for it. Soon after my camera stopped working and soon after that my GPS started displaying very inaccurate results. When I use any app that uses the camera it instantly crashes and I know it is a firmware issue because neither camera works. Both cameras cause the app to crash if it tries to use the camera. I updated to 8.1 GDR1 thinking it would fix it and it didn't. This happened to me 4 months ago. The community says Cyan will fix it. I have had to deal with this for 4 months. 2 months waiting for Microsoft to give it to phone companies and now 2 months waiting for Verizon to push it out. Could someone at Verizon please give an ETA? I wasn't able to take pictures all summer. Not of my summer vacation or anything. I'm begging you Verizon to push the update. At least just for Lumia 822. I'm not the only one with this issue. If you go to the WPCentral forums or just Google it, many more people are having the same issue. I know I was risking it by using a "beta OS" but come on. Updates shouldn't take this long to get pushed.

    No one told you to download or install the Microsoft Developer Preview.
    That is not a Verizon wireless issue. It is a Microsoft issue.
    maybe you can remove it and roll back until the real updated OS is shown to be stable and available.
    And this is for both posters.
    I can just imagine all the posts complaining how the updates caused this not to function or that no longer works when Verizon has nothing to do with those issues either.
    After it is released by the cell carriers.

  • Windows 8.1 developer preview update error: 80188308

    I tried to download the newest update for developers but cannot complete the update during,installation. I kept on receiving the same message : Update couldn't be completed.80188308. It suggests that its a temporary problem and directs me to download the
    update again. I've done this for about 6 times and its still not working. I've also tried restarts.and soft resets. Thanks in advance! I have a nokia lumia 920 running on Lumia black with 24 GB of free space

    hello:
    I come from china.
    my phone is lumia 820.I have this error too and I try update more times ...but not usefull.
    then I found a solution and now update success.
    1 Donload "Nokia Software Recovery Tool "use it back to windows phone 8.(Back to WP8.0)
    (you shoule make backup.and it will take a very long time,please waite)
    2 install "For the developer Preview"to my phone
    3 update phone steps to steps
    and you will susscess!
    sorry for my English poor.
    but I think you understand.
    Nokia Software Recovery Tool not save your data.pless make backup
    I think this error is not current update pakeg,It may you update to wp8.1 long time befor.
    maybe MS can not find witch times
    大家好:
    我的手机是lumia 820.升级推送的预览版的也是出现错误代码“80188308”。尝试了很多次,都是失败了
    我曾经在“关于”--->"重置"。。。还原过去,但是发现还是不行,后来才发现是还原到了wp8.1.这个是之前升级后的,所以是没有办法回到wp8.0
    1 昨天晚上下载了Nokia Software Recovery Tool ,然后安装在计算机上,之后连接手机,识别后,开始下载安装文件
    差不多有1.58G,如果我没有记错。这个操作不会保留你的手机上的任何数据,所以你需要做好备份,sd卡上的貌似音乐和图片什么的 都在,地图和应用没有了
    2 系统恢复到8.0后,开始一步一步升级,终于早今天早晨的时候成功了,当然我是一边睡觉,一边升级了,厉害吧?
    于是现在成功了 同志们,你们也阔仪尝试一下。不过应用什么的 重新安装吧。
    w-love

Maybe you are looking for

  • UEFI / GOP Vbios request - N660 TF 2GD5/OC

    Hi, can you give me please the UEFI Bios? S/N: 602-V287-04SB1208179436 Current vbios: docs.google.com/file/d/0BwbrRkLTxStOX0JZekJXYXFrdlk/edit?usp=sharing Thank you

  • Burned CD's Retain Old Name

    A few weeks ago I burned a CD for my friend Jill. Since then every CD I burn is named "Jill", and every track has the name of the track I burned for Jill. Is there a file I can delete that will allow it to default to something else, like the name of

  • Hide the Signature option in contextual menu

    is there a way to control which item is shown in the contextual menu that appear on PDFs when tap holding? This usually shows 4 options: Text Note Freehand Signature We wouldlike to hide Signature. Thanks

  • Can't drag across

    I'm trying (unsuccessfully) to exchange music files between my iMac and my laptop. Both machines are showing [in iTunes] each others libraries however when I try for example on the laptop to drag a song over from the iMac's library it doesn't drag ac

  • AD Identity Service: Delete or Disable users that aren't found?

    We currently set users to be "disabled" but then we have to periodically remember to go in there and delete them manually. It also creates issues with duplicate login names. Do you delete your users automatically? I've always been concerned that if s