| Thread | Last Post | Replies |
|
| How to configure two separate sets of remoted objects | 29 Jun 2006 00:48 GMT | 3 |
I have a set of components that I have successfully remoted through .NET Remoting hosted in a Windows Service on a remote server. That's all running fine. Now I have another business feature to implement that will again involve remote components, possibly on the same physical ...
|
| Raising Events from a Windows Service | 28 Jun 2006 16:22 GMT | 4 |
I've got a problem with Remoting and I was wondering if you kind folks could shed some light on it. Here's the situation:- I have a windows service that gathers information from a source once a minute; After it has gathered the information I need it to inform any client
|
| Basic .NET Remoting design question | 27 Jun 2006 15:30 GMT | 1 |
I have a class ClassA that needs to be remoted to another server in order to have access to the resources necessary to do its job. One or more of its methods needs to return an instance of another class ClassB. ClassB has no remoting requirements, but I'm not clear if it's possible ...
|
| Remoting problem... | 27 Jun 2006 11:15 GMT | 1 |
I have a problem with remoting in C# that I need some help with. I've created a server and a client using .NET remoting. The server config file look like this <system.runtime.remoting>
|
| Windows service | 27 Jun 2006 08:39 GMT | 3 |
I have a remote object that communicate with client through TCP. This works fine. I have created windows service that uses remote object. Local connections work fine, but remote connections don't work. What can be the problem?
|
| soapsuds question | 22 Jun 2006 19:33 GMT | 1 |
I am trying to set up a set of classes for remoting. There are a couple of simple serializable types, and a "factory" type that you can use to create and initialize the simpler types from database contents. I plan to deploy the factory type for use as a single-call remote ...
|
| Publishing remote objects | 21 Jun 2006 17:33 GMT | 1 |
I have always used RemotingConguration.RegisterwellknowserviceType. However I discovered you can use RemotingServices.Marshall. What is the difference? Thanks
|
| Authorizaing users in server C# 2.0 | 21 Jun 2006 17:20 GMT | 4 |
I have a server application running as a windows service. An my clients connect via remoting to the server. I would like to authorize the clients using LDAP or Windows security. I´ve read many articles about the use of impersonation and how security is implemented in remoting
|
| GenuineChannels | 21 Jun 2006 16:45 GMT | 3 |
This product appears to provide a solution to a problem I am working on, however I am unable to find any information about it. The following link is dead http://www.genuinechannels.com, is the company dead?
|
| Sending/Receiving XML document to/from MSMQ | 21 Jun 2006 07:29 GMT | 2 |
I add an XML file as an MSMQ Message to MSMQ with the code XmlDocument myXml = new XmlDocument(); myXml.Load("C:\\Emp.xml"); MessageQueueTransaction mqTrans = new MessageQueueTransaction();
|
| With or without host headers | 20 Jun 2006 15:11 GMT | 3 |
Hi Group! First of all, excuse me for my english. I am having an annoying problem with an application (not web application) which i am trying to run through remoting. The app is running rigth in my localhost, in the
|
| Remoting stopped working | 19 Jun 2006 21:08 GMT | 3 |
I've been using .NET remoting to publish an object that exposes several methods and events. however, it does not work. I can use Activator.GetObject to create the object but when I try listen to an event the program locks up. This is the code I use to connect:
|
| atladvise on interface pointers in remote processes | 19 Jun 2006 15:31 GMT | 1 |
The system: client side - a .net object which instantiates a COM object, and a Connection Point interface implementation. server side - a remoting .net object which instantiates a different COM
|
| Excel and .Net remoting | 14 Jun 2006 23:42 GMT | 1 |
I have a C# program in which i need to read the data from the excel file which is in network folder. The openign the excel file and reading the data everything works fine with Excel class and other objects. Only thing is there way to notify my application if the Excel files get
|
| Free Port | 14 Jun 2006 10:36 GMT | 3 |
I have a server where the port number is configurable - if the user changes from the default port I would like some quick way to test if the new port is actually free - the only solution I have come by is to actually bind to the port and free myself from it again. Is there a
|