Tag Info

Hot answers tagged

2

if you are using an AWS instance and not RDS and you are going to an Azure instance and not "Azure SQL Database" you can use log-shipping or something similar to get the downtime down to a few seconds: http://msdn.microsoft.com/en-us/library/ms187103.aspx The steps you need to take: Take full backup on AWS restore full backup without recovery on Azure ...


2

Currently - you cannot modify any application pool settings of Azure Websites for any Mode (Free, Shared, or Reserved). There are few configuration settings you can control for Azure Websites. You will need to either use an Azure VM or Azure Web Role.


2

You need to create a DNS CNAME - you cannot use masked forwarding with Azure Cloud Services and SSL. See MSDN for reference - specifically item #6. Create a CNAME pointing test.iclassicmdm.com → testssl.cloudapp.net


2

There are a couple of things which jump out at me. First, try calling .Sagas() in your initialization code after Configure.With() and before .CreateBus(). Also, remove the Bus dependency on the saga - NServiceBus has that already defined on the saga class. Remove the ConfigureMapping call for CreateNewUser (unless you expect to receive multiple ...


2

If you want purely out-of-process, then it is pretty simple - something like the following, but noting that a BookSleeve is designed to be shared: it is fully thread-safe and works as a multiplexer - you shouldn't create / dispose them for every call. Note also that in this context I'm assuming you will handle serialization separately, so I'm simply exposing ...


2

Blob Storage is a completely independent service from your Cloud Service role instances (or Virtual Machine instances, or Web Sites instances). If you embed a URL to a blob, within an <img> tag, then the browser will make the request directly to Blob storage. The URL would actually start with http://yourname.blob.core.windows.net/container/blobname, ...


2

This works and is Atomic (all or nothing) if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Ooopsie]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN DROP TABLE [dbo].[Ooopsie] END GO CREATE TABLE [dbo].[Ooopsie] ( [OoopsieKey] [smallint] not null , OoopsieColumn varchar(64) not null ) GO IF EXISTS ( ...


2

You can simply check to make sure that the host the application is running under is the domain name you want. If it is not, then simply do a 302 redirect to the domain name you want. There are several places where you can inspect the request and do the redirect: - Global.asax - Custom module - Override the OnActionExecuting for action methods


2

The situation is not as bad as you interpreted it to be. The 20 minutes timeout of the IIS site does not consume cpu if there are no requests happening. The 240 minutes CPU/day means that a single core may be under full load created by your site for 240 minutes. So if you produce very litte CPU load with your application you can handle lots of ...


2

Generate the CSR signing request using your local machine. Upload the csr to godaddy. They will then generate a certificate based on your csr. Take a look at this link for more information. You would then need complete the certificate request on the machine on which you genertaed the csr This will help you generate a cer file which you would then need to ...


2

According to Amazon EC2 Documentation, a security group is just a single point for firewall settings applied to a given instance: A security group acts as a firewall that controls the traffic allowed to reach one or more instances. When you launch an instance, you assign it one or more security groups. You add rules to each security group that ...


2

If using ACS, you should get back an email address claim for Google, Yahoo, and maybe the others - all except Live ID/Microsoft Account. With Azure Mobile Services, I don't believe you get back the user's email address. You get back a token that identifies the user, and you could use that to query the identity provider's (e.g. Google) API for the user's ...


2

You can't set it as default, but you can simulate it with a trigger; CREATE TABLE employees ( employeeid INT NOT NULL IDENTITY, firstname VARCHAR(50), middlename VARCHAR(50), lastname VARCHAR(50), assumedfirstname VARCHAR(50), assumedname AS assumedfirstname + ' ' + lastname ); CREATE TRIGGER MyTrigger on employees FOR UPDATE, INSERT AS ...


2

Create an Azure Service Bus Queue and have your client apps post messages to the queue. Then your worker roles can pull messages from the queue and process the messages. The great thing about Service Bus Queues is that they guarantee that messages can only be pulled off the queue once, whereupon the message is marked as being 'acquired'. If the transaction ...


2

As you already know that Copy Blob operation is now asynchronous. Thus when you call StartCopyFromBlob operation on a blob, Blob Storage Service puts the copy operation in a queue. Since it's an async operation you wouldn't know when it will be processed. From what I understand, that the maximum time for that is 7 days i.e. a copy operation can take a ...


2

You use the system view sys.databases (without the master qualification, it is not needed) The system table sysdatabases has been deprecated since SQL Server 2005 (Azure is a later version) and in any case is not supported on Azure


1

In the Azure SDK 2.0 release we have addressed this scenario with the AutoDeleteOnIdle feature. This will allow you to set a timespan on a Queue/Topic/Subscription and the when no activity is detected for the specified duration, the entity will automatically be deleted. See details here, and the property to set is here.


1

I have not tried Helicon Rewrite on Azure yet, but i don't see any reason, why it should not work on Azure. A webrole has a fully manageable IIS, where Helicon Isapi Rewrite is not installed per default whereas IIS URL Rewrite 2.0 is! You can either install and configure it via Remote Connection or via "Startup Tasks". My suggestion to you: Try first to ...


1

Your approach is very similar to the sticky session issue with Tomcat servers. Since you live in a .NET world I highly suggest that you change your architecture to not relay on this sticky routing. If you really want to achieve that specific goal (which I don't imagine why one would want), it is possible through Application Request Routing. It is not easy, ...


1

Nope. currently there is no out-of-the-box solution to support incremental changes deploy. When working with Cloud Services I highly suggest that you do not use Web Deploy for anything else than development/testing. The reason is that all changes made via web-deploy and any other non-full-package-upload process will be wiped out as soon as an instance in ...


1

On your 1) question, yes messages sent to a topic will be sent to any matching subscription, even if that is Idle (based on your own logic). A subscription is a permanent artifact that you create that is open to receive messages, even when no services are dequeuing messages. To clean out subscriptions, you can probably use the AccessedAt property of the ...


1

Here are some suggestions that you might keep in mind while porting your application towards Azure: What is the reason to port your application to Azure? If you are really aiming at scalability, you might really need a loosely coupled distributed application. It is not clear if your current architecture is a really one of a distributed application of not, ...


1

Visual Studio 2012 Express For Web wouldn't do alone, in order to open an Azure project with it you have to install the Azure SDK after you have installed the VS.


1

One approach would be to use something like hint to invoke ghc as a service: http://hackage.haskell.org/package/hint You could also use mueval, if you remove the posix-dependencies within it: http://hackage.haskell.org/package/mueval


1

There is a hard limit of 180 connections on a database. If you for example have got a retry framework also in place when you start to get to this limit you will see the situation get worse as it try's to retry creating more connections to SQL Azure, increasing your issue. You will start to see errors like this : Exception Type: ...


1

There are a number of options here depending on the load and bandwidth you expect, what kind of service level agreement you need, the amount of control you want over the application, etc. Let me start by saying you can try all these options out - free - for 90 days with a trial account. The easiest (and cheapest) entry point would be Windows Azure Web ...


1

I assume by Azure and SQL Server you mean the SAAS Azure SQL Database (the names change faster than I can keep track), not the IAAS SQL Server on Windows Azure. First thing ou need to determine wether your application is being throttled, see Connection Constraints and give this article a good, thorrough read: Causes of Connection Termination. If your ...


1

It's expected on SQL Azure. It should happen on about 0.5% of the time, not 30%. Here's a previous question that addressed this topic Connection failures in SQL Azure are common. This is because your application will create a connection pool but while your side thinks these connections are over, Azure could terminate them at their end and you will ...


1

So after a lot of work it turns out that with the msbuild pipeline piece (#2) it will actually deploy the typescript files. One thing that I was missing was adding the appropriate mime type to handle typescript files. It turns out by default IIS wont server the TypeScript files correctly. To add the Custom mime type I did: <system.webServer> ...


1

You're on the right track, but... Remember that a Worker Role (or Web Role) is basically a blueprint for a Windows Server VM, and you run one or more instances of that role definition. And that VM, just like Windows Server running locally, can perform a bunch of tasks simultaneously. So... there's no need to create a separate worker role just for doing ...



Only top voted, non community-wiki answers of a minimum length are eligible