all groups > dotnet sdk > march 2004 > threads for march 22 - 28, 2004
Filter by week: 1 2 3 4 5
bug in HttpWebRequest?
Posted by z. f. at 3/28/2004 9:44:09 AM
using HttpWebRequest to make HTTP request t web server and get resulting
HTML in the response, when the response includes hebrew characters (not
unicode) these characters are moved away after
StreamReader reader = new StreamReader ( response.GetResponseStream() );
strHTML = reader.ReadToEnd();... more >>
Redirected request in HttpWebRequest does not maintain specified method!!
Posted by Jon Davis at 3/26/2004 9:37:11 PM
This appears to be a critical bug in the .NET Framework. Surely I am wrong
though! PLEASE HELP if anyone has any idea?
Thanks,
Jon
________________________________
From: Jon Davis [mailto:jon@accentra.net]
Sent: Friday, March 26, 2004 9:31 PM
To: bloggerDev@yahoogroups.com
Subject: RE:... more >>
problems with HttpWebRequest
Posted by z. f. at 3/25/2004 5:01:42 PM
using HttpWebRequest to make HTTP request t web server and get resulting
HTML in the response, when the response includes hebrew characters (not
unicode) these characters are moved away after
StreamReader reader = new StreamReader ( response.GetResponseStream() );
strHTML = reader.ReadToEnd();... more >>
Need Help With On Regex Expression
Posted by Garibaldi at 3/25/2004 11:09:38 AM
Folks,
I have a very large text file to parse and I'm thinking
of using a regex.
I need to isolate data bounded by "200~" (200tilde).
The "200~" appears at the start of a line. There can be
one or more lines between each "200~".
This regex, ^(200~), gets the "200~"'s only. I need to
... more >>
multithreading in COM+ using C#
Posted by kazi at 3/24/2004 8:18:53 PM
Hi
I'm programming a application use the COM+, MSMQ, SQL server. I want to
use one thread reading the data from the SQL server, and then put then to a
System.Collections.Queue, use another thread get the data from the Queue and
then Send them to the MSMQ.
Now i meet a problem that the C... more >>
Disconnected Architecture
Posted by Christopher Walls at 3/24/2004 7:46:47 AM
We are looking to build a system where the admin portion of the system will
be ASP.NET based residing on a central server and the field service portion
of the system will be WinForms based. The field service personal will be
running the WinForms app on their laptop to collect data. After collec... more >>
Common Setup Files (3790.0): where is PSDK-x86.msi?
Posted by Peter J. Veger at 3/23/2004 11:37:59 AM
I regularly get the exception message:
with Title Common Setup Files (3790.0)
and complaining that the installation package PSDK-x86.msi cannot be found.
Where should I look for that file?
... more >>
VARIANT array
Posted by Arr S at 3/23/2004 3:11:19 AM
I need to use a VARIANT array. But, I am not sure whether it's available in C#. I found a VARIANT API in the platform SDK (in the OleAuto.h file). Is this is the right one that I've to use? If so, how to include this .h file
Thanks in advance
Arr S.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Getting Folder Permissions
Posted by Hari Shankar at 3/22/2004 6:33:05 PM
Hello folks
I have to get the NTFS permissions of a folder programmatically. I am using
C#. Pls hint me if i am missing anything in the code below.
private void GetSecurityPermission(string strShareName)
{
NERR eRetVal = NERR.ERROR_FAILURE;
EXPLICIT_ACCESS oEA;
IntPtr ... more >>
|