all groups > dotnet remoting > september 2004 > threads for september 22 - 28, 2004
Filter by week: 1 2 3 4 5
CreateObject("Excel.Application",MyServer)
Posted by KC at 9/28/2004 1:24:56 PM
Hi,
I have code similar to this..
Dim xlApp As Object
xlApp = CreateObject("Excel.Application", "\\MyServer")
The call is from a asp.net (Intranet) application. \\Myserver is a network
computer in the same domain as web server. The only way I can get this call
worked is when I add the us... more >>
Two way communications using .NET Remoting
Posted by John Olbert at 9/28/2004 12:25:06 PM
newgroup: dotnet.framework.remoting
Subject: Two way communications using .NET Remoting
We want to use Remoting to establish two communications (both by value and
reference) between two C# modules. One is a standalone Exe using Window
Form's. The other is a C# Dll that is loaded by a modif... more >>
OneWay attribute
Posted by thelawnet NO[at]SPAM gmail.com at 9/28/2004 8:15:54 AM
I have a lot of remoting methods that look like this.
void UpdateDataset(DataSet ds) {
}
As there is no return value, if I place [OneWay] on the methods will
it improve performance or offer other benefits?
And if so, what happens if the method raises an exception? Will the
fact that the ... more >>
SerializationException with Remoting
Posted by Jason Schneekloth at 9/27/2004 5:47:04 PM
OK, I'm working on making the simplest version of a remoting app that I
possibly can....basically, I'm trying to implement a Broker object to go
between a client and a server, so, I have a client and I have a server setup.
I have the server register the type IBroker with the system:
namesp... more >>
Activator.CreateInstance & Remoting
Posted by Patrick Bristow at 9/27/2004 12:25:02 PM
I had an application that used basic TCP remoting working great. But when I
tried to use a wrapper interface for my remote object &
Activator.CreateInstance, I couldn't seem to get things working again.
Here's the code with excess removed:
Server-side:
IChannel channel = new TcpServerC... more >>
.NET remoting server on a computer with 2 network adapters
Posted by eyal at 9/27/2004 5:55:12 AM
A client on the primary network adapter network works well with the
server, but a client on the secondary fails to invoke any of a remote
object's methods.
With a debugger, we can see that the server receives the client request
to create a remote object, but when the client tries to inv... more >>
Exception "Object Reference not set to an instance of the object
Posted by aacool at 9/26/2004 12:06:32 AM
Subject: .NET Remoting problem - exception "Object Reference not set to
instance of an object"
From: aacool <a@b.c>
Newsgroups: microsoft.public.dotnet.framework
Hi,
I need some help with a .NET Remoting problem - an "Object Reference not
set to instance of an object"exception is thrown ... more >>
Remoting Design Question
Posted by Chris Szabo at 9/25/2004 8:21:02 AM
Hey everyone. If you're a real .Net person this question is going to make
your day... I'm working on a project, and I'm in the initial stages of
design. I wanted to get some feedback on my ideas before I begin any
implementation.
The basic idea is not new. I have a web service that pro... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Memory Leak
Posted by Navdeep Bhardwaj at 9/25/2004 2:43:01 AM
Hi
We are using remoting for the communication between our main web application
and business logic server. After using for sometime the memory uses of our
server application on the server increases to about 5-6 MB. On using the
windows performance moniter we found that a large amount of memor... more >>
Assembly loaded twice when Assembly.LoadFrom() is used
Posted by fermo111 NO[at]SPAM yahoo.it at 9/24/2004 4:39:54 PM
The following code results in a strange behavior.
Assembly formAsm = Assembly.LoadFrom ("http://localhost/net/MyAssembly.dll");
Type formType = formAsm.GetType ("MySpace.MyForm");
object formObj = Activator.CreateInstance (formType);
Looking at the HTTP requests that are made, I noticed
tha... more >>
Is DotNet remoting the c# equivalent to applets and servlets?
Posted by David Flajole at 9/24/2004 2:39:17 PM
[Long time reader, first time poster!!!]
Hello,
I am building a real-time internet auction app that will need to function
like many of the on-line games that I have seen on the web. The program
will be written with ASP.Net/C# and needs to allow two-way communication
between the server serv... more >>
CAO remoting and Web gardens
Posted by SolDel NO[at]SPAM mercer.com at 9/24/2004 10:31:55 AM
I have come across an issue when using CAOs and enabling the Web garden on
the process model. If gardening is disabled, eveything works fine. If it
is enabled, the remote object is created and appears to marshal just fine,
however, any calls on the proxy result in the standard error,
... more >>
.Net remoting expiration error
Posted by Stephane at 9/24/2004 8:07:10 AM
Hi,
I've got a server using .Net remoting. From a web administration, I control
data contained in the server but after few minutes of inactivity, i got this
error and the objects has disapear:
System.Runtime.Remoting.RemotingException: Object
</37da65f4_aed1_48a9_978e_210706ff8213/P5J_kh... more >>
OneWay method on remoted object
Posted by TT (Tom Tempelaere) at 9/24/2004 5:43:04 AM
Hi,
I have a remoted object which implements an interface with a OneWay method.
Suppose the remoted object is not alive (ie RemotingServices.Marshal was't
called). The client connects to it and receives a TransparantProxy. The
client calls the OneWay method and does not get an exception, ev... more >>
How to check if remoted object is present?
Posted by TT (Tom Tempelaere) at 9/24/2004 5:41:06 AM
Hi,
If I connect to a remoted object using RemotingServices.Connect, then a
TransparantProxy is returned even if the remoted object is not alive.
How can I check whether the remoted object is alive without having to call
a method in its remoted interface?
Thanks,
--
Tom Tempelaere.... more >>
have remoting with events working on a single machine, but...
Posted by JohnK at 9/23/2004 4:07:01 PM
have remoting with events working on a single machine, but... when I put the
server, client, and remote object on a 2nd machine.... things do not work
completely.. So basically I have the same 3 directories (Client, Server,
RemoteObject) on two machines. I run the server on machine1, the clie... more >>
ChatCoordinator.dll
Posted by Shwe Ko at 9/23/2004 2:55:03 PM
I am testing the ChatCoordinator.dll, Server.exe and Client.exe from MS Exam
prep guide.
When I run Server.exe as it is told in Chap04, I got the following error
message and I cannot go on..
Any help will be grately appreciated.
//////////////////
C:\70-310\Solution\Ch04\CS>server
Unh... more >>
"Request for the Permission of type <obj> Failed" while deserializing a remoted object
Posted by Tomcat at 9/23/2004 2:17:47 PM
Hello Everyone,
I seem to be having this problem that has kept me occupied for almost two
days, so I'm hoping somebody out there has seenit and has some suggestions.
Here's the problem...
I have an application that I am developing which involves a Web Service
using Remoting to access rem... more >>
Preventing a RCW from being remoted
Posted by Jeremy Lew at 9/23/2004 1:16:54 PM
I want to pass a COM object reference between two managed processes (A & B)
which are communicating via TCP/IP remoting. So, I instantiate a RCW in
process A, and return it to B during as the return value of a remote method
call. However, what seems to be happening is that B gets a proxy to A's... more >>
Remoting
Posted by DC at 9/23/2004 10:00:06 AM
Hi All,
I am accesing MSMQ messages via remoting, and have both client and server
running on my local machine.
The basic architecture is :
Server
=============================================================
MessageObject (
impleme... more >>
Remoted object is connectable even after disconnecting it...
Posted by TT (Tom Tempelaere) at 9/23/2004 9:13:09 AM
Hi there,
In my current project I have a logging utility that is a standalone app. The
utility shows log entries, other apps can connect to it and send logging
entries to be displayed.
I use RemotingServices.Marshal at startup of the log util to allow other
apps to access the logging ut... more >>
Getting Events, for Windows Service
Posted by Patrick Jox at 9/22/2004 8:21:20 PM
Hello,
I am wondering if it makes sense to find a solution for the following task.
I know, that I can receive events from remote application and succeeded
already to follow some examples. But I need a very specific architecture and
would like to know, if this is generally possible:
I have an ... more >>
Mike Woodring's .NET Sample Question - Remoting event
Posted by skyer.tw NO[at]SPAM gmail.com at 9/22/2004 10:20:59 AM
Dear all:
I got a problem running Mike's remoting sample.
http://www.bearcanyon.com/dotnet/#RemoteEvents
When I start "server" & "client" all in my computer, it works well.
If I put "server.exe" in Computer A and put "client.exe" in Computer
B, I got a Web Exception. (cant not connect to ... more >>
WEB Services and .NET Remoting...
Posted by gordingin NO[at]SPAM consiliumsoft.com at 9/22/2004 7:49:41 AM
A WEB Service and a .NET Remoting application (if I am saying that
correctly) 'can' provide the same service. Am I correct in saying that
an .NET application can consume the service provided by a .NET Web
Service and a .NET Remoting application but a NON .NET application
like a native C++ or MFC... more >>
Activator.GetObject state parameter question
Posted by xsup NO[at]SPAM hotmail.com at 9/22/2004 5:01:10 AM
I would like to pass some info my single call remoting object thru
state parameter of Activator.GetObject. But I don't know how to
extract this information on server side, in my business object.
Anybody has a suggestion?... more >>
question about events and proxy-server
Posted by jarod1701 NO[at]SPAM gmx.de at 9/22/2004 1:18:24 AM
Hi everybody,
as i'm totally new to remoting I wonder whether it is possible to get
it to work using an http-channel over a proxy-server.
The thing is that my company uses a proxy-server which only allows
http via port 8080.
I want to develop a client-server-application. The client would
con... more >>
|