all groups > dotnet remoting > april 2007
no parameterless constructor
Posted by Peter Morris at 4/29/2007 12:00:00 AM
Each of my business objects belong to a specific "object space" and as a
result have no parameterless constructor. Is it possible to make my objects
serialisable so that they are created like so
Person serializedPerson = new Person(CorrectObjectSpace);
Thanks
Pete
... more >>
Remoting - Modifying object references
Posted by Josh C. at 4/27/2007 11:23:47 AM
I'm trying to determine if I've run into a working as designed feature
of Remoting or a bug in my code:
I have a method that has a signature like:
public void SaveEntity(Entity entity)
Inside the method, after the entity is persisted to the database, the
new EntityId is assigned back to the... more >>
TCPChannel ignoring formatter!
Posted by Tallies at 4/25/2007 1:22:00 AM
Hi,
I have a client and server that uses remoting to test the differences
between the different combinations of channels and formatters (well, at least
it attempts to).
Here's the problem. The server is setup for TCP:8081 with a binary
formatter. The client can switch between binary and... more >>
Looking for vb.net remoting sample.
Posted by Frank Smith at 4/23/2007 3:36:17 PM
Can anyone provide me with resources of vb.net example projects using
remoteing in IIS?
Regards,
Frank
... more >>
Deserialization Error - help!
Posted by mikebrengartner NO[at]SPAM gmail.com at 4/23/2007 6:50:14 AM
Hi there. I'm getting a deserialization error on my app. It was
originally created as a 1.1 app and was upgraded to framework 2.0.
One of our users pointed out that we can no longer open files that
were created long ago (seemingly, before the update to 2.0). Newly
created files work fine. Here... more >>
Starting Remote Server automatically
Posted by Erick at 4/21/2007 4:03:44 AM
I haven't used remoting before in .net only DCOM and COM+ with vb6.
I was wondering if the Server/listerner process will start
automatically when one of the objects it contains is requested ? Or
must it be running all the time for it to service the clients.
I'd like to build a remote serve... more >>
Requested Service not found
Posted by Peter Morris at 4/20/2007 6:47:32 PM
Hi all
I have a .NET 1.1 app like this
01: Virtual folder name = RemotePersistenceServerWeb
02: The following class......
namespace RemotePersistenceServerWeb
{
public class EcoPersistenceMapperProvider : PersistenceMapperProvider
..............
}
03: The following XML in web.confi... more >>
remoting on a standalone
Posted by billsahiker NO[at]SPAM yahoo.com at 4/20/2007 2:43:44 PM
I wish to convert a VB6 app that uses two activex EXEs, two DLLs and
one client standard EXE. I understand the only way to do this in .NET
2.0 is via remoting, which I have read up on.
Can I run and debug such a remoting app on a standalone PC?
Bill
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
What type of object can be remoted? Newbie Question
Posted by Frank Smith at 4/19/2007 1:23:37 PM
What type of objects can be remoted? I have a mapping application that uses
a third party SDK to build drawing layers base on vector data stored in a
database. I built a class that subclass the third party class and tagged it
with the <Serializable()> _ attribute . I want to build this object ... more >>
how to implement pinging
Posted by Robert Ludig at 4/11/2007 12:46:25 AM
I have a long running remoting client that every once in a while calls
a method on a remoting server. The client constantly displays the
connection status. How can the remoting client find out that the
remoting server has become unavailable right after it happend?
Does .NET Remoting have any bui... more >>
Multiple channels on multiple IPs
Posted by driesie at 4/10/2007 8:45:12 AM
Hi,
I have a strange problem with remoting on a project I am working on
currently.
There's 2 problems really, not sure if they are related.
Basically, the setup we have is 2 web servers (different networks)
connecting to one application server. So we have:
A: webserver on network 1
B: app... more >>
Help! What is the maximum size of a byte array that can be returned over remoting?
Posted by Nanker at 4/10/2007 7:09:49 AM
I'm working with a .NET application that uses remoting to communicate
between the web layer and an application layer, and one method returns
a byte array containing the contents of a file. The file sizes have
been up to 40 MB previously, and were returned with now problem.
However, now there are... more >>
RMI Application
Posted by Ghada Ayed via DotNetMonster.com at 4/10/2007 12:00:00 AM
Hi all,
can anybody give me a simple steps to run a java RMI application. The
application is simple a client and server. The client invoke a computation
method on the server and return the result. When I run the server I get an
exception that the "Class Definition is not found" which is the de... more >>
How do I serialize a Bitmap class?
Posted by Tony Cheung at 4/3/2007 11:20:18 AM
Hi all,
I expect using C# to serialize a Bitmap would be straight forward, but
it turns out that I am wrong. I tried with the code below but I failed
to get the image data.
class Program
{
static void Main(string[] args)
{
Bitmap corolla = new Bitmap(@... more >>
Windows Service static object method accessible trough remoting
Posted by Faessler Gilles at 4/3/2007 6:26:00 AM
Hello,
I currently have a windows service which handles multiple threads and a
shared queue object in which I had jobs to process.
Now I would like to be able to add jobs on the windows service queue trough
a .net remoting call.
I had a look at .net remoting documentation but i'm not ex... more >>
|