| bio | website | falconwebtech.com |
|---|---|---|
| location | Phoenix, AZ | |
| age | 53 | |
| visits | member for | 2 years, 10 months |
| seen | 6 hours ago | |
| stats | profile views | 86 |
After 20 years flying F-16s in the USAF, I've had a ton of fun and I'm now doing something I enjoy almost as much, developing code. I am a technology evangelist, focusing on web development – backend and frontend. I work with the Microsoft technology stack and really love combining the ASP.NET MVC/Razor platform with bleeding edge JavaScript solutions like node.js, backbone.js and jQuery.
I am currently having a blast as an Application Developer for DriveTime in Phoenix AZ developing client facing applications for Azure in .NET 4.5 and MVC 4.0
|
18h |
answered | MVC 4 Add Controller Error Unable to retrieve metadata for my Model |
|
20h |
comment |
IIS Application Initialization in Azure shows 500's periodically after an Upgrade Deployment You are getting 500s because you have clients hitting the server before it is fully deployed. We constantly update a production site with 10,000 users per day. We follow the standard Azure procedures - deploy new code to staging and test @ <guid>.cloudapp.net, then when ready, swap the VIP. The Azure load balancer gracefully handles moving clients from old instances to new instances. |
|
2d |
comment |
New-AzureDeployment times out on package upload We run the Build script on the TFS Build Server as a build task in the project. |
|
May 15 |
answered | New-AzureDeployment times out on package upload |
|
May 14 |
comment |
How to list DB data like this in MVC4? what have you tried? any code samples of exactly what you have tried? |
|
May 10 |
answered | Unable to pass a URL in GET request to a RESTful web service in C# |
|
May 9 |
comment |
Unable to publish a project into windows azure staging environment have you tried to "package" the project and deploy it manually via the Azure portal? |
|
May 3 |
revised |
Want implement cache in web role in azure emulator 1.8 for local and deployment edited body |
|
May 3 |
answered | Want implement cache in web role in azure emulator 1.8 for local and deployment |
|
May 3 |
comment |
My partial View is not showing error on validation and also on error my both view is getting opened up Do your models have validation attributes? Have you set breakpoints in your code to see if you are actually getting into the post methods? Typically, more than one form on a page is bad, unless you are handling posts client-side and disabling default behavior. |
|
May 3 |
answered | Why we need Transient Fault Handling for storage? |
|
Apr 30 |
comment |
Editor for collection with numbering I would get the MVC source here - aspnet.codeplex.com/wikipage?title=MVC - and look at how Html.EditFor() was built as a starter. |
|
Apr 30 |
comment |
Editor for collection with numbering you can if you write your own HTML Helper that extends Html.Editfor and does the same thing - iterates through the collection to return an OL |
|
Apr 30 |
answered | Editor for collection with numbering |
|
Apr 30 |
answered | Azure Queue too slow - About 2 minutes until the message is being picked up by Worker Role |
|
Apr 30 |
comment |
Azure Queue too slow - About 2 minutes until the message is being picked up by Worker Role see msdn.microsoft.com/en-us/library/b873y76a.aspx - Delimiter characters are not included in the elements of the returned array. |
|
Apr 30 |
comment |
Azure Queue too slow - About 2 minutes until the message is being picked up by Worker Role Also, are you adding the message back to the queue in processMessage(msg) - after the worker role retrieves the message and processes the message, you should delete the message, i.e. Queue.DeleteMessage(msg) |
|
Apr 30 |
comment |
Azure Queue too slow - About 2 minutes until the message is being picked up by Worker Role Also, since your message is "{0},{1}", your line: var processed = Convert.ToBoolean(messageParts[2]); - should be generating an error as messageParts should only be accessible as messageParts[0] or messageParts[1] - are you falling into a try/catch? |
|
Apr 29 |
revised |
Setting up SSL with WCF on Azure edited body |
|
Apr 26 |
revised |
Continuous deployment & delivery added 184 characters in body |