all groups > dotnet remoting > september 2003 > threads for september 8 - 14, 2003
Filter by week: 1 2 3 4 5
show progress of SAO bytes transferred for client?
Posted by Les Caudle at 9/13/2003 5:57:11 PM
I am creating a SingleCall SOA where my client uses Ingo's RemotingHelper to get
a reference to the object as:
IRemoteServer obj =
(IRemoteServer)RemotingHelper.GetObject(typeof(IRemoteServer));
where I use the config file to set things up as:
RemotingConfiguration.Configure("MyProgram.exe.... more >>
evidence that there is NO !!! async processing on the server
Posted by Joe Robe at 9/13/2003 11:05:40 AM
Experts, tell me that I am wrong or this is another big joke of the remoting
framwework.
Server side we have the ServerProcessing enum which tells us if a call was
processed sync,OneWasy or Async.
But , it will NEVER be processed ASYNC !! I searched in all the source and
the simple proove c... more >>
Load class
Posted by Cezar at 9/13/2003 6:17:46 AM
Hi,
I was trying some basic Remoting examples where in the
server class was also the class I create the object to
MarshalByRefObject and everything worked fine.
Now I create a separate class and I'm trying to call it in
the server, to create an instance, take the Type and pass
it to the ... more >>
How does the server push objects/messages/data to clients
Posted by johnfofawn NO[at]SPAM hotmail.com at 9/12/2003 9:54:37 AM
Hi,
From my .NET remoting server application how do I push objects or
messages or data to any connected clients?
How do I display a list of all the connected clients?
Thanks,
John... more >>
Handling transaction
Posted by DSD at 9/12/2003 9:19:39 AM
Hi,
Is there a way like COM in VB.Net to handle the
transactions. My client ASPX/VB.Net is calling the
remoting object and this remoting object is hitting the
sql database using SqlClient. I want to add the
transactions just like COM object. Please provide some
integrated wayto do it.
... more >>
How do I debug a remotable object?
Posted by Terry at 9/12/2003 7:19:53 AM
Hi,
I'm new to remoting and I'm wondering how I can debug a
remotable object. While debugging my client I am unable
to step into a method call on a remoted object. How can I
debug the remoted object?
Thanks for your help,
Terry
... more >>
SecurityException in IIS hosted component, when upgrading to .NET 1.1
Posted by Sherif ElMetainy at 9/12/2003 12:16:29 AM
Hello
I have a remoting application uisng http channel, the server side is hosted
in IIS. I use binary formatter. My server side code has to connect to an SQL
server to perform its tasks.
The application was running fine on .NET 1.0 but when it was upgraded to
1.1, when the server attempt t... more >>
delegates over remoting
Posted by Andrew Webber at 9/11/2003 4:08:51 PM
i wondered if anyone could tell me why i get a security
exception when i pass a delegate to a "broadcasting"
object that takes a delegate as a parameter.
the "broadcasting" object takes a delegate and invokes
the method in a new thread. the idea was to pass a method
to another computer ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Cannot load type exception, what does that mean?
Posted by Mazen S. Alzogbi at 9/11/2003 6:00:45 AM
Hi,
Can anyone give me a real and clear explanation of the
following error below?
System.Runtime.Remoting.RemotingException: Cannot load
type SHUAACapital.WebSite.RemotedTypes.PublicationManager,
SHUAACapital.WebSite.RemotedTypes.
at System.Runtime.Remoting.RemotingConfigInfo.LoadType
... more >>
Remoting and Windows Service
Posted by Michael Drake-Brockman at 9/11/2003 4:31:00 AM
I have a singleton object which is MarshalByRef and is registered using
RegisterWellKnownServiceType in the OnStart method of my host windows
service application.
I need the windows service to create an instance of my class also in the
OnStart and keep the object alive for as long as the servi... more >>
Webservices or Remoting
Posted by Marcel Gnoth at 9/11/2003 12:17:31 AM
Hallo,
in our new project we discuss about webservices or remoting
Clients should communicate over HTTP and through a
firewall with the middletier. Clients should send small
serialized DataObjects to MiddleTier Components who should
do some thing with the DataObjects and after this send
... more >>
.NET Remoting Question
Posted by Zhao Li at 9/10/2003 9:13:17 PM
What happen if two clients make a same method call on a same remotable type
simutaneously? Does .NET remoting handle it automatically? Or do I need to
do anything special to deal with it?
Thanks for any help.
... more >>
.NET remoting or MSMQ ?
Posted by Zhao Li at 9/10/2003 7:31:57 PM
Hi all,
I am pretty new to the area of IPC and got to know .NET remoting couple
weeks ago. Right now we're at the starting phase of an IPC project and need
some help in choosing an IPC mechanism. Basically we need that any
application in a data acquisition system is able to send and receive
n... more >>
Remoting & Authentication
Posted by Jimmy [Used-Disks] at 9/10/2003 3:44:34 PM
How can authentication be implemented in .NET Remoting? I would like users
to "log in" to my remoting service by authenticating them against a
database. On subsequent calls, I would prefer that the client application
did not have to re-supply its log-in credentials. How can this be done?
Thank... more >>
Window service with remoting
Posted by Roger Down at 9/10/2003 2:07:41 PM
I have a simple window service application, which loads a remoting object
(MarshalByRefObject) using the RemotingConfiguration method. The remoting
object is defined in the app.config. Is there some way to communicate with
my window services application from the remoting object, when using this w... more >>
How to: Determine if you have a Network Connection???
Posted by Steven Van Dyke at 9/10/2003 1:34:42 PM
Hi
I need a code snippet to determine if my computer is connected to a network
or not.
There's probably a System.Net function for it, but I cannot find it.
Thanks,
Steve
... more >>
poor performance
Posted by Norvin Laudon at 9/10/2003 11:46:20 AM
Hi,
I have a singleton object exposed on a server using
RemotingServices.Marshal, through an HttpChannel.
Clients connect and call a method on the singleton that returns an object
about 650Kbytes in size.
Right now, both client and server are on the same computer.
The method call takes... more >>
Genuine Channels and UnregisterChannel
Posted by Timian1Heber1 NO[at]SPAM hotmail.com at 9/10/2003 11:41:06 AM
Hello all,
I'm using the Genuine Channels product and have some problems with
unregistering a channel after use. If I just call unregisterchannel
I will get a NullReferenceException when going out of scope or forcing
Garbage Colletion as shown below.
Have anybody encountered this problem w... more >>
MarshalByRef
Posted by Ale K. at 9/10/2003 8:03:49 AM
Hi, i'm new on the world of remoting and i was wondering, what to do if i
want to remote an object that already inherits from another class???
Thanks.
Alex.
... more >>
Passing objects between client and server
Posted by jjkboswell NO[at]SPAM yahoo.com at 9/10/2003 8:02:42 AM
I'm new to .net remoting and am struggling to work out how to pass an
object from a client to a server.
In the Server code below I declare a class which holds data in it, and
a class which has a method which takes the data class as an In/Out
parameter. The method sets a string in the data par... more >>
RemotingServices.Marshal question
Posted by Edward J. Stembler at 9/10/2003 7:05:06 AM
How does RemotingServices.Marshal register an object?
Does it use SingleCall or Singleton?... more >>
Remoting with Transactional Components
Posted by sahridhayan at 9/10/2003 6:32:04 AM
Hi all
I am working with remoting for BL components,
i have seen a link in msdn related to
"Remoting with Transactional Components", but now it says
File Not found.'
Can anybody show some directions
Thanks
Sahridhayan... more >>
Passing a MarshalByRefObject as an input parameter causes error - URGENT
Posted by Rebecca.Lohr NO[at]SPAM sts.siemens.com at 9/10/2003 6:02:33 AM
Hi all,
I'm working on a client/server application using .NET remoting. I
have several objects in a class library that inherit from
MarshalByRefObject. One of these classes is registered as a
WellKnownType by the server and retrieved by the client through a call
to Activator.GetObject(). ... more >>
Tell where an object is going to connect.
Posted by Ricky Jones at 9/9/2003 4:46:07 PM
When registering my objects as server activated on the client is there any
way I can verify that they exist without creating the object?
Thanks
Ricky Jones
... more >>
.net remoting specification
Posted by Lu Tong at 9/9/2003 4:26:39 PM
anyone knows where to find a .net remoting protocol specification? i
don't want something that teachs how to use .net remoting, but something
that explains some low-level details of the protocol, such as packet
format, serialized object format, etc. thanks.
--ltong
... more >>
Moving data files between client & server via Remoting
Posted by Randy Geyer at 9/9/2003 1:50:36 PM
Hi,
I'm new to remoting and need some advice. I'm developing a client-side
utility that will be used to remotely upload (import) and download (export)
data into an SQL database over the internet. We want to use .NET remoting.
The client will transfer the contents of a local data file to the ... more >>
Serialization and cross domain calls
Posted by Scott Robinson at 9/9/2003 10:24:51 AM
Here is my scenario
I have an object that is marked as serializable and also
derives from MarshalByRefObject (reason for this
explained below).
I have an ASP.NET application that allows for "PlugIn"
assemblies by creating a secondary domain and dynamically
loading the PlugIn assembly i... more >>
TcpChannel on two network cards server doesn't reply client
Posted by Simon at 9/9/2003 10:16:59 AM
I run server application on a compute with 2 NICs, only one of the NICs has
network connection to the client computer. The client application has no
problem to invoke singletion SAO object on server, but it got
SocketException with message "A connection attempt failed because the
connected party... more >>
.NET Remoting and No-Touch Client Deployment
Posted by Bryan at 9/9/2003 8:29:55 AM
I trying to web deployment the client-side of a .NET
application which uses .NET Remoting and I'm having
problem configuring .NET Remoting using the
application's .config (e.g. App.exe.config) file. When I
call RemotingConfiguration.Configure("App.exe.config") I
get a file not found exce... more >>
BinaryFormatter prb -- server.exe.config or we.config.
Posted by Need it at 9/9/2003 2:16:00 AM
hello ,
we developed a web application (asp.net),i developed
the Data Access layer (classes that inherit the
servicedcomponent). pages reference to the dlls and
everything works fine.
now we need to build a Windows application that uses the
same dlls .
so for that reason the .NET remot... more >>
Perf counters
Posted by Ice at 9/8/2003 10:04:36 AM
All -
Does anyone have any performance counters (or can point me) that show the
difference when hosting remoting servers in IIS as opposed to a windows
service assuming that formatter is always binary?
ice
... more >>
Custom Server Sink and IMessage requestMsg
Posted by rabinowitzm NO[at]SPAM hotmail.com at 9/8/2003 8:33:16 AM
Hello All,
I'm implementing a custom server sink to log calls to my remote
singleton object. in my ProcessMessage() method, i can successfully
see the requestHeaders (ITransportHeaders), but I cannot see the
requestMsg (IMessage). It's always null.
My questions are:
- Am I doing someth... more >>
Register a Channel fails via Config file !!
Posted by Need To Know More at 9/8/2003 12:41:40 AM
hello ,
in the Server side the followings are done:
a configuration file is created and contains
<system.runtime.remoting>
<application>
<service> <wellknown mode="Singleton"
type="DataAccessServer.CdaForTest,
DataAccessServer"
objectUri="CdaForTest.soap"/>
</service>
</applic... more >>
|