Denim update and connection fail for microsoft web services

Denim update loaded recently to my Lumia 1020 but fail connection to Microsoft account and web services as well as to Nokia account. Fail code is 502;
Server Error 502 - Web server received an invalid response while acting as a gateway or proxy server.

It might have not propagated to all servers yet and there are some reports that possible those in the Preview for Developers Program are getting BSOD updating, The Denim update for my Lumia Icon killed the phone
Give it some time and see if the update gets to you or not.
Using the recovery tool will wipe your phone to factory defaults.  If you are fine with losing all your data and restoring, sure go with that.http://www.windowscentral.com/denim-update-lumia-icon-software-recovery-tool

Similar Messages

  • CF 9 and serializing CFCs for SOAP Web Services

    I've noticed after upgrading to CF 9 from CF 8 that the name of any CFCs being returned are now being capitalized in the generated WSDL document and in the SOAP response.  This was not the case in CF 8, and is breaking clients written in case-sensitive languages (in this particular case, .NET).
    I'm wondering if anyone else has experienced this problem, and what resolutions may have been found.
    Here is an example
    foo.cfc:
    <cfcompont displayname="foo">
         <cfargument name="getBar" access="remote" returntype="bar" />
         <cfreturn new bar() />
    </cfcomponent>
    bar.cfc
    <cfcomponent displayname="bar">
         <cfproperty name="name" type="string" />
    </cfcomponent>
    In the wsdl generated by CF 8, the complexType is named 'bar'.  In CF 9, it's named 'Bar'.  The same happens in the returned SOAP response.
    Thanks.

    Did you run on CF 8.0.1 or CF 8?  Some further digging suggests that this might be an 8.0.0 vs. 8.0.1 issue.  Here is some "code" that will produce a WSDL in 9.0.1 and 8.0.0
    Soap.cfc:
    <cfcomponent output="false">
         <cffunction name="getObject" returntype="object" access="remote">
              <cfreturn createObject("component",  "object") />
         </cffunction>
    </cfcomponent>
    Object.cfc:
    <cfcomponent displayname="object">
         <cfproperty name="name" type="string" required="true" />
    </cfcomponent>
    WSDL produced by CF 9.0.1:
    <wsdl:definitions targetNamespace="http://soaptest" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://soaptest" xmlns:intf="http://soaptest" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://rpc.xml.coldfusion" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by ColdFusion version 9,0,1,274733-->
    <wsdl:types>
    <schema targetNamespace="http://soaptest" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://rpc.xml.coldfusion"/>
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="Object">
    <sequence>
    <element name="name" nillable="true" type="xsd:string"/>
    </sequence>
    </complexType>
    </schema>
    <schema targetNamespace="http://rpc.xml.coldfusion" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://soaptest"/>
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="CFCInvocationException">
    <sequence/>
    </complexType>
    </schema>
    </wsdl:types>
    <wsdl:message name="getObjectRequest">
    </wsdl:message>
    <wsdl:message name="CFCInvocationException">
    <wsdl:part name="fault" type="tns1:CFCInvocationException"/>
    </wsdl:message>
    <wsdl:message name="getObjectResponse">
    <wsdl:part name="getObjectReturn" type="impl:Object"/>
    </wsdl:message>
    <wsdl:portType name="Soap">
    <wsdl:operation name="getObject">
    <wsdl:input message="impl:getObjectRequest" name="getObjectRequest"/>
    <wsdl:output message="impl:getObjectResponse" name="getObjectResponse"/>
    <wsdl:fault message="impl:CFCInvocationException" name="CFCInvocationException"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="soap.cfcSoapBinding" type="impl:Soap">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getObject">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getObjectRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soaptest"use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getObjectResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soaptest"use="encoded"/>
    </wsdl:output>
    <wsdl:fault name="CFCInvocationException">
    <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="CFCInvocationException"namespace="http://soaptest" use="encoded"/>
    </wsdl:fault>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SoapService">
    <wsdl:port binding="impl:soap.cfcSoapBinding" name="soap.cfc">
    <wsdlsoap:address location="http://lcmswindows/soapTest/soap.cfc"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    WSDL produced by CF 8.0.0
    <wsdl:definitions targetNamespace="http://soapTest" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://soapTest" xmlns:intf="http://soapTest" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://rpc.xml.coldfusion" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by ColdFusion version 8,0,0,176276-->
    <wsdl:types>
    <schema targetNamespace="http://soapTest" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://rpc.xml.coldfusion"/>
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="object">
    <sequence>
    <element name="name" nillable="true" type="xsd:string"/>
    </sequence>
    </complexType>
    </schema>
    <schema targetNamespace="http://rpc.xml.coldfusion" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://soapTest"/>
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="CFCInvocationException">
    <sequence/>
    </complexType>
    </schema>
    </wsdl:types>
    <wsdl:message name="CFCInvocationException">
    <wsdl:part name="fault" type="tns1:CFCInvocationException"/>
    </wsdl:message>
    <wsdl:message name="getObjectResponse">
    <wsdl:part name="getObjectReturn" type="impl:object"/>
    </wsdl:message>
    <wsdl:message name="getObjectRequest">
    </wsdl:message>
    <wsdl:portType name="soap">
    <wsdl:operation name="getObject">
    <wsdl:input message="impl:getObjectRequest" name="getObjectRequest"/>
    <wsdl:output message="impl:getObjectResponse" name="getObjectResponse"/>
    <wsdl:fault message="impl:CFCInvocationException" name="CFCInvocationException"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="soap.cfcSoapBinding" type="impl:soap">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getObject">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getObjectRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soapTest"use="encoded"/>
    </wsdl:input>
    <wsdl:output name="getObjectResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soapTest"use="encoded"/>
    </wsdl:output>
    <wsdl:fault name="CFCInvocationException">
    <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="CFCInvocationException"namespace="http://soapTest" use="encoded"/>
    </wsdl:fault>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="soapService">
    <wsdl:port binding="impl:soap.cfcSoapBinding" name="soap.cfc">
    <wsdlsoap:address location="http://dev.m5.dominknow.com/soapTest/soap.cfc"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    I've highlighted the relevant differences.  I don't have a server running 8.0.1 at the moment.  Customers running MX 7 have the same (lower case) WSDL as 8.0.0.  I've had some correspondance with others that suggests 8.0.1 behaves the same as 9.0.1.  I've actually been able to find a blog post suggesting there was a change to WSDL generation in 8.0.1 with a link to an Adobe forum thread, but that thread no longer seems to exist.  The blog post:
    http://blog.coldfusionpowered.com/?p=28

  • File and printer sharing for Microsoft Networks on Windows server 2008

    Hi Expert,
    I found that the properties of File and printer sharing for Microsoft Networks service disabled after I install the windows server 2008 64bits. I tried to install that service via adding the file and printer sharing services in the properties of local area connection, but it doesn't contain any service in the popup box.  Also, no such service file available in the disk when I tried to install the service from installation disk of windows server 2008 64bits. Is the file "sacsrv.dll" corresponding to the service name of file and printer sharing? I found it is in the directory of "Windows\system32".  I have no idea about where is the problem? Do I miss some components? Please tell me what can I do for it? Thanks!
    Best Wishes,

    Do any experts know the reason of this problem?  Thanks!

  • While i was updating it was failed for 3 times and then i started to update it again and then it was showing as the product verification could not be verified and the product verification may be damaged or not signed

    while i was updating it was failed for 3 times and then i started to update it again and then it was showing as the product verification could not be verified and the product verification may be damaged or not signed

    Mavericks installer can’t be verified
    Mavericks Installer can’t be verified (2)
    Try running the combo update.
    10.9.2

  • We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means

    We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means  

    Hello,
    Did you means that you use the Windows Azure Virtual Machine DNS name as the server name in the Reporting Server Web Services URL?
    For example:
    Report server:http://uebi.cloudapp.net/reportserver
    Report manager:http://uebi.cloudapp.net/reports
    If you want to connect to Report Manager on the virtual machine from a remote computer, you should create a  virtual machine TCP Endpoint and open the port in the virtual machine’s firewall. By default, the report server listens for HTTP requests
    on port 80.
    Reference:http://msdn.microsoft.com/en-us/library/jj992719.aspx#bkmk_ssrs_connect_2_remote_RM
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Mapping input values for a web service connection to a range of cells

    I've created a web service connection in Xcelsius data manager. My web service requires an array of integer as input parameter. How do I map input values for a web service connection to read from a range of cells in the spreadsheet, e.g. $A$2:$A$20, in similar way of mapping output values to write to a range of cells in the spreadsheet?
    For output values of the web service, I can specify to map the output values to write to a range of cells. However, it doesn't seem to work for reading the input values.
    I can map input values for each node to a single cell, e.g. $A$2, in the spreadsheet. However, when I set the "Read From" field to a range of cells, e.g. $A$2:$A$20, it only reads in the first value in the range.
    Is there any way that we can do this mapping for input values as we do for output values?
    Your assistance is very much appreciated.
    Regards,
    Van

    Van,
    There is a workaround for that...
    Example:
    My Webservice accepts input data range in a specific format with " :" symbol, i.e. 072008:082008
    Now what i do is
    A1 = 072008
    A2 = 082008
    A3 = CONCATENATE(A1,":",A2)
    so A3 = 072008:082008
    Now i map the input value in web service to cell A3
    P.S have 2 input box components and map it to cells A1 and A2, i.e you are giving users an  option to enter the range of values...then web service will capture the range and refreshes data with the range of values user entered.
    hope this helps..
    -Anil

  • What are the username, password and connect string for Designer 6.1.1?

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    Oracle designer6.1.1
    - Date/Time
    - Browser + Version
    IE 6.0
    - O/S + Version
    Win 98
    - Error Msg
    ORA-12154:TNS:could not resolve service name.
    RME-00220:Fail to connect to repository
    These error messages were shown after I entered system, manager and internal, respectively.

    Hi YungJen Chen,
    There is no general username, password and connect string for
    Designer 6i Release 4.1.1.
    First, you install the client tools using the Installer. See also the
    Designer Installation Guide, Chapter 1, 'Client Side installation'.
    Second, you install the repository into an existing database, using
    the Designer Installation Guide, Chapter 2, 'Server-side installation,
    migration and upgrade'.
    The Installation Guide provides step by step instructions on what
    users you need to create for various purposes. Any database users
    you may need to use such as System or Sys will use the password
    given when you installed the database, or whatever passowrd you
    changed it to since.
    The Installation Guide is available as part of the download, or from
    your Windows Start Menu once the Designer client tools are installed
    or from the Designer Documentation page here on OTN.
    Hope this helps. Regards,
    Dominic Battiston
    Designer/JDeveloper Product Management

  • Mail delivery error with 5510 e-print. updates and connection are ok. friend has same problem.

    I have checked all of the updates and connections for my new printer.  As far as I can tell, I've checked everything that needs to be checked and all is good.  But, I still get the Mail Delivery error when e-printing.  And my friend has the same problem with her new 5510 b111a.  What could possibly be the problem?  Regular printing, scanning and so on work fine with my wireless connection.
    This question was solved.
    View Solution.

    So it sounds like it may be an Issue with the provided Email Address from your internet service provider, you are sending from ,
    What i would suggest as a test is to create a Email account either with g mail and or yahoo, and try to send the email to your eprint account/Email, and see if it accepts the email also, make sure you have your printer set to Accept email from all users you can do this by logging into Eprint Center and then going into these settings and selecting that option
    I am an HP employee.
    __ if this Solution has helped Please Mark as Resolved and feel free to Provide a Kudos__

  • X301 "File and Printer Sharing for Microsoft Networks" removed at re booting (XP SP-3)

    Even if I run the “Network Identification Wizard” (under System properties/Computer Name) to join a Workgroup, the box ‘File and Printer Sharing for Microsoft Networks’ remains unchecked.  If I ticked it manually, it remains checked for the current session, but it is unchecked at booting.
    The same occurs with the Windows Firewall (I am running that from Symantec). I switch the Windows Firewall off, but after rebooting, it appears selected again!.
    This happens only with my brand new ThinkPad X301, which came with Vista. The package included a kit to convert to XP, but this installed a ‘naked’ XP, which required downloading from Lenovo and Windows about 1Gb of files (bad service, Lenovo guys!).
    I wonder which “safety” issue of the X301 causes this, but how can I stop this happening? (It does not occur with any of my two old ThinkPads, also running XP SP-3 and Lenovo software).
    Solved!
    Go to Solution.

    See -> http://www.vistax64.com/vista-networking-sharing/72537-file-printer-sharing-turned-off-reboot.html  Here is the text. Re: File and Printer sharing turned off on reboot
    I FOUND MY SOLUTION!!!
    In my case, it was in Lenovo's "ThinkVantage Access Connections" applet. It
    is additional security that is applied at the CONNECTION level.
    Here is how I fixed it:
    1. Double click on the ThinkVantage Access Connections applet in the
    notification area.
    2. Click on the MANAGE button on the toolbar
    3. Select the SSID where you want File Sharing to work, and click EDIT
    4. Click on the ADDITIONAL SETTINGS tab
    5. Next to "Network Security", click the SETTINGS button
    6. The first option in Security Settings is "Disable file and printer
    sharing". UNCHECK this box. Click OK for 3 levels of dialog boxes, then
    close Access Connections
    Although these directions are specific to ThinkPad notebooks, the same
    principle may apply for other manufacturers' connection managers.
    Best of luck!

  • File and Printer Sharing for Microsoft Networks is missing

    I have a Server 2012 Hyper-V VM that is missing the File and Printer Sharing for Microsoft Networks. When I try to Install the service it is not listed. The only service listed is Windows Network Virtualization Filter driver. I have the install media but
    I don't know where the driver would be located. I'm hoping someone can tell me where it is located.
    Update:
    I am trying to run Enable-NetAdapterBinding -Name Ethernet -ComponentID ms_server but it's not working and it's giving me this error.
    Enable-NetAdapterBinding : No matching MSFT_NetAdapterBindingSettingData objects found by CIM query for instances of
    the ROOT/StandardCimv2/MSFT_NetAdapterBindingSettingData class on the  CIM server: SELECT * FROM
    MSFT_NetAdapterBindingSettingData  WHERE ((Name LIKE 'Ethernet')) AND ((ComponentID LIKE 'ms[_]server')). Verify query
    parameters and retry.
    At line:1 char:1
    + Enable-NetAdapterBinding -Name Ethernet -ComponentID ms_server
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (MSFT_NetAdapterBindingSettingData:String) [Enable-NetAdapterBinding], C
       imJobException
        + FullyQualifiedErrorId : CmdletizationQuery_NotFound,Enable-NetAdapterBinding
    Vincent Sprague

    Ok, fixed it, I found the netserv.inf file in c:\windows\inf and tried to use it to reinstall File and Printer Sharing. However File and Printer Sharing was not listed. I copied the netserv.inf file from another Server 2012 VM and was able to install File
    and Printer Sharing using the copied NetServ.inf. After rebooting the server I was able to access network shares on the server.
    Vincent Sprague

  • Are there any shortcuts to connecting the printer with web services and/or the eprint server?

    (HP Officejet Pro 8600 Plus, IE, Windows 7)
     As I am unable to execute the instructions given by
    by Ryamond 1411, I'm looking for  other avenues to connect my printer to web services and/or
    the eprint server so I can release 4 emails for printout now stuck in que.

    Hello MurrayJ,
    The first thing I would do is follow step six in this document to set a static IP: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02817031&cc=us&dlc=en&lc=en&product=4023246&tmp...
    When it askes for DNS information, enter in Google's DNS. Preferred DNS = 8.8.8.8 Alt DNS = 8.8.4.4
    If that does not help, if you could provide me with the following information it would help me out. First, who is your ISP( Internet Service Provider, i.e. Comcast, AT&T, Verizon, ect.)? Second, who is the maker of your router? Lastly, what is the model number and firmware version of your router?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • I don't know much about computers, so please be patient. I started using Airport and I recently noticed a "network" option right below "Macintosh HD". When I click on "network" it shows "b67446000000" with a computer monitor icon and "connection fail

    I don't know much about computers, so please be patient. I started using Airport and I recently noticed a "network" option right below "Macintosh HD". When I click on "network" it shows "b67446000000" with a computer monitor icon and "connection failed". When I right click on this and select "Get more info" it displays nothing, just the spinning wheel. When I select "Connect As" it asked for my password to connect to "Server b67446000000". This may have been on my computer since I got it, I never paid much attention. Is this part of the operating system or has someone hijacked my computer? Why would I need a server...it's just me and my one computer? Maybe someone has hacked in through Airport? Any help will be greatly appreciated. Thanks!

    Is your airport a Time Capsule.. if so it is able to serve files on the network.
    The number is the MAC address of the network in the router.
    Please reset the apple router whatever is and redo the setup.. this time give it a simple name.. eg TCgenX where X is the actual gen of the unit and give it a simple wireless name.. TCwifi and a simple password with 8-20 characters mix of upper and lower case and numbers.
    Perhaps even better give me a screenshot from the computer of the airport utility showing me the Airport with its MAC address.

  • HT1338 I begin to download mountain lion update and it fail. Then I tried again and icon shows "waiting" but it never begin to download. What can I do?

    I begin to download mountain lion update and it fail. Then I tried again and icon shows "waiting" but it never begin to download. What can I do?

    RainbowGarner wrote:
    By install i presume you mean add it to the bottom of the machine ?
    Yes, and it's rather easy to do too.
    Your machine has two slots. These are the specs for a 2008 iMac (if your machine is different then check with Crucial.com and they will match the correct RAM for your machine)
    Maximum Memory
    6.0 GB (Actual) 4.0 GB (Apple)
    Memory Slots
    2 - 200-pin PC2-6400 (800MHz) DDR2 SO-DIMM
    So all you need to do is visit Crucial.com or OtherWorld Computing to order it, and OtherWorld Computing has install videos.
    Here is one on YouTube. Easy pleasy.
    Just make sure to discharge any static electricity and not touch the contacts, just the plastic edges.
    https://www.youtube.com/watch?v=Fb_B3K1Za5Y

  • HT201363 my ipad went on update and now asking for passcode which i don't know

    my ipad went on update and now asking for passcode whcih i don't know what should i do now to start operating

    Hey sunny1008,
    Thanks for the question. The following article provides some solutions if you are having issues with passcode lock:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    3. While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the Connect to iTunes screen.
    5. iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    Thanks,
    Matt M.

Maybe you are looking for

  • Documents won't open on mac from IPAD using pages?

      I det an error message that says I need to upgrade but i have the latest version.  If I create or edit the file on my mac it works fine on my iphone or ipad but then I cannot open it again on my mac?  Extremely frustrating, can anyone help?

  • How can I restore email address-expired MobileMe

    I used to have a MobileMe account and an email address I preferred.  I let the account expire maybe 6-8 months ago on rumors of a free service.  Now that iCloud is here I would like to use that email address again. When I try to establish the address

  • Itunes wont list all songs on ipod, only some of them

    My itunes doesn't list all the songs on my ipod, only some of them. (Only the ones uploaded after a certain date, when I think I forgot to eject my ipod one day). The ipod definitely has all the albums I've ever uploaded on it. I know because I've tr

  • Bookmarks not created when generating pdf

    Hello I am using 'robohelp for html' and generate pdf files as user guide from existing word format user guide. I import than and  create bookmarks for the TOC of the word user guide. Now I generate pdf. But the generated pdf file, do not show bookma

  • Patchset 10.2.3.2 and Error OUI-10091

    Hello, when I'm trying to install patchset 10.2.3.2 on OAV collection agent with OUI (previous version is 10.2.3.0 and patchset on server is already done), in window Product-Specific Prerequisite Checks are all checks marked as succeeded. After I cli