Can't resolve Azure publish recycle hang due to missing assembly Microsoft.WindowsAzure.Storage 2.1.0.3

Some info on the project: I'm attempting to deploy a simple azure cloud service with a single web role that using ASP.Net Identity and stores the user information in Azure Tables instead of in a database. To accomplish this I'm using the acidentalfish.aspnet.identity.azure
nugget package to help set up azure tables as a data source.
Everything runs fine when I run it locally, however when I try to publish to the cloud service it gets stuck in a role recycling loop. None of the error messages provided are very helpful. After some digging online I attached a debugger to WaIISHost,
and came across this error message:
System.IO.FileLoadException: Could not load file or assembly 'Microsoft.WindowsAzure.Storage, Version=2.1.0.3,
Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition
does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'Microsoft.WindowsAzure.Storage, Version=2.1.0.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
 ---> System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the
LoaderExceptions property for more information.
   at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
   at System.Reflection.RuntimeModule.GetTypes()
   at System.Reflection.Assembly.GetTypes()
   at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly entryPointAssembly)
   --- End of inner exception stack trace ---
   at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly entryPointAssembly)
   at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.CreateRoleEntryPoint(RoleType roleTypeEnum)
   at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.InitializeRoleInternal(RoleType roleTypeEnum)
stack trace producing errors produced before this one, mostly revolving around Output endpoint SecureWebRoleExample:Endpoint1 not found, followed by the claim that some WindowsAzure.Plugin class could not be found, and before that, that some setting couldn't
be found, but this error SEEMS like the most likely culprit.
The odd thing to me here is that none of my code is referencing 2.1.0.3, and I do have binding redirects set up redirecting versions 1.0.0.0-3.0.3.0 to 3.0.3.0, and I can't find a reference to 2.1.0.3 anywhere, so I'm not sure where it's coming from or why
it only has a problem when published.
Really the main issue is that it's stuck in a role recycling loop, and after days of digging into it this is the ONLY lead I have, since none of the logs seem to have any pertinent errors, and none of the other processes I've debugged have provided any pertinent
errors. If I'm not approaching this in the right way, or this error isn't as important as it seems, I would really like to know that too.
Thanks.

Hi BStephens,
I didn't find acidentalfish.aspnet.identity.azure in Nuget pakeage. But I followed stuartleeks 'scode
sample  and the
blog  to reproduce your problem, but failed. 
I follow this step:
1.Create a project and install leeksnet.AspNet.Identity.TableStorage form Manage Nuget Package.
2.Change connection string on webconfig and webrole setting
3.Change public AccountController() code, like this :
public AccountController()
: this(
new UserManager<ApplicationUser>(
new UserStore<ApplicationUser>(RoleEnvironment.GetConfigurationSettingValue("IdentityStore"),
id => id.GetHashCode().ToString()
It works fine in my local. I used Storage explore to check login user info.
But for this issue, I suggest you didn't need install Windows Azure Storage client library(https://www.nuget.org/packages/WindowsAzure.Storage/3.0.3
) from NuGet. If you installed it on your project, please remove it. Also, You could create a new project and try stuartleeks's blog step by step. Also, you could see this cloud service which I published on azure. You cloud access it use this IP(http://23.98.41.20:8080/
Any new info, please let me know.
Regards,
Will
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • NPTL - Can't do LD_ASSUME_KERNEL=2.4.x due to missing libs

    Some of you may be aware that the jack audio connection kit does not play nicely with the NPTL glibc due to problems setting priorities. A workaround for this is, apparently, to set LD_ASSUME_KERNEL to 2.4.19 before starting jack, to use the old threading system. This doesn't work with arch's NPTL glibc - every program that I try to start after setting this env variable complains of missing libs, like libc.so.6 (I think), so I assume that arch differs from other nptl distros in not including the libraries required. Or something. Is there something I can do about this?

    Ok - a glance at the jack-devel archives has solved this for me. Here is a patch I found there that works for me. I called it jacknptl.diff ...
    --- client.c.old 2004-04-14 05:38:32.000000000 +0200
    +++ client.c 2004-07-18 11:58:36.675323392 +0200
    @@ -1342,6 +1342,11 @@
    pthread_attr_init (attributes);
    + if (pthread_attr_setinheritsched (attributes, PTHREAD_EXPLICIT_SCHED)) {
    + jack_error ("cannot set inherit attributen");
    + return -1;
    + }
    +
    if (pthread_attr_setschedpolicy (attributes, SCHED_FIFO)) {
    jack_error ("cannot set FIFO scheduling class for RT "
    "thread");
    And here is a modified PKGBUILD that will build jack with this patch...
    # $Id: PKGBUILD,v 1.2 2004/07/13 23:17:44 tobias Exp $
    # Maintainer: tobias <[email protected]>
    # Contributor: Robert Emil Berge <[email protected]>
    pkgname=jack-audio-connection-kit
    pkgver=0.98.1
    pkgrel=3t1
    pkgdesc="a low-latency audio server"
    depends=('libsndfile' 'bash')
    makedepends=('doxygen')
    install=jack-audio-connection-kit.install
    url="http://jackit.sourceforge.net/"
    backup=(/etc/conf.d/jack-audio-connection-kit)
    source=(http://heanet.dl.sourceforge.net/sourceforge/jackit/$pkgname-$pkgver.tar.gz
    $pkgname.d $pkgname.conf.d jacknptl.diff )
    md5sums=('6ebd659a431e75b841fa5e0c397372ee' '4dcba5381e45bd449def164927854e48'
    '0517b67ef912e2a84b6a15dea2dc2680')
    build() {
    cd $startdir/src/$pkgname-$pkgver/libjack
    patch < $startdir/src/jacknptl.diff
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    install -D -m 755 ../$pkgname.d $startdir/pkg/etc/rc.d/$pkgname
    install -D -m 644 ../$pkgname.conf.d $startdir/pkg/etc/conf.d/$pkgname
    In case anyone wants that too.

  • Can't install ros-hydro-collada-parser due to "missing" header file

    Hello,
    I'm trying to install ros-hydro-desktop-full on this i686 arch laptop and I got stuck at compiling ros-hydro-collada-parser.
    Ros-hydro-collada-parser has collada-dom from aur as a dependency. I have installed it, and all the right files appear in the /usr/include/collada-dom2.4:
    [flyer@lapt ../ros-hydro-collada-parser]$ ls /usr/include/collada-dom2.4/
    1.4 1.5 dae dae.h dom.h modules
    The compilation fails with this:
    [ 50%] Building CXX object CMakeFiles/collada_parser.dir/src/collada_parser.cpp.o
    /home/flyer/.builds/ros-hydro-collada-parser/src/collada_parser/src/collada_parser.cpp:45:17: fatal error: dae.h: No such file or directory
    #include <dae.h>
    ^
    compilation terminated.
    CMakeFiles/collada_parser.dir/build.make:57: recipe for target 'CMakeFiles/collada_parser.dir/src/collada_parser.cpp.o' failed
    make[2]: *** [CMakeFiles/collada_parser.dir/src/collada_parser.cpp.o] Error 1
    CMakeFiles/Makefile2:94: recipe for target 'CMakeFiles/collada_parser.dir/all' failed
    make[1]: *** [CMakeFiles/collada_parser.dir/all] Error 2
    Makefile:116: recipe for target 'all' failed
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    The full output is here: http://pastebin.com/gAe8MNwb
    It works fine on my 64bit arch system. The collada-dom folder is exactly the same and cpp file (collada-parser.cpp) is exactly the same.
    How does this <dae.h> include work on my 64bit system and shouldn't it be <collada-dom2.4/dae.h> instead?
    Do you have any ideas of what could be the cause of this problem?

    Error "Installer Failed to Initialize" | Install desktop application | Windows

  • My mozilla does't opening new tabs & I am having very problem with my work due to this.Please tell me how can i resolve this problem.

    My mozilla does't opening new tabs & I am having very problem with my work due to this.Please tell me how can i resolve this problem

    The Ask Toolbar is causing that in the Firefox 3.6.13 version. Evidently something in that extension isn't compatible with a Firefox security fix. Disable that extension or un-install it.

  • I have recently had to have my PC software re-installed due to a virus attack. When I have re installed iTunes my computer keeps closing it with a message that DEP (Data Execution Programme) will not allow iTunes to function. How can I resolve this?

    I have recently had a full re-install of my computers software however once I have re installed iTunes it wont allow it to stay open and a message window reads iTunes has been closed due to DEP (Data Execution Programme). How can I resolve this issue?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT as you start iTunes) then going to Edit > Preferences > Store and turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    tt2

  • After upgrading to lion vevo, youtube, and hbo no longer plays videos. I'm assuming this is some kind of plug-in issue. How can I resolve it?

    After upgrading to lion, vevo, youtube, and hbo no longer plays videos. I'm assuming this is some kind of plug-in issue. How can I resolve it?

    Adobe has published a list of known issues relating to Mac OS 10.7 Lion here:
    http://kb2.adobe.com/cps/905/cpsid_90508.html
    The download page for Flash Player for Mac is here:
    http://get.adobe.com/flashplayer/?promoid=ISMRZ

  • How to reduce buffer busy waits, session hanging due to buffer busy waits

    Hi,
    How to reduce buffer busy waits, session hanging due to buffer busy waits.
    Thanks,
    Sathis.

    When I see through enterprise manager I see lot of
    tables with buffer busy waits.
    Is there any way by table name we can check the
    blocks info.
    The simple way is to look at the SQL statement and corresponding table name?
    P1=file#, P2=block#. You can extract segment name(table or index) using this info.
    Query v$bh like following:
    SQL> select file#, block#, class#, objd from v$bh where file# = P1 and block# = P2;
    SQL> select object_name from all_objects where object_id = <objd>;See following doc:
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_1051.htm
    Or you can dump block:
    SQL> alter system dump datafie <P1> block <P2>;Some excerpts from block dump:
    scn: 0x07df.17e70782 seq: 0x01 flg: 0x04 tail: 0x07822301
    frmt: 0x02 chkval: 0x61d0 type: 0x23=PAGETABLE SEGMENT HEADER
    Map Header:: next  0x00000000  #extents: 1    obj#: 55881  flag: 0x10000000>
    Can we do something at table level that will reduce
    the waits.
    Yes, some methods are known. But before thinking of that, you must verify which block class and which access are involved.
    Typo... always. :(
    Message was edited by:
    Dion_Cho

  • ITunes not displaying Talking Walking podcasts – how can I resolve this?

    iTunes not displaying Talking Walking podcasts – how can I resolve this?
    http://www.talkingwalking.net
    Created on iWeb version 3.0.4
    Mac OS X 10.6.8 (10K549)
    Upgraded to Snow Leopard in August 2010 from Tiger.
    Originally published 26 podcast episodes using IWeb to MobileMe and successfully had them in the iTunes store.  Then upgraded to Snow Leopard and had consistent problems publishing through iWeb, with messages appearing saying that the site hadn’t published on MobileMe or that the upload had timed out. 
    This meant that I had to upload the whole site whenever I made a slight change or published a new episode. Some of the pages failed to completely load on the website, and none of the new episodes appeared in the iTunes store.  However, it was still possible to subscribe to the new episodes through the website Subscribe button.
    Earlier this year, the original 26 episodes vanished from the ITunes store. 
    At the end of June, I moved my server from MobileMe to Rage and subsequently the website publishes without any time out messages or pages not fully functioning.  This means that when I come to make updates or add a new episode, I can speedily upload changes. 
    I have tried to resubmit the feed for the website to the iTunes store but Talking Walking still does not appear in the store (nor do any of the links to the individual podcasts from the website work), however, you can still subscribe to podcasts, but now only those uploaded since August 2010.
    I have sent an e mail to iTunes explaining my dilemma but have had no reply.
    Would welcome any suggestions as to how I can rectify this issue.  Next year is the fifth anniversary of Talking Walking podcasts and it would be nice to see them available again through the iTunes store.
    With thanks, Andrew
    [email protected]

    Your feed is at http://www.talkingwalking.net/public/Talking_Walking/rss.xml . It contains episodes running from 23 February 2008 to 20 September 2012 and when you subscribe to this feed in the iTunes application all the episodes appear. The link on your web page is to this feed, so subscribing from the page works OK,
    Searching for 'Talking Walking' in the iTunes Store produces a lot of result, none of them relevant or yours. This rather suggests that your podcast has been removed from the Store - if the feed wasn't functioning for an appreciable time this would be a normal reason for removal.
    if your feed was originally on MobileMe and you have moved it to another server you have to tell the iTunes Store about this by adding a special tag to the feed - details here:
    http://www.wilmut.webspace.virginmedia.com/notes/podcast.html#move
    If you did not do this - and it's now too late - the Store will have been stuck looking for the non-existent old feed, which will very likely get your podcast removed.
    You mention seeing the web page for the Store page - it's not possible to check this unless you post the URL.
    If the podcast has been removed from the Store you will have to re-submit it as a new one. Unfortunately there is a bug in the automated part of the submissions process which will tell you the feed has already been submitted, even when it's been removed. In order to get round this you will have to change the title of the feed slghtly. You can always change it back later provided that doing so does not change the feed URL - I think this may well happen if you are using iWeb, so be cautious about this.

  • Car blue tooth caller can't hear me clearly. How can I resolve this?

    I have just installed a MEX-N5050BT which is working well except my callers cant hear me clearly. How can I resolve this? I cant find any way of increasing the volume of sound through microphone. Any ideas appreciated.

    Hi dwTassie,
    Here's what you need to do to adjust the volume for the other party (Mic gain adjustment):
    -Press MIC (during call).
    -Adjustable volume levels: [MIC-LOW], [MIC-MID], [MIC-HI].
    For further assistance regarding your concern, please contact the Sony offices/Sony representative offices nearest to your place of residence in Asia Pacific region http://www.sony-asia.com/countryselector.html?hpid=countryselector:AsiaPacific. Due to proximity, they are in a better position to respond to your questions or concerns.
    If my post answers your question, please mark it as "Accept as Solution"
    Thanks,
    -Anthony

  • LABVIEW APPLICATION HANGS DUE TO INSUFICIENT MEMORY

    I AM USING LABVIEW 7.1. I BUILD ONE APPLICATION. IN THAT APPLICATION I USED MSCOMM ACTIVEX FOR SERIAL COMMUNICATION TO MY PLC. ALSO I USED TOOLBAR , STATUS BAR ACTIVEX IN MY APPLICATION. IT WORKS OK. BUT AFTER SOME TIME SOFTWARE GET HANGS DUE TO INSUFFICIENT MEMORY. I FOUND THAT AFTER 3SECOND THAT EXE SIZE IN MEMORY GET INCREASED BY 4K. WHY DON'T KNOW. PLEASE TELL WHY MEMORY SIZED INCREASED.

    How can we say why, without seeing your code ?
    -Check if you open references and not closing them.
    -Use "Performance and Memory" to see in which vi, the memory is increased

  • Error in Hashtable put method-Can not resolve symbol

    Hi there!I am new to using java.util.Hashtable.
    I am using it for a command line instant messaging program for holding the list of clients and list of client names currently connected to the server.
    However when I compile my server with the command javac server.java it seems to give errors can not resolve symbol method put (java.lang.object,int).
    Here is my code for my server:
    * @(#)server.java
    * @author
    * @version 1.00 2008/3/22
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.*;
    public class server {
              static int key1=0;
              static Hashtable nameHolder=new Hashtable();
              //static ArrayList nameHolder=new ArrayList();
              //static ArrayList clientsConnected =new ArrayList();
              static Hashtable clientsConnected =new Hashtable();
         public static void main(String[] args) throws IOException {
              //nameHolder.add("controlelement");
              Socket connect=null;
              String name =null;
              PrintWriter out=null;
              BufferedReader in =null;
              String machinename;
              int port=0;
         ServerSocket serverSocket = null;
         serverSocket = new ServerSocket(2222);
         boolean listeningports = true;
         try {
                   if(args.length > 0)
                   port = Integer.parseInt(args[0]);
                   System.out.println(port);
                   else
                        System.out.println("You must enter port number");
                        System.exit(1);
                   while(true)
                             System.out.println("Hakan");
                             connect=serverSocket.accept();
                   in = new BufferedReader(new InputStreamReader(connect.getInputStream()));
                        System.out.println("Hakan");
                   String girdi = in.readLine();
                   StringTokenizer nameAl=new StringTokenizer(girdi);
                   String ad=null;
                   String host=null;
                   int portofclient=0;
                   int m=0;
                   while(nameAl.hasMoreTokens())
                        if(m==0)
                             ad=nameAl.nextToken();
                             System.out.println("Adim"+ad);
                        else if(m==1)
                             host=nameAl.nextToken();
                             System.out.println("Hostum"+host);
                        else if(m==2)
                             portofclient = Integer.parseInt(nameAl.nextToken());
                             System.out.println("Listening portum"+portofclient);
                             break;
                        m++;
                   out = new PrintWriter(connect.getOutputStream(), true);
                   System.out.println("Haso");
                   if(!isUsed(ad))
                        System.out.println(girdi);
                        System.out.println("H�so");
                        //Object fason=(Object)ad;
                        nameHolder.put(key1,ad);
    //The error seems to occur here
                        client myclient=new client(ad,host,portofclient);
                        //Object garson=(Object)myclient;
                        clientsConnected.put(key1,myclient);
                        key1++;
                        //clientInfoHolder.add(girdi);
                        out.println("Kullan&#305;mda");
                        System.out.println("Haso");
                        new MultiClientManager(connect).start();
                   else
                        //System.out.println("kulanilmaz");
                        out.println("Kullanim disi");
         catch(Exception e)
              System.out.println("You did not specify port number");
              System.out.println("Or connection was not established due to specifying invalid or used port");
              e.printStackTrace();
         public static boolean isUsed( String name )
                   if( nameHolder.containsValue(name) )
                        return true;
                   return false;
         public static client Ask(String name)
              ArrayList lombak=(ArrayList) clientsConnected.values();
              for(int i=0;i<lombak.size();i++)
                   client semsi = (client)lombak.get(i);
                   if(semsi.nickname.compareTo(name)==0)
                        return semsi;
              return null;
         public static int returnkeyoffromclients(String name)
              ArrayList lombak=(ArrayList)clientsConnected.values();
              for(int i=0;i<lombak.size();i++)
                   client semsi = (client)lombak.get(i);
                   if(semsi.nickname.compareTo(name)==0)
                        return i;
              return 0;
         public static int returnkeyoffromnames(String name)
              ArrayList lombak=(ArrayList)nameHolder.values();
              for(int i=0;i<lombak.size();i++)
                   String semsi = lombak.get(i).toString();
                   if(semsi.compareTo(name)==0)
                        return i;
              return 0;
    }

    Excuse me for not putting my code between tags. I am just sleepless.
    I am sending it again.
    * @(#)server.java
    * @author
    * @version 1.00 2008/3/22
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.*;
    public class server  {
              static int key1=0;
              static Hashtable nameHolder=new Hashtable();
              //static ArrayList nameHolder=new ArrayList();
              //static ArrayList clientsConnected =new ArrayList();
              static Hashtable clientsConnected =new Hashtable();
             public static void main(String[] args) throws IOException {
                  //nameHolder.add("controlelement");
                  Socket connect=null;
                  String name =null;
                  PrintWriter out=null;
                  BufferedReader in =null;
                  String machinename;
                  int port=0;
                 ServerSocket serverSocket = null;
                 serverSocket = new ServerSocket(2222);
                 boolean listeningports = true;
                 try {
                        if(args.length > 0)
                             port = Integer.parseInt(args[0]);
                             System.out.println(port);
                        else
                             System.out.println("You must enter port number");
                             System.exit(1);
                        while(true)
                                  System.out.println("Hakan");
                                   connect=serverSocket.accept();
                             in = new BufferedReader(new InputStreamReader(connect.getInputStream()));
                                  System.out.println("Hakan");
                             String girdi = in.readLine();
                             StringTokenizer nameAl=new StringTokenizer(girdi);
                             String ad=null;
                             String host=null;
                             int portofclient=0;
                             int m=0;
                             while(nameAl.hasMoreTokens())
                                  if(m==0)
                                       ad=nameAl.nextToken();
                                       System.out.println("Adim"+ad);
                                  else if(m==1)
                                       host=nameAl.nextToken();
                                       System.out.println("Hostum"+host);
                                  else if(m==2)
                                       portofclient = Integer.parseInt(nameAl.nextToken());
                                       System.out.println("Listening portum"+portofclient);
                                       break;
                                  m++;
                             out = new PrintWriter(connect.getOutputStream(), true);
                             System.out.println("Haso");
                             if(!isUsed(ad))
                                  System.out.println(girdi);
                                  System.out.println("H�so");
                                  //Object fason=(Object)ad;
                                  nameHolder.put(key1,ad);
                                  client myclient=new client(ad,host,portofclient);
                                  //Object garson=(Object)myclient;
                                  clientsConnected.put(key1,myclient);
                                  key1++;
                                  //clientInfoHolder.add(girdi);
                                  out.println("Kullan&#305;mda");
                                  System.out.println("Haso");
                                  new MultiClientManager(connect).start();
                             else
                                  //System.out.println("kulanilmaz");
                                  out.println("Kullanim disi");
                 catch(Exception e)
                      System.out.println("You did not specify port number");
                      System.out.println("Or connection was not established due to specifying invalid or used port");
                      e.printStackTrace();
             public static boolean isUsed( String name )
                       if( nameHolder.containsValue(name) )
                            return true;
                       return false;
             public static client Ask(String name)
                  ArrayList  lombak=(ArrayList) clientsConnected.values();
                  for(int i=0;i<lombak.size();i++)
                       client semsi = (client)lombak.get(i);
                       if(semsi.nickname.compareTo(name)==0)
                            return semsi;
                  return null;
             public static int returnkeyoffromclients(String name)
                  ArrayList lombak=(ArrayList)clientsConnected.values();
                  for(int i=0;i<lombak.size();i++)
                       client semsi = (client)lombak.get(i);
                       if(semsi.nickname.compareTo(name)==0)
                            return i;
                  return 0;
             public static int returnkeyoffromnames(String name)
                  ArrayList lombak=(ArrayList)nameHolder.values();
                  for(int i=0;i<lombak.size();i++)
                       String semsi = lombak.get(i).toString();
                       if(semsi.compareTo(name)==0)
                            return i;
                  return 0;
         These are the lines that are responsible from the error.
    nameHolder.put(key1,ad);
    client myclient=new client(ad,host,portofclient);
    //Object garson=(Object)myclient;
    clientsConnected.put(key1,myclient);

  • 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

  • [NeverMind] Pacman Can't Resolve Domain Names, Yet Internet Works Fine

    I've had my Arch box off for over a month due to getting my motherboard replaced. I finally got the board in yesterday and got everything hooked up, then went to go upgrade my system but pacman says that it can't resolve any addresses, yet I can browse the web and ping the repos just fine. What am I missing here?
    [bran@ra ~]$ sudo pacman -Syyu
    :: Synchronizing package databases...
    error: failed retrieving file 'multilib.db' from mirror.us.leaseweb.net : Resolving timed out after 10519 milliseconds
    error: failed retrieving file 'multilib.db' from mirror.nl.leaseweb.net : Resolving timed out after 10519 milliseconds
    [bran@ra ~]$ ping mirror.us.leaseweb.net
    PING mirror.us.leaseweb.net (108.59.10.97) 56(84) bytes of data.
    64 bytes from mirror.us.leaseweb.net (108.59.10.97): icmp_seq=1 ttl=51 time=32.6 ms
    64 bytes from mirror.us.leaseweb.net (108.59.10.97): icmp_seq=2 ttl=51 time=33.7 ms
    64 bytes from mirror.us.leaseweb.net (108.59.10.97): icmp_seq=3 ttl=51 time=32.0 ms
    I can even go to the site and browse through the repo so everything is obviously up. I just put the IP of the US mirror in my mirrorlist and it works fine so something is definitely up with pacman and DNS.
    Last edited by brando56894 (2014-02-07 02:40:58)

    I switched from my Linksys E3000 to a WRT54G2 since I bricked the E3000 trying to upgrade Tomato, it may be salvageable. The 54G2 didn't have any DNS addresses set but I added in Google's and it may have worked, I forget since I did a 30/30/30 wipe on it and had my pc directly connected to the cable modem.

  • Essbase server is hanging due to BSO applications

    Hi All,
    We upgraded from 9.3.1 to 9.3.3 in august and since then we are having issues. We have about 12 BSO applications, Size is 2GB each. After the upgrade when the users do some operations sucn as rerteval or outline edits etc the essbase hangs and we have to reboot to resolve this issue but after sometime (1 hour later) on performing the same operations it hangs again.
    We initially thought it is the server problem, so we migrated all these 12 apps to 3 diferent servers and the other server also started hanging due to these apps. SO this solidifies that there is something wrong in these BSO applications...Any ideas????
    System info: Windows environment
    sever: windows server 2003
    hyp - 9.3.3
    Oracle support also jumped in but could not resolve the issue.
    Any help would be appreciated.
    Thanks!!!

    Have a look on Essbase conf file
    for netdelay and net recount try increaseing 1000 each and look for diffrence
    Also look on avaiable RAM on server. Allot 2 gb per application
    let say you have 12 app then 12*2=24 + 6 Gb i.e=30gb so better get 32gb
    up to my understanding since ram seq goes 8 ,16, 32, 64
    also look at your processor how many core have alloted
    Have a read on :http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag/frameset.htm?part_optimize.html

  • Have tried to open my itunes and the message given states that itunes can not be opened due to missing files.  Please reinstall itunes. Repeated attempts to reinstall give the same result...any ideas?

    Have tried to open my existing itunes but it states that it can not be opened due to missing files...please reinstall itunes. Repeated attempts to reinstall are to no avail....any ideas?

    I assume you are talking about iTunes on your computer, if so, you will have to remove all Apple programs associated with iTunes:
        iTunes,  QuickTime, Apple Software Update, Apple Mobile Device Support, Bonjour and Apple Application Support (iTunes 9 or later)
    Make sure everything that is by Apple is removed including Safari. You can sort by "Publisher", when you uninstall programs.  Make sure you have at least one other web browser (like Firefox or Internet Explorer) before removing Safari. That way you can go back to the Apple web site and redownload iTunes later.
    Reboot the computer then reinstall iTunes.  Everything should work normally.

Maybe you are looking for

  • Analysis Authorization

    We have a need to restrict the majority of our users from seeing transactions of few business accounts.  The restricted accounts can be based on a specific gl account, fund range, or they can be a combination of a fund and cost center (or fund and fu

  • What causes the Missing or invalid version of SQL library PSORA (200,0)?

    What causes the Missing or invalid version of SQL library PSORA (200,0) in PeopleTools 8.51 Application Designer?

  • Can your ipad every be hooked up wirelessly to a printer?

    i am looking to buy an ipad air and a new printer but i want to make sure that im going to be able to either wirelessly or through bluetooth be able to hook up and print stuff ? any suggestions or know printers that will be this

  • Double charge to bank account, amount never arrive...

    My HSBC bank account was charger TWICE the 7th May, 8.50 and 8.69 pounds, because of the rates varied from € to £ and the amount has never arrived to my Skype account. Where is it and how can I get it back? Dumb auto-recharge is now disabled and my a

  • Multiple UDA properties in a Dimension -- Is it possible?

    I want to create two UDAs to define two propeerties in a dimension. Say, I have a customer dimension and I want to define two properties like 1) Customer Categories (Values may be anyone like Normal, Important, Very Important) and 2) Customer Territo