.net-3.5-sp1

Creating a future proof .NET 3.5 SP1 installer prerequisite for setup.exe AND the .MSI

I've demanded .NET 3.5 SP1 a la http://stackoverflow.com/questions/88136/will-a-vs2008-setup-project-update-net-3-5-sp1. This makes the setup.exe check correctly. I've also added a "SP1" launch condition to my MSI so it doesn't let the user install my .NET 3.5SP1 app via launching the MSI (and replaced the [VSDNETMSG] in the Framework ...

How will .NET 3.5 SP1 impact my .NET 1.1 applications?

If I have a number of existing applications written and deployed w/ .NET 1.1, is there any risk to installing .NET 3.5 SP1 on the servers? My understanding is that .NET 3.5 SP1 only works with the .NET 2.0 codebase, so it will not touch or affect my .NET 1.1 applications. Can you also point me to any pertinent MSDN documentation? I've...

WCF REST parameters cannot contain periods?

So here's a super simple interface for doing rest in WCF. [ServiceContract] public interface IRestTest { [OperationContract] [WebGet(UriTemplate="Operation/{value}")] System.IO.Stream Operation(string value); } It works great, until i try to pass a string with periods in it, such as a DNS name.....

Upgrade to 3.5 SP1 & 3.5 Family Update on client systems can break my code?

I have a server hosting a remoting application using .NET 3.5. It has been running fine. In the last couple of days I have had numerous reports of users not being able to access the application after running the "Microsoft .NET Framework 3.5 Service Pack 1 and .NET Framework 3.5 Family Update (KB951847) x86" update. I am tempted to ru...

.NET 3.5 SP1 Setup Failure

I've been facing a problem that can only be described as weird for the past couple of days, while trying to install .NET 3.5 SP1 on my x64 Vista Ultimate. The problem first started while trying to install Visual Studio SP1, which I had installed before on the same machine without any issue, giving me a scrambled screen followed by a Blu...

HttpWebRequest timeout in 3.5sp1

We have a service that opens several HttpWebRequests. It ran fine under 3.0 until we upgraded the server to .net 3.5sp1. Now we get timeouts while waiting for the request. (we have verified that the endpoint is up and running). There are a few things that make this interesting. Increasing the number of max connections will let it ru...

Problems with .Net Fx 3.5 SP1 Client Install

Hi there, I comes with a notice, this issue is happing to me, is about client profile install and regional configuration (language input), for examples Im using WPF RichTextBox checkspeller, in some machines, works cause in the following dirs : C:\Programs Files\Reference Assemblies\Microsoft\Framework\v3.5\es C:\Programs Files\Referen...

Skip .NET Framework 3.5 language pack download

I downloaded the .NET 3.5 SP1 redistributable package (231MB). On my machine I have more than 1 language pack. When trying to install .NET 3.5 SP1, the installer connects to the internet and downlands language packs. If no internet connection exists, the installer has 5 (depending on how many language packs exists on my operating system...

Find code that depends on .NET 3.5 SP1

Is there a way to run some sort of code analysis to find code which will compile with .NET 3.5 SP1 but not 3.5 RTM? FxCop works for assemblies introduced with SP1, but for code that simply calls new methods and properties it does not detect that usage. ...

Searching for a component in NET 3.5

Hello, I'm searching for a component similiar to this one(Delphi) in .NET 3.5 SP1 Thanks. ...

Show Images in WPF ListBox

Hi All, I'm trying to display images stored in MSSql Db as varbinary, when execute my code it just hangs itself Code is as follows... XAML <Window x:Class="ImageList.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namesp...

Entity Framework using views and stored procedures.

I have the following basic table structure (that I'm not allowed to change) in my database: Address (PK) AddressId Line1 ... Person (PK) PersonId (FK) AddressId FirstName ... Student (PK) StudentId (FK) PersonId StudentNumber ... I would like to combine Person and Student into a Student entity using the Table-per-Type approach. How...

WCF webservice stop working after upgrade to framework 3.5 sp1

I have a wcf webservice on one of my testing servers. Everything worked fine until I upgraded frome framework 3.5 to 3.5 sp1. the wcf web service stoped working and returns the error: "Failed to invoke the service. The service may be offline or inaccessible. Refer to the stack trace for details." "The remote server returne...

.NET 3.5 and SP1 install question - single installer

Does this install .NET 3.5 and SP1? http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7&amp;displaylang=en or is there no single installer yet? ...

Creating a WPF ValueConverter for a Brush

On the Nerd Plus Art blog today, there was a post about creating WPF Resources for arrows, which the author uses frequently. I have a side project that has Back and Forward buttons, so I thought that the Left and Right arrows would work great on those buttons. I added the LeftArrow and RightArrow Geometries to my application's resources...

Where's the Events bookmark ?

I've installed .NET 3.5 SP1 and I still dont't see the Events bookmark. The compiler was reinstalled few times, still without result. I have VS 2008 Professional Edition I mean: ...

Exposing enum typed properties for entity framework entities fields in ADO.NET Data Service client context

I have an entity with fields that are typed int and i want to exposed those fields as properties which get and recieve enum type values for working strongly typed. so i've created a new partial class for the entity and added the two properties. when i try to create a new instance of the TestEntity and add it to the context , and call ...

ASP.NET MVC Versioning Issue

I have a web application with a couple different sub-webs that use MVC. The problem I'm running into is that two of the sub webs use different MVC versions. One was recently upgraded to use the 1.0 version, and one is stuck on an earlier preview version. After upgrading one of the sub-webs to 1.0, the other web that is using the previ...

Microsoft Sync Framework - How Does Bidirectional Sync Work?

I have two clients A and B. Both clients have identical, synced local data caches. If client A makes an offline edit to record X and then client B also offline edits record X and syncs with the server, when client A syncs with the server, the change that client B made is not reflected and no amount of bidirectional syncing makes the tw...

A WPF App fails when coming out of hibernate mode

I have a WPF application that fails to come out of the timed sleep, followed by hibernate. The render thread seems to be failing during initialization. I tried removing hardware acceleration to check that it's not graphics card related, but that did not help. Here is an exception along with the stacktrace: ERROR An unspecified error oc...