| serilaizing objects and streaming though a socket (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I am trying to send objects back and forth between client and server (messages). I want to serialize them using the BinaryFormatter. For some reason it doesn't work: chatClient is TcpClient ProtocolV1.LoginRequest login new ProtocolV1.LoginRequest(); login.username "emad"; login.password "1234"; BinaryFormatter bf new BinaryFormatter() ; bf.Serialize(chatClient.GetStream(),login); chatClient.GetSt... |
|
| Remoting with TCPChannel and Security (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I don't like to use IIS with .NET Remoting and an http channel just to athentificate and impersonate Windows users. I guess not only me. But MS doesn't support WindowsIdentity with TCPChannel. So I want to write library using calls to unmanaged API: SSPI to authentificate and impersonate clients on server. Is this possible? Do I need implement my own TCPChannel? If I once sets thread Principial to... |
|
| ViewState lost in Custom Server Control (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| I know I'm missing something small, but I have a problem that's killing me. Here it goes: I'm trying to write an easy server control. My objective is simply to add a simple header to some content. Here's how my HTML looks now: .... TABLE TR TD THIS IS ANY CONTENT /TD /TR /TABLE .... I am trying to do something like this: .... CUSTOM:HEADEREDCONTENT TABLE TR TD THIS IS ANY CONTENT /TD /TR /TABLE /C... |
|
| Checkbox in Datagrid (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi all, I've been trying to have a simple checkbox in my datagrid using C# and it's being a pain to get it to work. Here is the cenario. I have a DataSet populated with a table "Employees" let's say. This table has fields such id, name, email. All I want to do is to display an extra column in my datagrid that will display a checkbox for each row. Note, there is no data associated with this checkbo... |
|
| ConfigurationException with WebRequestModuleHandler in protocol handler (4 replies) |
| microsoft.public.dotnet.distributed_apps |
| I added the following lines to my app.exe.config file and I received a System.ConfigurationException with the addtional information of "WebRequestModuleHandler" when I call WebRequest.Create( uri ). In the type I have tried the request and the creator, and referencing the dll ("type FtpRR.dll, FtpWebRequest"). configuration system.net webRequestModules add prefix "ftp" type "FtpWebRequest" / /webR... |
|
| How to manipulate the information in Active Directory ? (4 replies) |
| microsoft.public.dotnet.distributed_apps |
| Can I use "DirectoryEntry" to modifty the attribute value for an object in the Active Directory. How to implement it ? |
|
| Data / Persistence Layer (17 replies) |
| microsoft.public.dotnet.distributed_apps |
| Being new to the n tier approch and object persistence I have a few questions. My business layer we'll designed an many hours have been spent to get the correct design of this layer (it's a hierarchily arranged object model) correct. I also have a database designed that furfills the needs of the data that's stored (multi lingual data, multi currency pricing, dynamic number of attributes to various... |
|
| OOP and .NET Distributed Applications (7 replies) |
| microsoft.public.dotnet.distributed_apps |
| After browsing through the MS samples of .NET distributed applications (i.e. Ibuyspy) I'm left a little confused as to where OOP fits into the distributed architecture. The classes I've seen seem to be no more then a laundry list of functions with no apparent object heirarchy. Seems the classes they've used could be replicated as visual basic .mod files if you desired. For example, the shopping ca... |
|
| Remoting security (6 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi, I've haven't noticed much in the way of in built security for .NET remoting (without IIS). I'd like to be able to specify that a channel can only be connected to from localhost, or even better to be able to tell (from the server side) details about a connecting client. Does anyone know if any of this is possible? |
|
| Which layer for data adapter ? (6 replies) |
| microsoft.public.dotnet.distributed_apps |
| I am creating an application using the "enterprise template simple" version. I added a common layer as they did in the Dwamish7 example to hold my datasets. In the "Accessing Data" section of the help, they go in depth in describing how to create a data adapter with the designer. The only problem is that the data access code really should reside in the data access layer and the designer is only in... |
|