Search results for query: *

  • Users: Viper
  • Order by date
  1. V

    An existing connection was forcibly closed by the remote host

    For anyone else who has this issue. They did a full investigation from their side and eventually found the problem. In this instance, they said the following: "We did find that the network configuration on the MDD side in Durban was not correct. The MDD distribution switch need to have the...
  2. V

    An existing connection was forcibly closed by the remote host

    I've asked them and they tried using a different port and they tried connecting via Singleton and SingleCall mode and still the same error. Apparently ALL the ports are open between the computers at the site and the servers at the main site.
  3. 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...
  4. 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...
  5. V

    Question SqlTransaction and Stored Procedure

    Yes. The Select From Employees table works fine. It is when calling the stored procedure that the updated data doesn't get returned
  6. 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...
  7. 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...
  8. 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...
  9. V

    .NET Remoting to WCF

    Never mind. Got it. Detailed example can be found at http://blogs.msdn.com:80/mattavis/archive/2005/10/10/479280.aspx
  10. 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...
  11. 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
  12. 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...
  13. V

    Problem with TreeView Node Images

    I tried creating a small app but can't replicate the problem. I'm using some custom controls from ICreate and Krypton and I placed some of those controls in the test application as well and still can't recreate the problem. The original app is too complicated to post here as you will need the...
  14. 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"...
  15. V

    Remoting: Couple of Questions & Issues

    Solution to issue 1 Ok... After LOOOONG research on the web, MSDN, newsgroups and posting on various VB forums and trying basically everything I could thought of, I found only one post that eventually put me on the right track to solve the error "The server has rejected the client credentials."...
  16. 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...
  17. 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