Search Result

Collapse
7 results in 0.0044 seconds.
Keywords
Members
Tags
remoting
  •  

  • Handling exceptions in .net remoting object

    Dear Friends,

    I am working on a .Net Remoting project. If there is any exception in remote object, I would like to send this exception in detail to the client. I am using the following code to accomplish that-
    Code:
    'This is on a shared .dll
    Public Interface ICreateNewMouza
        Function CreateNewMouza(ByVal MouzaToCreate As Mouza) As Integer
    End Interface
     
    Imports System
    Imports
    ...
    See more | Go to post

  • show output in console window from remote object

    Dear Friend,

    I am trying a .Net remoting project hosted in a console application.
    I have the following code in remote object class.

    Code:
    Public Class ServerTime
        Inherits MarshalByRefObject
    
        Public Function ServerTime() As String
                Dim ServerDateAndTime As DateTime = DateTime.Now
                Console.WriteLine(ServerDateAndTime.ToString)
    ...
    See more | Go to post

  • Host .net remote object in win form application

    Dear Friends,

    I can work with .net remoting hosted in console application. But is there any way to host remote object in a form application rather than in console application? So that a server admin can see the requests and responses in live.

    Any idea will help.

    Regards
    SKPaul
    See more | Go to post

  • Saumitra Kumar Paul
    started a topic .Net remoting error in IIS

    .Net remoting error in IIS

    Hope all you are fine.

    I am working on a .net remoting project (VS 2008). I have a .dll hosted in IIS 6 windows server 2003 r2.

    When i try to test it in internet explorer "http://localhost/hellone/test.rem", it shows the following error


    System.BadImage FormatException : The format of the file 'SimpleTest' is invalid.
    File name: "SimpleTest "
    at System.Reflecti on.Assembly.nLo ad(AssemblyName...
    See more | Go to post

  • Sfreak
    started a topic Problem converting types of Webservices
    in .NET

    Problem converting types of Webservices

    Hello guys,

    Im developing an architecture which uses c# Winforms, Webservices and Remoting. Im stuck in a issue about Types and namespaces. Ill try to explain the scenario to you to help me if you can...

    its a MVC template and i have my View using Winforms technology. My Control is encapsulated in a Webservice as an Application server. My Model is represented by a Windows Service using Remoting as the communication protocol...
    See more | Go to post

  • How do I remotely log into multiple computers using C#?

    I have a task to write an server application that will log into multiple other computers on the same network. The other computers will be at the startup screen and instead of having to input the user name and password at each computer, the application should do this.

    I have done some research and found the LogonUser() function. But msdn states that this function attempts to log a user on to the local computer.

    Does...
    See more | Go to post

  • NehaDas
    started a topic Chat Application Using .NET C# Remoting

    Chat Application Using .NET C# Remoting

    Hi , Could someone let me know how to start with the building a chat client server application . I have tried the basic remoting sample wherein the client contacts the server n gets a response . I wanted to proceed towards building a chat application . I need help with what should the client do , example what would be the remote object here and how is it manipulated ? what would the client n server code deal with ?
    Thanking in advance ! :...
    See more | Go to post
Working...