No Cloud Services when signing into Microsoft Azure Publish

When signing into Microsoft Azure Publish in Visual Studio 2013 (right click Cloud Project -> "Publish..."), none of my cloud services are appearing.
This has previously always been working for me.
Signing in using my Windows Live account (I am a "co-administrator"):
When opening the publish window, I get this popup asking me to create a new service!
Because as you can see, I now have no services:
I have no idea what has happened. Can anyone help?
I also tried signing in with the portal Administrator credentials - same problem!
I posted this same question on stackoverflow:  http://stackoverflow.com/questions/27544319/no-cloud-services-when-signing-into-microsoft-azure-publish

Hi,
I have tested the same in my lab environment and I am able to find the list of cloud services.
Suggest you to try the below
Sign Out of your subscription by going to Publish > Manage > Sign Out
Re open Visual Studio by choosing Run as an Administrator and Sign In with your subscription and check if you are now able to find all the cloud services in your subscription
Looking forward for your reply.
Regards,
Sowmya

Similar Messages

  • When signing into icloud on a second hand ipad2 i bought with my apple Id, it would let me and states the maximimum number of free accounts have been activated on this ipad.

    Hey
    When signing into icloud with my apple Id on a second hand Ipad 2 i bought it won't let me and states 'The maxium number of free accounts have been activated on this ipad. How do i sign into icloud then? Help

    Welcome to the Apple Community.
    Make sure you are using the sign in option and not trying to create a new one. If you need to create a new ID...
    Unfortunately once all the 3 iCloud accounts have been created on your device, you cannot create any more regardless of what you do. You will need to re-use one of the accounts that you have already created or create your new account on another iOS device or Mac computer.

  • I can't remember the answers to my secret questions when signing into itunes

    I Cannot remember my answers to the secret questions when signing into iTunes to purchase. How do I fix this?

    Hey Moo1972,
    Thanks for the question. If you are having issues with the security questions associated with your Apple ID, follow these steps:
    If you forgot the answers to your Apple ID security questions
    http://support.apple.com/kb/HT6170
    Reset your security questions
    1. Go to My Apple ID (appleid.apple.com).
    2. Select “Manage your Apple ID” and sign in.
    3. Select “Password and Security” on the left side of the page.
    4. If you have only one security question, you can change the question and answer now.
    5. If you have more than one security question:
              - Select “Send reset security info email to [your rescue email address].” If you don't see this link or don't have access to your rescue address, contact Apple Support as described in the next section.
              - Your rescue address will receive a reset email from Apple. Follow its instructions to reset your security questions and set up new questions and answers. Didn't receive the email?
    After resetting your security questions, consider turning on two-step verification. With two-step verification, you don't need security questions to secure your account or verify your identity.
    If you can't reset your security questions
    Contact Apple Support in either of these circumstances:
              - You don't see the link to send a reset email, which means you don't have a rescue address.
              - You see the link to send a reset email, but you don't have access to email at the rescue address.
    A temporary support PIN isn't usually required, but Apple may ask you to generate a PIN if your identity needs to be verified.
    Thanks,
    Matt M.

  • Getting subscription countdown message when signing into CC desktop, is that normal now?

    Getting subscription countdown message when signing into CC desktop, is that normal now?
    Account is all paid up to date. It is since the regular payment was declined due to the card being cancelled and me uploading the new card details.

    Once your new card has been charged, the message should disappear. You will get a notification via email once the charge happens.
    For further questions regarding your account & billing, contact Adobe customer support
    Toby

  • How do I solve unknown error message when signing into itunes

    When signing into itunes I get an unknown error message # of 0x80090318; followed by the statement ensure you have internet connection, which I have and had during each attempt; how do I solve?   Help!!!   Thanks!!! Please???

    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    tt2

  • .svclog file is not creating on cloud when cloud service is deployed into azure website.

    I have created a wcf cloud service which is being deployed on cloud through bitbucket repository.
    I want to create a .svclog file to trace logs on my azure local storage.
    For that, I have refered so many posts and finally configured my solution as below:
    ServiceConfiguration.Cloud.cscfg:
    <Role name="MyServiceWebRole">    <Instances count="1" />    <ConfigurationSettings>      <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"                value="DefaultEndpointsProtocol=https;AccountName=StorageName;AccountKey=MyStorageKey" />    </ConfigurationSettings>    <Certificates>      <Certificate name="Certificate" thumbprint="certificatethumbprint" thumbprintAlgorithm="sha1" />    </Certificates>  </Role>
    ServiceConfiguration.Local.cscfg:
    <Role name="MyServiceWebRole">
        <Instances count="1" />    <ConfigurationSettings>      <!--Also tried with value = "UseDevelopmentStorage=true"-->      <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"               value="DefaultEndpointsProtocol=https;AccountName=StorageName;AccountKey=MyStorageKey" />    </ConfigurationSettings>    <Certificates>      <Certificate name="Certificate" thumbprint="certificatethumbprint" thumbprintAlgorithm="sha1" />    </Certificates>  </Role>
    ServiceDefinition.csdef:
    <WebRole name="MyServiceWebRole" vmsize="Small">    <Sites>      <Site name="Web">        <Bindings>          <Binding name="Endpoint1" endpointName="Endpoint1" />        </Bindings>      </Site>    </Sites>    <Endpoints>      <InputEndpoint name="Endpoint1" protocol="http" port="80" />    </Endpoints>    <Imports>      <Import moduleName="Diagnostics" />    </Imports>    <LocalResources>      <LocalStorage name="MyServiceWebRole.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />    </LocalResources>    <Certificates>      <Certificate name="Certificate" storeLocation="LocalMachine" storeName="My" />    </Certificates>  </WebRole>
    web.config (MyServiceWebRole project):
    <system.diagnostics>    <trace autoflush="false">      <listeners>        <add name="AzureDiagnostics"             type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics,              Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />      </listeners>    </trace>  </system.diagnostics>  ............<system.serviceModel>    <diagnostics>      <messageLogging maxMessagesToLog="3000"                      logEntireMessage="true"                      logMessagesAtServiceLevel="true"                      logMalformedMessages="true"                      logMessagesAtTransportLevel="true" />    </diagnostics>   ............ <runtime>    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">      <dependentAssembly>        <assemblyIdentity name="Microsoft.WindowsAzure.Diagnostics" publicKeyToken="31bf3856ad364e35" culture="neutral" />        <!--<bindingRedirect oldVersion="0.0.0.0-1.8.0.0" newVersion="2.2.0.0" />-->      </dependentAssembly>    </assemblyBinding>  </runtime>
    WebRole.cs (MyServiceWebRole project):
           public override bool OnStart()        {            //Trace.Listeners.Add(new DiagnosticMonitorTraceListener());            Trace.Listeners.Add(new AzureLocalStorageTraceListener());            Trace.AutoFlush = false;            Trace.TraceInformation("Information");            Trace.TraceError("Error");            Trace.TraceWarning("Warning");            TimeSpan tsOneMinute = TimeSpan.FromMinutes(1);            // To enable the AzureLocalStorageTraceListner, uncomment relevent section in the web.config            DiagnosticMonitorConfiguration diagnosticConfig = DiagnosticMonitor.GetDefaultInitialConfiguration();            // Transfer logs to storage every minute            diagnosticConfig.Logs.ScheduledTransferPeriod = tsOneMinute;            // Transfer verbose, critical, etc. logs            diagnosticConfig.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;            // Start up the diagnostic manager with the given configuration            DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", diagnosticConfig);            // For information on handling configuration changes            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.            return base.OnStart();        }
    AzureLocalStorageTraceListener.cs (MyServiceWebRole project):
    public class AzureLocalStorageTraceListener : XmlWriterTraceListener    {        public AzureLocalStorageTraceListener() : base(Path.Combine(GetLogDirectory().Path, "MyServiceWebRole.svclog"))        {        }        public static DirectoryConfiguration GetLogDirectory()        {            try            {                DirectoryConfiguration directory = new DirectoryConfiguration();                // SHOULD I HAVE THIS CONTAINER ALREADY EXIST IN MY LOCAL STORAGE?                directory.Container = "wad-tracefiles";                directory.DirectoryQuotaInMB = 10;                directory.Path = RoleEnvironment.GetLocalResource("MyServiceWebRole.svclog").RootPath;                var val = RoleEnvironment.GetConfigurationSettingValue("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString");                return directory;            }            catch (ConfigurationErrorsException ex)            {                throw ex;            }        }    }
    I also tried to comment out element in ServiceDefinition.csdef file. but here, I am having build time error (The XML specification is not valid).
    In my case, I am pushing all source code to bitbucket repository and from there it is deployed to the azure "WebSite". Here is more details:
    I need help to know:
    Why my service did not creating .svclog file from local to azure?
    It's also not doing the same even it has been deployed to azure?
    On which location(container) I can get the .svclog file into local storage?
    Please suggest correct way or modification so that I can overcome with this issue. Please replay fast.
    Thanks.

    Hello _Adian,
    Thanks for response.
    I uploaded all my code on bitbucket repository and configured a website on portal using "Integrate source control" (please refer:  http://azure.microsoft.com/en-in/documentation/articles/web-sites-publish-source-control/).
    (NOTE: This is the way my client is following.)
    Here is the structure of my solution:
    1. a wcf service application (.svc)
    2. few class library projects
    3. Azure cloud service (with Project 1 as web role).
    Now whenever I push my updated code to bitbucket, It automatically deployed to azure.
    So, please suggest me how can I create a separate .svclog file into local storage (using above environment).
    I hope this info will helpful to you for answer.

  • Error when signing into Elements 10

    After I sign into Elements 10, this is the message box that immediately pops up:  "Photoshop.com services are currently unavailable.  Please try again later or check your network connections.  Error 400."  I have looked all over Photoshop.com to see if there is anything posted as to why they are unavailable but see nothing.  I have no other issues with my network connections, just when I try signing in to this.  Any ideas?  Figures that I actually really need it at the moment and can't get in.  Any help or information would be great. 

    I did receive all of those emails but I guess I didn't realize that I would no longer be able to use the software that I purchased earlier this year Elements 10 with the change from photoshop.com to revel.  I just thought that meant the pictures were being stored different.  I can't even get into just use the software to edit a picture.  I guess I am not sure what has to be done differently because when I click on my icon on my desk top to use Elements 10, it brings up the Welcome to Adobe Photoshop Elements 10 screen and here it asks for me to sign in with my Adobe ID which is where I would go to Organize or Edit.  So you say that it can't work from revel within PSE the way it did with photoshop.com, what do I do instead to be able to use the software to edit?  If I sign into Revel, I see the pictures there but I don't use the storage function to organize my pics, I just use the edit function of Elements 10.  It seems you are saying that I bought this software and now can't use it??

  • Error: SearchException when signing into iFolder admin page

    This is what I got when I attempted to sign into the administration page today on my iFolder 3.8.0 server.
    Server Version: 1.8.3.0
    HostName: ifolder
    MachineName: ifolder
    OS Version: Unix 2.6.27.7
    CLR Version: 2.0.50727.1433
    Exception detail:
    Exception type: SearchException
    Simias.SearchException-Invalid Search expression = In b5c309c7-791e-425f-b547-2106afff4150 Collection, Return all Records with Display Name Begins .
    at System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReceiveResponse (System.Net.WebResponse response, System.Web.Services.Protocols.SoapClientMessage message, System.Web.Services.Protocols.SoapExtension[] extensions) [0x00000]
    at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke (System.String method_name, System.Object[] parameters) [0x00000]
    at iFolderAdmin.GetServers () [0x00000]
    at (wrapper remoting-invoke-with-check) iFolderAdmin:GetServers ()
    at Novell.iFolderWeb.Admin.Policy.Page_Load (System.Object sender, System.EventArgs e) [0x00000]
    at System.Web.UI.Control.OnLoad (System.EventArgs e) [0x00000]
    at System.Web.UI.Control.LoadRecursive () [0x00000]
    at System.Web.UI.Control.LoadRecursive () [0x00000]
    at System.Web.UI.Control.LoadRecursive () [0x00000]
    at System.Web.UI.Control.LoadRecursive () [0x00000]
    at System.Web.UI.Page.ProcessLoad () [0x00000]
    at System.Web.UI.Page.ProcessPostData () [0x00000]
    at System.Web.UI.Page.InternalProcessRequest () [0x00000]
    at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context) [0x00000]
    Any thoughts? The client sync works, but it doesn't help when I can't adjust folks storage needs and they run out of space. The web access side seems to work as well. Any help is really appreciated!!

    scragman,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Firefox stops responding for about 30 seconds after hitting Enter on any website's search bar, even the built in Google search or when signing into Facebook.

    As the title says, I run Firefox Beta 6 and just reinstalled Windows 7 Professional on my system due to seriously messed up Windows update, and when I downloaded and installed Firefox, I noticed every time I searched using the Google search next to the URL bar, FF would freeze for about 30 seconds to a minute, with nothing running in the background and no other programs running. I also disabled all Add-Ons and it still continues to act up, so that leads me to believe it's a FF issue, but even on every other website when using the search bar as soon as I hit enter, it locks up and stops responding then goes back to normal about 30 secs later, or if I sign into Facebook it does the same, and even when I had the FF 5 Beta before I had to reinstall I never had a problem.

    I managed to solve this problem as my computer has been giving me problems lately and completely froze on me the other day thanks to Game Booster Beta 3 and completely screwed with Windows 7 to the point I almost had to reinstall again, but I managed to fix all my problems and if you would just follow my link here over to my post on Seven Forums then it would be easier then explaining it again.
    http://www.sevenforums.com/system-security/180714-windows-7-professional-64-bit-logs-but-almost-frozen-3.html#post1550277 The reason for this is if you shut down your computer while running Firefox, it's possible you corrupted your User Profile for FF and if you follow my instructions you can repair it instead of making a new, so just follow the link, read my post and if you have anymore problems just message me on Seven Forums. Have a nice day and hopefully you get it all fixed. :b

  • How do I sign out of my account after logging in? There is no sign out button when signing into my apple account using safari

    Every time I sign into my apple ID account online I cannot log out by clicking a "sign out" button.
    This is quite strange. Closing the browser window doesn't automatically log me out either.
    I know with itunes there is a sign out or log out button but not with signing in your account online.
    I had to change some personal information which is why I noticed it.

    I'm on a PC.  Maybe that makes a difference.  And I went directly to apple.com; I did not launch the store from Itunes -- so perhaps that's the difference.
    Whatever it is I am never presented with a command bar that looks anything like yours.
    The following image is from when I am actually accessing my account data:
    No log-in; no screenname; no log-out -- And yet I am in a secure domain.

  • Getting "an unknown error has occurred" when signing into apps store

    I'm getting "an unknown error has occurred' when I tried to sign into Apps Store from one of my Mac Air. This is the only device that is having sign in problem. I can sign into Apps Store from another Mac Air, iPad and PC. What gives?

    Make sure Date and Time settings are correct.

  • Error Message When Signing Into Firefox Support Account

    On mulltiple attempts I tried signing into my Firefox account over the last few days, and although my username popped up at the top I otherwise was unable to access my account or post questions, and got the message "An Error Occurred. Oh, no! It looks like an unexpected error occurred. We've already notified the site administrators. Please try again now, or in a few minutes." This happened several times whether I used Firefox and IE, and even after I cleared my browser, cookies, cache, etc., and after I reset my Firefox. However, now I am able to access my account and no longer get the error message after changing my IP address by using a proxy server. Why is this? Any insight would be appreciated.

    Thanks for the response. In fact the problem persists when I try to login with the IP address assigned by my ISP, and when I use another IP address from a proxy server I am allowed to log in. Very strange. Could some malicious hacker be targeting my IP address to prevent me from axcessing the forum? I can access all other websites with my assigned IP address but not this forum, and only when I use a different IP address through the proxy server can I get through. The error message that is generated by the Mozilla support forum keeps saying that the site's administrators have been advised of the problem and to try again later but it's not yet fixed, and my use of the proxy server is just a temporary work around.

  • When signing into FaceTime on my laptop it says the receiver encountered an error during registration. help please

    When i try to sign into my facetime on my macbook pro it always comes up with a little red message saying that the server encountered an error processing registration. please try again later. how can i fix this and use my facetime?

    Hi,
    As the Other threads suggests I would check the Date and Time settings on the Mac and compare that with the settings in the router.
    Messages (and iChat before that) send Time stamped info to Login and to send IMs.
    Obviously most people set their Macs to their Time Zone and nearest city/town.
    What people sometimes forget is that their Router/Modem device(s) have to be set correctly as well.
    EDIT
    Also Add a Public DNS server to your System Preferences> Network > Advanced Button > DNS  tab
    A Google one such as 8.8.4.4 or 8.8.8.8 seem to work well for most people
    10:15 PM      Saturday; March 17, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)

  • An unknown error has occurred.when sign into the apple id website.

    can't sign into apple ID website & Device.
    and also can't sign into itunes store .
    can't download the apps also.
    please give a better solution for me i'm a new iphone user .

    Apple’s having trouble with the Mac App Store and iTunes App Store right now. Try again later.
    (123845)

  • I am getting error 0x80090318 when signing into ITunes

    I cannot sign into Itunes on this PC.  I get error 0x80090318.  How do I correct this?

    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    tt2

Maybe you are looking for