Proto error Lumia

After two steps of updates (third is not available fore my country) ALL previously saved photos are not findable on phone and previously working photo saving from internet is not working at all
How I can get back all photos? And how I can get back possibility to save photos from the net?
Nokia 1611, 2210, 3110, 5110, 6210, 6310, 6310i (up to these models totally satisfied)
Then don't remember model, then E50 (mostly happy), then N97 mini - phone with briliant keyboard, but poor touchscreen, then business phone E07, phone that can not make a photo of contract, invoice or business card. poor design of usb port and 5 months at service did it - my nowadays phone is Apple. Company gave me Asha 300, so frustrating, that I use my old E50 instead...

Thank, this sovled all problems.
Just to add, your WMAppManifest is for Windows Phone Silverlight, for WinRT in app.manifest outside <Applications>...</Applications> or below it add :
<Extensions>
<Extension Category="windows.activatableClass.inProcessServer">
<InProcessServer>
<Path>Lumia.Imaging.dll</Path>
<ActivatableClass ActivatableClassId="Lumia.Imaging.BufferProviderImageSource" ThreadingModel="both" />
</InProcessServer>
</Extension>
</Extensions>
But thanks again, your answer solved this issue, ;)

Similar Messages

  • Netflix error lumia 830

    Recently on my lumia830 i couldnt play netflix movies. It shows this error code: Q8156-887A0004. I used to be able to before the latest netflix update. I already contacted netflix and apparently theyve been getting calls about this before and are working with microsoft to fix the problem but its been weeks without any progress. Anyone know of a concrete eta of an app update or phone system update that will resolve this issue? Or something that will help me watch netflix on my phone again? I already tried softresetting the phone and reinstalling netflix but to no avail.
    Solved!
    Go to Solution.

    lordtree wrote:
    Any hint on when will this update be available?
    Currently, all Lumia phones get an update to the current OS version, even those who had Lumia Denim but an older OS version already. Nokia aka Microsoft Mobile does not give a fixed date (why ever). Furthermore, Nokia aka Microsoft Mobile does not update all models, types and firmware variants at the same time (why ever). Consequently, no, we end-users do not have any date of estimated arrival. However, your phone is going to notify you automatically. When your Nokia Product Code is ready (= firmware variant; visible in the Software Recovery Tool via a Windows computer), you get notified by your phone automatically.

  • NOKIA MAIL LOGGING IN ERROR(LUMIA 530DS)

    can't log into nokiamail.at first it took too long to logging in.then it appears attention required.i checked it.i tap on the mail account and in next page it said incorrect password.i put the right one which i allready did in first stage.sadly its unsuccessful again.i checked the account in pc and my mobile.it is ok.please help

    @ajit530ds in which country are you right now? Which country is mentioned in your Nokia Account?

  • XAException, disallowLocalTxnMode

              I am running weblogic 7.0 SP2 on AIX. I have an EJB with required transactions
              that do selects, inserts and updates to Oracle databases and selects to DB2 databases.
              We are using weblogic database pools and Tx data sources. The pools use the oci
              driver to connect to Oracle and the oracle.jdbc.xa.client.OracleXADataSource driver
              class.
              I used to get an ERXA-PROTO error. We just got a patch from Oracle to fix this,
              but we continue to get this error on a regular basis.
              Any ideas what is causing this?
              ####<Jun 2, 2003 11:13:58 AM CDT> <Error> <EJB> <kp790055.test.kohls.com> <erAS01>
              <Thread-10> <kernel identity> <> <010026> <Exception during commit of transaction
              68:3d9a907ee5c96858: javax.transaction.xa.XAException:
              Start server side stack trace:
              javax.transaction.xa.XAException
              at oracle.jdbc.xa.OracleXAResource.disallowLocalTxnMode(OracleXAResource.java(Inlined
              Compiled Code))
              at oracle.jdbc.xa.OracleXAResource.suspendStacked(OracleXAResource.java(Compiled
              Code))
              at oracle.jdbc.xa.client.OracleXAResource.prepare(OracleXAResource.java:651)
              at weblogic.jdbc.jta.VendorXAResource.prepare(VendorXAResource.java:61)
              at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:758)
              at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.java(Compiled
              Code))
              at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.java(Compiled
              Code))
              at weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java(Compiled
              Code))
              at weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTransactionImpl.java:1941)
              at weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTransactionImpl.java:1071)
              at weblogic.transaction.internal.SubCoordinatorImpl.startPrepare(SubCoordinatorImpl.java:127)
              at weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown
              Source)(Compiled Code)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java(Compiled
              Code))
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java(Compiled
              Code))
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java(Compiled
              Code))
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java(Compiled
              Code))
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java(Compiled
              Code))
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java(Compiled Code))
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              End server side stack trace
              

    I'm assuming that you are running Oracle 9.2.0.3.
              In that version, Oracle patched a problem that caused the exception for disallowLocalTxnMode
              that was related strictly to recovery of the XA resource.
              However, it does not fix a more generic problem that is usually an application error.
              Starting in Oracle 9.2, Oracle will throw this exception if you have a local transaction
              outstanding and you try to start a global transaction (or the container tries
              to start a global transaction). This can occur if either you explictly start
              a local transaction in the application or you do something that implicitly
              starts a transaction (like executing a DDL statement, or executing any SQL
              statement when not already in a transaction).
              This can be difficult to track down.
              One approach is to set the SupportsLocalTransaction to false on the connection pool.
              If you aren't running Oracle 9.2, indicate what version you are running.
              "Tania Rhinehart" <[email protected]> wrote in message news:[email protected]...
              >
              > I am running weblogic 7.0 SP2 on AIX. I have an EJB with required transactions
              > that do selects, inserts and updates to Oracle databases and selects to DB2 databases.
              >
              > We are using weblogic database pools and Tx data sources. The pools use the oci
              > driver to connect to Oracle and the oracle.jdbc.xa.client.OracleXADataSource driver
              > class.
              >
              > I used to get an ERXA-PROTO error. We just got a patch from Oracle to fix this,
              > but we continue to get this error on a regular basis.
              >
              > Any ideas what is causing this?
              >
              >
              >
              > ####<Jun 2, 2003 11:13:58 AM CDT> <Error> <EJB> <kp790055.test.kohls.com> <erAS01>
              > <Thread-10> <kernel identity> <> <010026> <Exception during commit of transaction
              > 68:3d9a907ee5c96858: javax.transaction.xa.XAException:
              > Start server side stack trace:
              > javax.transaction.xa.XAException
              > at oracle.jdbc.xa.OracleXAResource.disallowLocalTxnMode(OracleXAResource.java(Inlined
              > Compiled Code))
              > at oracle.jdbc.xa.OracleXAResource.suspendStacked(OracleXAResource.java(Compiled
              > Code))
              > at oracle.jdbc.xa.client.OracleXAResource.prepare(OracleXAResource.java:651)
              > at weblogic.jdbc.jta.VendorXAResource.prepare(VendorXAResource.java:61)
              > at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:758)
              > at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.java(Compiled
              > Code))
              > at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.java(Compiled
              > Code))
              > at weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java(Compiled
              > Code))
              > at weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTransactionImpl.java:1941)
              > at weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTransactionImpl.java:1071)
              > at weblogic.transaction.internal.SubCoordinatorImpl.startPrepare(SubCoordinatorImpl.java:127)
              > at weblogic.transaction.internal.CoordinatorImpl_WLSkel.invoke(Unknown
              > Source)(Compiled Code)
              > at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java(Compiled
              > Code))
              > at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java(Compiled
              > Code))
              > at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java(Compiled
              > Code))
              > at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java(Compiled
              > Code))
              > at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java(Compiled
              > Code))
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java(Compiled Code))
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > End server side stack trace
              >
              

  • Error code 8103010d appear on my lumia 920!!

    so happy to get this handset!!! but there are few problems with it!!
    can someone help me out plz!!
    1st the battery life is so short! i got only 13 hours when i have 100% barttery 
    2nd is the internet sharing doesnot work!! my iphone 4 can connect the wifi from lumia 920, but it could not use the internet.
    3rd, i have a upgrde for the network+, but i got a error code 8103010d when i download it on half way!
    i hope the hardware is fine, all of it are bugs!! 
    the phone is under EE 4G in the UK

     Battery life on my 12 day old 920 has stabilised at around two days usage between charges. I have Bluetooth and 3G switched off and only activate them when needed. 
     Wi-Fi tethering works fine on mine but you may have noticed that Wi-Fi is automatically disconnected when the screen times out and is locked so your iPhone won't be able to share the connection until the screen is woken back up again.
    Ray.

  • Lumia 600 Error Code: c00cee3b

    good afternoon!
    I cannot access my marketplace and games downloading in nokia lumia 600. It always notify me with a message
    "MARKETPLACE ERROR
    We're sorry, but we can't complete your request right now.
    Try lauching Marketplace again. if the problems continues, check back in a little while, or try restarting your phone.
    Error Code: c00cee3b.
    Eventhough i restart my phone the same problems continue. pls help me. thank you.

    nethg05 wrote:
    I cannot access my marketplace and games downloading in nokia lumia 600. It always notify me with a message
    "MARKETPLACE ERROR
    We're sorry, but we can't complete your request right now.
    Try lauching Marketplace again. if the problems continues, check back in a little while, or try restarting your phone.
    Error Code: c00cee3b.
    Solution may be... Wait for some time ..

  • Update Lumia 820 wont work. Getting error '800710f...

    I have tried to update my Nokia Lumia 820 several times now. But it doesnt work.
    Updates for my phone only work over the air.
    I keep getting the line: Update downloaded, but cannot be opened (800710fe).
    What should I do about this? How can i install the downloaded update??

    http://discussions.nokia.com/t5/Software-Updates/Lumia-820-CV-GB-Amber-Update-failing-with-error-800...
    The silence will fall

  • Lumia 822 updates returning error code 80072ee2

    Purchased a Lumia 822 in January.  On the web, I see the current version of software for the 822 is 8.0.10211.204, hardware is 1532.5951.1250.1012  My phone is currently on 8.0.9905.12 and 1532.2108.1244.0003  It has not informed me I have any updates.  I have gone into settings and requested them manually.  I get a 80072ee2 message "We are currently unable to check for updates."  I made sure I had +40% battery and WiFi was turned on.  In May, I called Verizon, the tech didn't have a clue, got Nokia on the phone, they said it wasn't released for my area yet.  It's now over a month later, still getting the error message.  Does that mean the release (which has been out for AT&T customers since mid-December) still isn't available in my area yet?  Or do I have a problem with my phone?

    Interesting--I always started the wireless BEFORE I tried downloading the updates.  This time, since you said turn off the wifi, I tried checking for the updates with the wifi off.  It prompted me to turn it on--AFTER it found the updates.  I did, it downloaded and updated to the current version just fine.  Things the directions DON'T tell you...  I still think it's odd that it never prompted me for the update even though I have checkmarked both "Tell me when updates are available for my phone" and "Automatically download updates if my data settings allow it", but at this point, I don't care.  <GRIN>
    Thank you!

  • Lumia 1020; app update error 80073cf6 after cyan ...

    I updated my Lumia 1020 to the Nokia Cyan firmware today. Most of the app updates went fine but now some updates from the store are stuck with the error code 80073cf6.
    I tried restarting the phone but that does not help. Any ideas?

    The "error code 80073cf6" in Windows 8 on PC's suggest trouble in the store cache on the device, and there are procedures to reset and clear this on a PC - but this is only possible on Windows Phone by performing a factory reset.
    I hesitate to advice a factory reset of the phone since it is a lot of work, and may not solve the problem! Also, since this is trouble between the Store and the phone, it may be solved in an update of the phone or the store later.
    I would sit tight for a while (days or weeks ...) unless the apps are important here and now, and keep an eye on new updates to the phone, and retry the download once in a while, but it's your decision whether to try a factory reset.
    Microsoft have information of devices failing to download apps from the store, and if your specific trouble affect enough people, changes are likely to be made (days or weeks ...)

  • Lumia 930 Error Help

    Can anyone direct me to where I can find the meaning of Error Code 805a0194 which I received on my Lumia 930 as a reference on the Store sight. TIA
    DennisN
    Solved!
    Go to Solution.

    Just found this in Microsoft Knowledge Base as a common error for Microsoft Store on phone:
    "Problem
    This error occurs when there is a temporary service disruption.
    Solution
    Wait a little while and then try Again"
    I've been waiting and retrying for two weeks. At least now I know it is a problem in Store and not my phone.
    DennisN.

  • Amber update error 8018830f on Lumia 620

    My Lumia 620 has an avalaible amber update, but it seems that my lumia can open the update after it was downloaded. 
    I get the error message 8018830f - the download is downloaded, but the device can NOT open it.
    Can someone help me or give me some advice what I should do?
    (I tried to reboot my phone to factory settings, but i still get the error message)
    Solved!
    Go to Solution.

    Hi Guys,
    Try the following steps:
    1. Go to Settings > Language+region.
    2. Tap the Phone language.
    3. Select  a new language (Make sure that you're familiar with the language).
    4. Download the language pack and then restart the phone.
    5. After that, retry to update your phone by going to Settings > Phone updates.
    Let us know the outcome. 

  • Lumia 720 Touch screen error

    Hi everyone!
    So, my lumia 720's touch screen is not respondig. I tried to reboot my pohne. The result is, that it was hard to enter the SIM PIN, because the screen won't respond again. After I succeed to enter the pin code, I had to enter my lock screen code. BUT: the lock screen is jumping up an down permanently...so it's impossible to enter the code...
    OK, I've look after soft/hard reset...
    I have done both of them...but still have the error... 
    Anyone knows something?????????

    gellrt wrote:
    Hi everyone!
    So, my lumia 720's touch screen is not respondig. I tried to reboot my pohne. The result is, that it was hard to enter the SIM PIN, because the screen won't respond again. After I succeed to enter the pin code, I had to enter my lock screen code. BUT: the lock screen is jumping up an down permanently...so it's impossible to enter the code...
    OK, I've look after soft/hard reset...
    I have done both of them...but still have the error... 
    Anyone knows something?????????
    sounds like a hardware problem. so when u mean soft / hard reset.. u already restore factory settings? still the same?
    if you haven't yet.. try connecting the fone to the pc via usb.. so u may try to backup the files u have in there before clearing everything.
    i have a 720 but that never happen to mine yet. it does hang a bit but i just power cycle the unit, she's good to go.

  • Nokia lumia 710 CONNECTION ERROR

    Hi,
    I have a noia lumia 710, and whenever I connect my windows phone , zune opens but then an error message prompts. " Connection error, Can't connect to your phone. Disconnect it, restart it, then try connecting  again."
    I have tried all possible solutions.
    I try every steps suggested in that link.
    http://www.zune.net/en-US/support/zunesoftware/sol​vingproblems/phoneupdateprobs.htm
    and also that link
    http://support.microsoft.com/kb/2468307
    BUT  I could do the Certificate steps cause when I open certmgr.msc I don't see anywhere the Zune certificate.
    All I have is one program..in that " list ".
    Thanks!

    Hi, 
          There is a simple solution. I observed. When you sync your phone with out a entry password and then set a password on the phone. May be the phone doesn't get connected...
    When I made zune to forget the device and connected again it asked for me to enter the password to start the sync. I realized last time I synced there wasn't a password..

  • Error Code 80070490 in Nokia Lumia 630

    Kod błędu 80070490 w Nokia Lumia 630 kod błędu pojawia się na probie instalowania aplikacji.

    Hi
    If you hard reset the phone does it fix the error?
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Lumia 1520: update error code 80188306

    This seems to be already known issue with earlier updates & with several Lumia models, but today I got this error when trying to update (Cyan -> Denim).  Update is downloaded, but when preparing the installation, got this message after 8-11% of the preparing process.
    Can't find anything that solves the problem.  There is more than 11 gb free (55 gb in the card). Tried soft reset, no good.
    Any ideas?

    Hi, BvN77. Welcome to Microsoft Mobile Community. Does this happen regardless of connection you are using? Have you tried checking this link: http://answers.microsoft.com/en-us/winphone/forum/​wp8-wpupdate/code-80188306/21720935-5aee-4d8e-a153​....
    We'll wait for your reply. 

Maybe you are looking for

  • Kernel on OSX.3.9 aftre latest Security update

    Hello ! Since I downloaded the latest security update for X.3.9, I have many problems. Impossible to get the mac started in the morning. I can only do it by booting with : Alt/Ctrl / P/ R pressed. Here is the kernel message I found in the Console. Th

  • How to present a youtube video in a meeting?

    How to present a youtube vidoe in a adobe connect meeting?

  • Data sources are hidden in r/3 once enhanced

    Hi all, we are facing some typical issue with logistic data sources. we have enhanced some Logistic data sources. we also successfully transported them from Development to quality. But now when we go back to r/3 all the data sources which we enhanced

  • IBook crashing upon wakeup

    My iBook has started to crash sometimes when I wake it up from sleep mode. I have now idea why, it happens randomly but only when it wakes up. What happens is the screen goes grey and a black box tells my to restart my computer i four different langu

  • Compilation error in a function due to simple IF-ELSEIF condition

    DB version:10gR2 I have created the below mentioned function to activate or deactivate a custom functionality in a package. The functionlity should be activated only if the second byte of sys_config.flag_a ='Y' with CODE_ID='103'. If flag_a is null o