Tagged Questions
0
votes
2answers
41 views
?Can I host a MVC3 website on an Azure Web Site or I need to create a Cloud Service?
Can I host a MVC3 website on an Azure Web Site ?
I try to deploy an MVC3 website to Azure Web Sites (in preview).
If I leave the web.config file I got an error.
If I remove the web.config file, like ...
1
vote
1answer
37 views
How to get signed in user identity in a website after signing in with another website using ACS
I have one website which is configured to use Azure ACS. When the user signs to this website, how will I get the user identity when he visits another one of my website so that the user will not need ...
0
votes
2answers
81 views
Azure Storage Emulator Error Accessing Blobs
Just noticed a strange issue. I can no longer access the blobs (iamge files) that are stored in my Azure Storage Emulator. First noticed that my web role wasn't serving up my files from emulator ...
1
vote
2answers
38 views
Hosting cloud service - general practice
These days i m trying my hands on windows azure, Its amazingly great.
My question is about cloud service deployment practice every time.
First time when i m setting up my cloud service env then I ...
0
votes
2answers
86 views
AZURE ACS - Windows Live ID: How to identify Unique User
For my web application I am using Azure ACS for authentication. I follow this
[1]: http://msdn.microsoft.com/en-us/library/hh127794.aspx to implement my code. I only authenticate Windows Live users ...
0
votes
1answer
68 views
Make change to a .cshtml file on Windows Azure Cloud Service
We have a custom CMS site in which the admin can make a change to the _Layout.cshtml (since they are making lots of changes). The site was hosted in Azure Web Sites, but now we are moving it to Cloud ...
1
vote
0answers
37 views
ASP.Net IgnoreRoutes Does not work
I have an svg file as my assets and in routeconfig, I have mentioned the below code
routes.IgnoreRoute("{*svg}", new { svg = @"(.*/)?.svg(/.*)?" });
This seem to be working fine with cassini ...
1
vote
1answer
90 views
What is the best practice for keeping a background task running inside the Cloud Service application domain?
I running a Windows Azure Cloud Service. I need a background task constantly running inside my Cloud Service application domain, so a extenal worker role isn't an option. This is because I need to ...
1
vote
2answers
305 views
RouteTable.Routes.MapHubs() throwing ArgumentNullException only in the Windows Azure emulator. Why?
I'm using SignalR in an MVC 3.0 Windows Azure application.
The following line throws an ArgumentNullException only in the Windows Azure emulator. It doesn't throw if I run the MVC 3.0 application ...
0
votes
1answer
66 views
How to use miniprofiler to help us crush loading speeds?
As a developer and constant user of minipfoler, I use stakoverflow as the benchmark for my .NET sites. That is because the entire stack network is just a blazingly fast.
I know miniprofiler is used ...
2
votes
1answer
64 views
Is it possible to encrypt a Web.Config connection string on an Azure web site hosted on the Free web site model
There's plenty of articles that show how to encrypt a Web.Config connection string but they all require the admin to upload a certificate.
I can't see any way of uploading a cert to a site hosted in ...
0
votes
1answer
80 views
Is it possible to protect Azure connection strings that are referenced with CloudConfigurationManager?
I've read the MSDN blog posts on protecting sensitive data in web.config by encrypting the contents and setting up a certificate on Azure so they can be read back.
However, there is top-secret data ...
2
votes
0answers
142 views
Azure 1.4 MVC3 session state and caching
I'm having trouble implementing a session state with Azure cache, when running on multiple instances.
This is what I did while following various tutorials:
1 - set up caching: I've added a caching ...
1
vote
0answers
37 views
ASP .NET MVC3 emulate
I'm trying to get an ASP .NET 4 MVC 3 website into a web application with a roll to deploy it to azure. When I try to run it in emulator I get this:
Resolution of the dependency failed, type = ...
0
votes
1answer
96 views
Is there a no activity timeout delay with MVC running on Windows Azure with the SQL Server?
I have a new application with no users. I know the first time when I publish to Azure there's a delay as code is compiled. However after the application has been used if I try to access it again in ...
0
votes
0answers
49 views
MacineKey required in web.config on azure web roles?
Is the machinekey in web.config required in order to not loose Cookies on publishing a new version to Azure? I have upgraded to the latest Azure SDK 1.8, and specified:
<machineKey ...
3
votes
1answer
156 views
MVC3 Web Project Error: “An attempt was made to access a socket in a way forbidden by its access permissions 10.10.0.1:3128”
I published my MVC3 web project to Azure. When I tried to authorize with fb, I get an error below.
Additional info:
callbackUrl = http://site.azurewebsites.net/Facebook/AddSocialAccount
...
3
votes
1answer
66 views
Membership Roles in Azure and MVC
I'm developing an ASP.NET MVC3 website and I'm using the Microsoft ASP.NET Universal Providers.
Web.config :
<connectionStrings>
<add name="MyContext" connectionString="data ...
1
vote
1answer
122 views
Sending email in a queue such as MSMQ
I have asp.net MVC 3 application that sending various emails such as client registration, activation etc
Currently using smtpclient and smtp server authsmtp.com. In last 3 months there was number ...
0
votes
1answer
75 views
Is it inefficient to run VS2012 and my SQL Server on the same machine? [closed]
I am developing a ASP.NET MVC4 application that runs on Azure. I use simple membership for authentication and my data is mostly stored in tablestorage. This includes the source for web pages which is ...
0
votes
1answer
96 views
best practices for application logging azure web applications? [closed]
I am developing an application using asp.net mvc 3, windows azure. i am looking for suggestions for error logging and application logging.
0
votes
3answers
157 views
signalr with windows azure hosting [closed]
I have been using signalR and I realized that you need .Net 4.5 to run it, but it seems as though Azure only allows .Net 4.0. Does anyone have any workarounds? Or would I have to find a hosting that ...
1
vote
1answer
122 views
403 and 404 errors on html files downloaded from blob storage into webrole
I'm trying to use static .html pages for a website that encounters large traffic spikes. The website is an MVC3 app. The static .html pages are in a directory structure something like the following:
...
0
votes
0answers
63 views
Azure emulator and forms authentication
I've got problem with forms authentication in Azure Emulator (debug mode) in my asp.net mvc 3 project. Everything was working fine, when I was using Visual Studio 2010. After migrating to VS 2012, ...
0
votes
3answers
70 views
Where can I store a copy of the source code for my ASP.NET MVC application?
I have a MVC4 application that runs on the cloud. I keep multiple backups but I would like also to have a backup some place online.
Does anyone have any suggestions as to where I could put this ...
0
votes
0answers
55 views
Windows Azure is triggering a RuntimeBinderException when I try to set a ViewBag property
I'm cheking my service's Intellitrace logs and it's recording several RuntimeBinderException when I try to set ViewBag properties:
'System.Dynamic.DynamicObject' does not contain a definition for ...
2
votes
1answer
312 views
ASP MVC4 and Azure - Bundling and Minification stopped working for me when I publish to Azure
In the Windows Azure Publish Settings I have selected:
Environment: Production
Build Configuration: Release
In my Web.Release.config I have:
<system.web>
<compilation ...
1
vote
2answers
250 views
ACS after session start
I am trying to create an ASP.NET MVC site that has specific areas protected by Windows Azure ACS. I want the default area to be unprotected (i.e. allow anonymous users) but only the sub areas to be ...
1
vote
0answers
148 views
How to use new Azure bing api translate with javascript
Before new bing API was released I could simply translate text on my website by using simply Javascript.
It looked like this:
function getTranslations() {
var languageFrom = ...
3
votes
3answers
290 views
Why use an Azure Cloud Service Project instead of an ASP.NET project with the Azure SDK?
I'm playing with Azure asp.net development. I use Visual Studio 2010, with Azure SDK and I'm a newbie to Azure cloud.
I created several apps and deployed them to my testing Azure Web Site. Everything ...
0
votes
1answer
157 views
Azure web role start on deploy
I am working on creating a messaging service that runs in the background of my web role. When the web role starts up it starts a Quartz job that runs once a day and sends some emails. I now have my ...
2
votes
1answer
304 views
How do i set .net MVC4 application to use azure storage instead of sql server
I would like to use .new built-in security and authentication method in MVC4 work with azure storage, the meaning is, instead of creating users on SQL database i want to create them on Azure storage, ...
0
votes
1answer
142 views
Deploy asp.net mvc 3 application with azure table storage as web site
I'm new to azure, but I looked try the samples on offical azure site. I have developed
a 3 tier web application like so:
dal layer with repositories (data in azure table storage and blob storage)
...
0
votes
1answer
790 views
Tables without a clustered index are not supported in this version of SQL Server
I am working on vs 2010 and EF 4.1 with SQL server database.
Below mentioned code works fine with local SQL server DB.(SQL 2008).
But when I published the MVC application for windows AZURE cloud and ...
1
vote
2answers
171 views
Azure ASP.NET MVC 3 app won't show css/js after windows reinstall
I have had to reinstall windows over the weekend (win 7 ultimate 64 bit), and have reinstalled Visual Studio, specifically VS 2010 Ultimate, along with the Azure SDK, EntityFramework, and some other ...
5
votes
2answers
821 views
Azure Deployment to new OS Family
I have recently updated my web application to target ASP.NET 4.5 which requires a deployment to a Windows Server 2012. achieved by setting the osFamily value to 3 in the ServiceConfiguration ...
1
vote
1answer
320 views
Azure Session Cache Error
I've started getting an Azure Cache Error thrown repeatedly. It appears to be to do with expired sessions. This is a random sample - it happens for static files.
Event code: 3005
Event message: An ...
0
votes
1answer
170 views
Connection of MVC3 database to azure cloud server
I have tried connecting my webapp database to the azure cloud server using a connectionstring (provided by azure) from the web.config. But theres always an error that says "Format of the ...
3
votes
1answer
355 views
Membership authentication on windows azure ASP.NET MVC 3 - couldn't find column
I've try to migrate my ASP.NET MVC 3 project (with CodeFirst) to Windows Azure. Offcurse I changed the Providers.I've check the azure sql db and there are new tables like: Applications, Memberships, ...
0
votes
1answer
125 views
Azure: security between web roles
In Azure, if you choose to use internal endpoint (instead of input endpoint), https is not an option. http & tcp are the only options. Does it mean internal endpoint is 100% secure and you don't ...
1
vote
1answer
1k views
SimpleMembership MVC3 Could not load file or assembly WebMatrix.Data
I'm using the SimpleMembership.MVC3 package to manage membership. Everything works fine at development but when I deploy to my Azure web role, It throws the following exception:
Could not load ...
0
votes
1answer
181 views
MVC3 AsyncController - Can we send heartbeat data to the client?
In order to overcome the (apparent) 4 minute idle connection timeout on the Azure load balancer, it seems necessary to send some data down the pipe to the client every now and again to keep the ...
1
vote
3answers
486 views
Azure Service Bus - Two Way Communication Performance Challenge
I need to establish a two-way communication between a Publisher and a Subscriber. This is to facilitate a front-end MVC3 application defining a Subscription with a Correlation Filter, and then placing ...
1
vote
1answer
534 views
Azure AppFabric caching. ErrorCode<ERRCA0017>:SubStatus<ES0006>
there is a very strange thing going on
i have a web site made in MVC 3 deployed in an Azure WebRole
it was running fine and originally was made in VS2010
now i use VS2012
i decided to make some ...
1
vote
1answer
472 views
Azure Web Role - Long Running Request (Load Balancer Timeout?)
Our front-end MVC3 web application is using AsyncController, because each of our instances is servicing many hundreds of long-running, IO bound processes.
Since Azure will terminate "inactive" http ...
2
votes
1answer
262 views
MVC3 AsyncController - Execute Synchronous I/O task
We plan to use AsyncController, since most of our requests will be long-running, I/O bound requests. The plan is to offload this processing to CLR threads, in order to keep the highest number of IIS ...
1
vote
1answer
713 views
Execute Code First Migrations is Grayed Out in Publish Settings
Using Windows Azure and attempting to publish my MVC3 Application. The check box for Execute Code First Migration in the settings panel of the Publish web application is grayed out. What changes do I ...
1
vote
2answers
140 views
I've successfully deployed a MVC3 website on windows azure but it didn't work
I've made a free trial account on Windows Azure and I tried to deploy one of my MVC 3 projects. On my account on Windows Azure the website status is "running" and the database is "online". The deploy ...
0
votes
1answer
245 views
How to scale asp.net mvc app and wcf service independently
I have ASP.NET web apps and 1 wcf web service. I would like to deploy them to Azure so that they can scale out/up independently. i.e. i can give small VM to mvc apps and give big VM & more ...
0
votes
2answers
119 views
MVC3 and ACS ClaimsIdentity
I've been playing about with Azure ACS and its very cool and I think I'm going to use it in my next project..
One question I have though is when I get my ClaimsIdentity back, its pretty empty with ...