| Thread | Last Post | Replies |
|
| GenericPrincipal serialization. | 22 Feb 2005 16:55 GMT | 4 |
Once a user has signed in I would like to cache the authentication that has happened so I need to serialize GenericPrincipal. I would like to serailize this object to a string that will be stored in a database untill neeed later. The problem that I am running into is that when I ...
|
| Regex.Split oddity | 22 Feb 2005 16:05 GMT | 2 |
Am splitting on quoted strings first, then operators e.g. a = Regex.Split( "a and ""b and c""", "("".+?"")|( and )") I expect a=("a", " and ", """b and c""") I receive a=("a", ""b and c"")
|
| Using AL.exe to link modules into assembly | 22 Feb 2005 15:59 GMT | 4 |
I'm writing a program that first uses csc.exe to compile C# files into a netmodule, which works fine. The resulting fileis 72 KB in size. Next it uses al.exe to link the netmodule to an assembly and add strong naming and resources. Below is a simplified example of the command I
|
| confused about .net 2 | 22 Feb 2005 13:43 GMT | 1 |
I'm trying to install SQLServer (2005 Beta 3) Express , but it told me to remove the .net framework 2 beta. Now its telling me to add .net framework 2 but I can't find it, and looking at recent posts its not due out yet
|
| Load framework first time | 22 Feb 2005 11:23 GMT | 1 |
I've created an application in VB.NET. The application works fine but when you start it the first time it takes a long time (5-10seconds) to load (I think that the framework is beeing loaded at that time???). How can I decrease the 'load' time ?
|
| Socket Send and Receive Thread Safety | 22 Feb 2005 10:18 GMT | 3 |
Is it safe for one thread to call Socket.Receive and another to call Socket.Send on the same Socket at the same time? The documentation says that instance members are not guaranteed to be thread safe, but I'm not sure whether this combination is or not.
|
| ldap DirectoryServices.DirectoryEntry System.NotImplementedException: Handling of this ADSVALUE type is not yet implemented (type = 0xb). | 22 Feb 2005 06:11 GMT | 4 |
i'm trying to make a query to a ldap server (version v2 or v3 doen't matter) with c#. the query works just fine but the problem is that i can't read the custom attributes/fields, since .net gives the following error: System.NotImplementedException: Handling of this ADSVALUE type is ...
|
| run app remotely? | 22 Feb 2005 05:37 GMT | 3 |
Hi; Is there any way to run an application remotely? In other words, on machine A can I run a program (that is on machine B) on machine B and get back the std out and error?
|
| Get environment from remote machine | 22 Feb 2005 04:30 GMT | 3 |
Hi; Is there any way to get the value of an environment variable from a remote system - in the context of a given user?
|
| How to negotiate authenication with HttpWebRequest | 22 Feb 2005 04:17 GMT | 4 |
I have the following code. Basically it attempts to connect without authentication and if that fails, it is to attempt supplied and/or default credentials. It does not work. If I capture the traffic on the network, the code below only results in 1 GET Request being sent to the ...
|
| strong naming fails if delay signed | 22 Feb 2005 03:00 GMT | 6 |
Hi; I have a solution with 2 projects. 1 project is a windows forms exe and the other is a dll (all C#). If I set the dll to be delay signed, then even after I sign it, when the exe runs and first tries to access a class in the dll, I
|
| Pointer to integer into structure... | 22 Feb 2005 02:35 GMT | 1 |
How do I get a pointer to an integer into an IntPtr in a structure? I have a native structure like this: typedef struct { DCM_ELEMENT e;
|
| Make a mail with attachment in a windows apllication | 22 Feb 2005 02:00 GMT | 3 |
I am having a problem with attach a file to a mail-message i create in a windows application. I tried : Dim myAttachment As New Attachment(sSubstr)
|
| When does a Windows Form create it's message processing thread | 21 Feb 2005 20:59 GMT | 5 |
I have a Class Library that contains a Form and several helper classes. A thread gets created that performs processing of data behind the scenes and the Form never gets displayed (it is for debug puposes only and is not normally visable to the user.) The Thread function is actually ...
|
| Assign attributes to a property at runtime ? | 21 Feb 2005 19:04 GMT | 1 |
I use a class and I don't have the sources. One of its properties may or may not have some attributes assigned to it. What I want is to assign some more attributes to the property at runtime. Is it possible to do that and how ?
|