Search results for query: *

  • Users: Viper
  • Content: Threads
  • Order by date
  1. V

    An existing connection was forcibly closed by the remote host

    Hi I would like some assistance with this. I have a distributed application that uses TCP .NET Remoting for communication between the server and client computers. I am pretty sure the issue is network related because the application is currently running at multiple clients, it is running in...
  2. V

    Question Problem with .NET Remoting on new server

    I have a .NET remoting application that has been working on various networks and computers for a year now. However, we've installed the application on a brand new server (Windows Server 2003 R2) and all of the sudden, I get the error "The server has rejected the client credentials". The...
  3. V

    Question SqlTransaction and Stored Procedure

    Hi I have an employee object that gets transported between the client and server application. To retrieve the employee object from the server, I call a stored procedure called GetEmployee on the database and the object is constructed with the returned dataset. Then, when I need to save the...
  4. V

    .NET Remoting crashes IIS

    Hi I'm busy developing a .NET remoting application. Tcp remoting with a binary formatter is used. The user can specify on the client configuration whether to connect to the hosted Singleton or SingleCall objects. The application consists out of the following: - Shared assembly This contains...
  5. V

    Slow remoting

    Hi I've developed a remoting application that uses a TCP channel with a Binary formatter. The server side is a Windows Service that is on the same server as the database. The service hosts Singleton components under one port and the same components (gave them different remote names though) as...
  6. V

    Client freezes when calling Remoting server

    Hi I've got a couple .NET remoting applications here. One that I'm busy developing and some samples that I've downloaded from the internet. When registering the TCP channel on the client, I have two scenarios. 1. I just register the TCP channel without any special parameters. This works...
  7. V

    .NET Remoting to WCF

    Hi Does anyone maybe have examples of how to convert a simple application that uses .NET Remoting (TCP) to WCF in VB.NET? Or sample applications for WCF in VB.NET would also work. Thanks
  8. V

    Custom Button Control

    Hi I've created a control that inherits from the button control. The control has one additional property called ButtonType which can be set to Ok, Cancel, New, Edit, etc. When the ButtonType property changes, the Image, Text, TextAlignment, etc. properties are changed for the control. What...
  9. V

    Problem with TreeView Node Images

    Hi I have a weird problem. On the main screen of my application, I have a treeview that, depending on the type of item, one of three images are displayed. Images are 24x24. When the form is constructed, the image list is initialized: imlData.Images.Add("Package"...
  10. V

    Remoting: Couple of Questions & Issues

    Hey I have some more questions with regards to Remoting in .NET 2. I'm using TCP with the Binary formatter. My solution consists of 4 projects: - Class Library containing the server classes which Inherits MarshalByRefObject (ok, at this stage it only contains one class... but its gonna...
  11. V

    Session state resets when using Access DB

    Hi I have an ASP.NET application that connects to an Access database. Everything works fine except for the Session object. If I make a call to the database, the session object resets after the procedure has executed. If I set the session state and then navigate to a page (no calls made to...
Back
Top