Jun 8 2009

(407) Proxy Authentication Required in Windows Client Apps

Category: .NET | ASP.NETJay Smith @ 00:20

I have downloaded many apps in the past to use at work only to find out that they do not properly handle the proxy authentication at my location.  At home they work just fine, but at work no way!  One was Witty the WPF twitter client, I actually downloaded the code and patched and submitted that back to the developer.  You now have the option to configure the proxy settings in the options windows.

Recently I downloaded Podder, version 2 has some awesome new skins for an WPF application but still doesn’t work through my proxy server.

I did some research and did find a solution, by adding the following to the config file, Podder.exe.config in this case you can define the default proxy behavior for the application. 

<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy bypassonlocal="True" proxyaddress="http://proxy.example.com:8080"/>
</defaultProxy>
</system.net>

It needs to be in the <configuration> node and it worked best if I put it at the bottom below everything else.  Putting it at the top made Podder crash, not sure that really had anything to do with it, but putting it at the bottom didn’t crash.

I wish more developers provided ways to configure the proxy server in their internet enabled apps, but they don’t.  At least now if can work around their laziness and hopefully get it to work any way.

Other apps that I plan to try this on are Blu, and DigiTweet to start.

Tags: ,

Oct 2 2008

ASP .NET MVP Award Recipient!!! Woohoo!!!!

Category: ASP.NETJay Smith @ 11:10

 

It feels kind of funny posting this now, you see I have been sick for the last few days and haven’t really been checking my email like I should.  Well, today I called Randy Walker and before saying anything else he says “Congrats”, it took me a second to figure out what he was talking about.  So, I went to read my email and there it was, an email from Microsoft telling me that I had been awarded the ASP .NET MVP.  I feel extremely honored to have received such an award. 

I want to thank everyone in Northwest Arkansas, the South Central District, and INETA for helping and supporting our community efforts in my area.  It has been a joy to build the community in Northwest Arkansas and watch it grow.  I can’t wait to see what new heights we can achieve now, and hope to see more Arkansas MVPs as the result.

Thanks to everyone for the congrats and you can rest assured I will use this to benefits the community and share as much as I can.

Tags: , ,

Aug 29 2008

ASP.NET MVC CodePlex Preview 5

Category: ASP.NET | ASP.NET MVCJay Smith @ 04:08

 

If you have been keeping your eyes on the ASP .NET MVC project you will be interested to know that Preview 5 has been released.

Here a few things from the release notes:

This ASP.NET MVC CodePlex Preview 5 is an interim release that contains some new features and some feature improvements for which the ASP.NET MVC team would like to receive feedback from the community. As always, feel free to provide feedback on the ASP.NET MVC forums.
Note: Before you run the ASP.NET MVC CodePlex Preview 5 installer, be sure to uninstall any earlier previews of ASP.NET MVC that you might have installed. In addition, close all instances of Visual Studio 2008.
The following issues are addressed in this release (see the Release Notes for more detail on any changes)

  • Html Helpers need to look into ModelState to get attempted value
  • Add a convenience overload for Html.ActionLink
  • Need friendly exception for UpdateModel type conversion errors.
  • UpdateModel needs to report a message when a property setter throws an exception

Pick up this release here http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx

Tags: