Click here to Skip to main content
16,016,535 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralArabic support in PDA SQLCE Pin
Isaac_cm19-Dec-04 0:28
Isaac_cm19-Dec-04 0:28 
GeneralDouble.NaN & Double.PositiveInfinity Pin
Anonymous17-Dec-04 1:55
Anonymous17-Dec-04 1:55 
GeneralRe: Double.NaN & Double.PositiveInfinity Pin
Richard Deeming17-Dec-04 7:00
mveRichard Deeming17-Dec-04 7:00 
GeneralChanging Crystal report display dynamically Pin
Sujith_Manuel16-Dec-04 18:45
Sujith_Manuel16-Dec-04 18:45 
GeneralFilter Drivers Pin
mmsspp15-Dec-04 18:18
mmsspp15-Dec-04 18:18 
GeneralCompac Framework Pin
dcudev.lcr15-Dec-04 8:38
dcudev.lcr15-Dec-04 8:38 
GeneralNo touch deployment bug Pin
itair15-Dec-04 2:32
itair15-Dec-04 2:32 
GeneralRe: No touch deployment bug Pin
itair15-Dec-04 18:26
itair15-Dec-04 18:26 
I didn't get any reply, but I got help from someone that asked the exact same question about a year ago in anoher forum. He also didn't receive any reply, but got help from microsoft.

So if anyone gets stuck on this in the future here is the fix:

I got this fix from the MSDN support people:

// This must be added by hand each time the web reference Reference.cs is recreated.

// This prevents a no-touch-deployed app from timing out on web service calls after a period
// of inactivity.

// To get to this module:
// - go into Solution Explorer
// - click the "show all files" icon in the Solution Explorer's toolbar
// - expand the web reference
// - expand Reference.map
// - view code for reference.cs
// - add this code to the module

using System.Net;

protected override WebRequest GetWebRequest(Uri uri)
{
HttpWebRequest webRequest = (HttpWebRequest) base.GetWebRequest(uri);

webRequest.KeepAlive = false;

return webRequest;
}

Good luck!

Itai.
Questiona bug in loading tiff 16bit images? Pin
anurik15-Dec-04 1:38
anurik15-Dec-04 1:38 
Generalwindow border size Pin
anurik14-Dec-04 23:55
anurik14-Dec-04 23:55 
GeneralRe: window border size Pin
Mathew Hall15-Dec-04 1:24
Mathew Hall15-Dec-04 1:24 
GeneralRe: window border size Pin
anurik15-Dec-04 2:37
anurik15-Dec-04 2:37 
GeneralRe: window border size Pin
benjymous15-Dec-04 5:56
benjymous15-Dec-04 5:56 
GeneralRe: window border size Pin
anurik15-Dec-04 22:54
anurik15-Dec-04 22:54 
GeneralRe: window border size Pin
Mathew Hall16-Dec-04 22:05
Mathew Hall16-Dec-04 22:05 
GeneralTime out with HttpWebRequest Pin
Manjunath N.A14-Dec-04 23:20
Manjunath N.A14-Dec-04 23:20 
GeneralIE Hosting problem Pin
Ryszard Krakowiak14-Dec-04 20:58
Ryszard Krakowiak14-Dec-04 20:58 
QuestionWhich registry values are updated when Windows XP Service Pack (1/2) is installed? Pin
mmsspp14-Dec-04 19:40
mmsspp14-Dec-04 19:40 
AnswerRe: Which registry values are updated when Windows XP Service Pack (1/2) is installed? Pin
Mike Dimmick17-Dec-04 13:19
Mike Dimmick17-Dec-04 13:19 
GeneralConsole Application Pin
har04mich14-Dec-04 11:19
har04mich14-Dec-04 11:19 
GeneralRe: Console Application Pin
Mike Dimmick17-Dec-04 13:27
Mike Dimmick17-Dec-04 13:27 
Generalfile processing time Pin
shaw12314-Dec-04 8:50
shaw12314-Dec-04 8:50 
GeneralRe: file processing time Pin
Mike Dimmick17-Dec-04 13:58
Mike Dimmick17-Dec-04 13:58 
GeneralIs it possible: start .Net executable by GUID Pin
nielsvdc14-Dec-04 4:40
nielsvdc14-Dec-04 4:40 
GeneralRe: Is it possible: start .Net executable by GUID Pin
devvvy14-Dec-04 5:53
devvvy14-Dec-04 5:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.