Questions tagged [.net-3.0]

.NET Framework 3.0, formerly called WinFX was released on 21 November 2006. There are no major architectural changes included with this release. .NET 3.0 includes WPF, WCF, WF and CardSpace

.NET Framework 3.0, formerly called WinFX was released on 21 November 2006. There are no major architectural changes included with this release; .NET Framework 3.0 uses the Common Language Runtime of .NET Framework 2.0

.NET Framework 3.0 consists of four major new components:

Windows Presentation Foundation (WPF), Windows Communication Foundation (WCF), Windows Workflow Foundation (WF) and Windows CardSpace.

Version Number: 3.0.4506.30
Release Date: 2006-11-21

More on Wikipedia

113 questions
1
vote
2 answers

How to pass credentials from one web service to another?

I currently have an app that calls a web service(WS1), which in turn calls another web service(WS2) to get/set information on the server hosted on WS2. I would like to be able to pass in the user credentials into WS2 from WS1 as if there was an…
1
vote
1 answer

How to run multiple tasks on a background service?

I am trying to run 3 task simultaneously but they are waiting for each other to finish. For example, second task is waiting for first one, and the third one is waiting for second task to finish. I want all 3 tasks to start at the same…
Paul Viorel
  • 234
  • 1
  • 11
1
vote
3 answers

.NET Framework 3.0 App on Windows XP SP3 with .NET Framework 4.0

My app has a Target .NET Framework of 3.0. I have a PC with a fresh install of Windows XP SP3. Next, I installed .NET Framework 4.0 Full on it. When I try to run my ClickOnce-deployed app, I get the "Failed to load the runtime" error: [9/9/2011…
yarone
  • 187
  • 4
  • 14
1
vote
0 answers

dotnet 5 how to use windows authentication credentials in HttpClient

issue in .net 5 that not happen in .net core 3.1 the windows authentication didn't pass to HttpClient this same code that work on .net core 3.1 : [HttpGet("getuser")] public async Task GetUser() { var handle = new HttpClientHandler …
1
vote
0 answers

Web Application ASP.NET Core do not open home page

I'm studying .net and created an asp.net core webapplication. I'm using .net core 3.1. I started my application following Microsoft tutorial to start a web application on the link:…
user13052453
1
vote
1 answer

WPF Application deployment XAML parsing errors - .NET Framework version issue

I created a new WPF application with target framework as .NET Framework 3.0. I developed WPF windows some of which used DropShadowBitMapEffect for Border tag:
rizter
  • 25
  • 2
  • 9
1
vote
1 answer

Use a text file as storage for a very simple web application, how to do locking?

I have a very simple web application that have to read and write in a text file. Basically, for each request the app looks for a specific line, if the line doesn't exists... it creates it. Not to mention that that operation has to be done in atomic…
vtortola
  • 34,709
  • 29
  • 161
  • 263
1
vote
0 answers

Dotnet test routine fail

I got an dotnet project and i was building an implementation test routine Here is my code: Base->BaseProject->Controllers->SensorController [Route("[controller]")] [ApiController] public class SensorController : Controller { …
1
vote
0 answers

Ajax callback issue

I got an project in dotnet and i'm trying to use GoogleCharts, but it's not working. The project is on .net mvc Here is my code: Views->Sensor->Chart.cshtml @{ ViewData["Title"] = "Chart"; }