| Remoting Events - Please help! (12 replies) |
| microsoft.public.dotnet.distributed_apps |
| What am I doing wrong I have an object which will be hosted as SINGLETON in a NT service that I want to fire events to all connected clients. If I host the object locally all works fine. If I host the object remotely (Tcp Channel;WellKnown) and do not register the CHANGE event all works fine But if I use the object and register the CHANGE event then during object connection(?) I get a System.IO.fi... |
|
| Do I need to use COM+? (6 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hello, I believe that someone has answered this somewhere before...but I can't seem to find it. :( If I want "Transaction support, Component Load Balancing and Object Pooling" in .NET do I need to use COM services? If so....why is MS pushing the hype about Enterprise Services with .NET when you are being forced to use COM windows services? I mean all the hype about cross platform in the future is ... |
|
| System.Net.Sockets, Networkstream, and datatype conversion question (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi all, I am trying to connect from a .Net app to an UNIX(AIX to be exact) socket server that reqires me to send and receive data in C style structs. Below is an example of the request message struct: struct RequestMessage { char version[8]; char request; char type; char str1[9]; char str2[8]; char str3[16]; }; Question: Is there an easy way(as in some built in .net class or method that i've overl... |
|
| Can I stop a SOAP WebMethod from returning indented XML? (7 replies) |
| microsoft.public.dotnet.distributed_apps |
| Is it possible to stop the XMLSerializer writing 'pretty' XML using new lines and indenting nested elements. I am using a SOAP WebMethod (ASP.NET) like the following: [WebMethod] object Add(int x, int y) { return x y; } The results come back in the following format: ?xml version "1.0" encoding "utf 8"? soap:Envelope xmlns:soap "http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi "http://www.w3.or... |
|
| Message Boxes within Webforms (4 replies) |
| microsoft.public.dotnet.distributed_apps |
| Does anyone know how to prompt a message box or conformation box from and ASPX Web page? I have a datagrid with a button column. When the button is clicked, the row or record is deleted. I want to pop a conformation box or a message box asking the user if they really want to do this. Any Help would be appreciated |
|
| Encrypt&Decrypt File (4 replies, VIP) |
| microsoft.public.dotnet.distributed_apps |
| Hi all, If I wanna encrypt a text file, I must use DESCryptoServiceProvider or those Symmetric Algorithm? and the problem is I don't want the key to be exposed in the client applications. I want the text file to be encrypted in client side (that included some sensitive information), but can be decrypted by the server side applications. However, using symmetric algorithm, the key should either stor... |
|
| LSET serialization (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| Hi All, I have used Rockford Lhotka's great text on Business Objects for dist app, and used LSet to serialise the data to objects. Has anyone got a recommendation for the mechanism to use in .NET as LSet has been decommissioned. Are any of the base classes as fast as the LSet method to create a 'stream' to transmit remotely? Regards Ivan |
|
| for each? (2 replies) |
| microsoft.public.dotnet.distributed_apps |
| What i must do to implement the method that permits iteration with for ... each |
|
| TCPChannel vs IChannel (3 replies) |
| microsoft.public.dotnet.distributed_apps |
| Has anyone been able to take this and get it to compile in beta two .NET VB? Imports System Imports System.Runtime.Remoting Imports System.Runtime.Remoting.Channels Imports System.Runtime.Remoting.Channels.TCP Namespace RemotingSamples Public Class Sample Shared Sub Main Dim chan As TCPChannel chan New TCPChannel(8085) ChannelServices.RegisterChannel(chan) RemotingConfiguration.RegisterWellKnownSe... |
|