all groups > dotnet remoting > september 2005 > threads for september 8 - 14, 2005
Filter by week: 1 2 3 4 5
typeof - VC++.NET Remoting
Posted by Ratan at 9/13/2005 11:52:01 PM
Hello All,
I am calling a .NET Remoting server object using VC++.NET 2005 (Beta 2).
The statement in the client code looks like-
IRemoteObject^ obj = (IRemoteObject^)Activator::GetObject(
typeof(IRemoteObject), L"tcp://localhost:9999/abc.rem");
obj->Method();
It gives compiler error C... more >>
Remoting the key??
Posted by TheMadHatter at 9/13/2005 5:15:02 PM
The Problem:
I am trying to create a windows service that will collect infomation,
save it on the harddrive, as well as be a server... and that is where
my difficulty starts. The idea was to get information across application
boundries.
The only way I could figure out how to make remoting t... more >>
How can a CAO server object notify it's hosting process?
Posted by RJ at 9/13/2005 5:09:22 PM
I want to have a stand alone .exe assembly host a remoted object, which will
be activated as CAO. The host process does little more than call
RegisterActivatedServiceType(), and contains NO reference to any instance
( proxy) of the remoted object. If the remoted object raises an event, how
can... more >>
Byte Array Allocation within proxy HTTPRequest == Memory Leak
Posted by casey.kramer NO[at]SPAM gmail.com at 9/12/2005 9:28:18 AM
I'm having an issue that I'm hoping some remoting whiz out there can
shed some light on for me.
I've got a remoted class, set up as a singleton, hosted via IIS
utilizing a Binary Formatter. This class has two methods which accept
another object configured to Marshal By Value, mainly because t... more >>
C dll in different context
Posted by Christophe MIGNOT at 9/12/2005 6:59:12 AM
Hi all,
On my current project, i need to run "some" operation from a dll writen in
fortran (the result is the same as C or C++, native Win32). To optimize
server resources, i try to compute multiple data at the same time. But (and
this is my problem), my dll is initialized by a file (there ... more >>
Async Remoting With Callback
Posted by RPT at 9/12/2005 6:59:06 AM
Hello All,
We are trying to develop a n-tier app with async remoting. We are using
Interface based callback mechanism for Async invocation.
The code looks something like this
interface IDataReadyCallBack
{
OnDataReady(object res1, object res2, object res3);
}
class RemotingCli... more >>
hardware requirements
Posted by StefanT at 9/12/2005 1:56:03 AM
Hi,
I expose a remote object on a server hosted on windows service as a
SingleCall activated object. I need to know if I run this server on a machine
the with 2 or more CPU the remoting framework will know to use all the CPUs.
Best regards,
Stefan ... more >>
alex
Posted by Alexander at 9/10/2005 6:57:02 AM
Where I can find information that explain me how to use .Net Remoting.
greetings.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
HELP: pass object to client from a different appdomain
Posted by Hank at 9/9/2005 7:36:11 PM
I am writing a windows service application and multiple clients, they run on
the same machine.
I used SAO/CAO factory pattern, they worked fine if I "new" the server
object when client request it.
However I run into a problem when I tried to create new object and run on a
new appdomain, followi... more >>
use .net remoting or com objects?
Posted by Wendy Elizabeth at 9/8/2005 9:55:01 PM
I want a Visual Basic 6.0 web or desk top application to communicate with a
Visual Basic.NET web or desktop application. I also want a Visual Basic.NET
web or windows
application to communicate with Visual Basic 6.0 web or desktop applications.
Can you tell me what is the best communicati... more >>
.NET Remoting, C#, IIS Server, first remote call succeeds, second fails with "The Underlying connection was closed: Unable to connect to the remote se
Posted by chugg at 9/8/2005 9:14:54 AM
I am using IIS Server and .NET Remoting. The code is written using C#.
The code works fine when the client is on the same network as the
server. When the client is moved to a different network, the code
fails. However, the "codes = Manager.GetIrCodeRatingsByCdm(3517);" call
works fine. It return... more >>
Remoting
Posted by Assem Abdel Maqsoud at 9/8/2005 6:08:22 AM
Hello guys, i have a question regarding the DotNet remoting technology. i
have noticed, after reading a lot of articles, that in order for a client
application to properly excute methods exist in a remote object it has to
have a copy of the binary of that remote object in the same directory of... more >>
How can I understand .net remoting?
Posted by Jet at 9/8/2005 12:00:00 AM
Hi all,
I am a freash man in .net remoting. What I understood that .net remoting was
a technology to call an object which was in remote site.The simply is in
different application domain. But when I read the book, it told that if the
client app want to call method from the server class or rem... more >>
|