all groups > dotnet remoting > july 2006 > threads for july 22 - 28, 2006
Filter by week: 1 2 3 4 5
Bi-Directional Remoting with Unmanaged App
Posted by victor at 7/28/2006 4:14:28 PM
Hello,
I'm facing the following difficulty with a Remoting app which
communicates with an Unmanaged (VC6) app in a two-way manner.
I have done the direction from Framework to VC6 through WIN32-API
delegates, using FindWindow + PostMessage. This works fine.
But now I have to go the other way... more >>
Remoting and Sockets
Posted by LordHog NO[at]SPAM hotmail.com at 7/28/2006 10:32:31 AM
Hello,
I was wondering what are the differences between using the
System.Runtime.Remoting vs. System.Net.Sockets? I am sort of confused
what the differences are between them and which particular framework is
best suited for its own niche.
I am planning on implementing some basic commun... more >>
Setting UICulture on the Server Side
Posted by MattyMatt at 7/28/2006 8:25:22 AM
I have a remotable object that exists on a server. I have several
clients that can instantiate this object and call methods on it. The
methods can return strings from resource tables and are localized
depending on the UICulture of the current thread. I would like to set
this UICulture based on t... more >>
Exceptions break the application even within try...catch... Why?
Posted by ThunderMusic at 7/27/2006 4:14:09 PM
Hi,
I use remoting in a Windows app... this remoting call a ServerA and using
ServerA get an object (marshaled) from ServerB... if I call a method on the
object gotten from ServerB and this ServerB has shut down it's service, I
get an exception and this exception stop the application event ... more >>
problem with credentials in remoting
Posted by ThunderMusic at 7/26/2006 4:44:47 PM
Hi,
Let me explain my architecture : Client-->ServerA-->ServerB
So, Client makes a call to ServerA which returns an object gotten from
ServerB... The credentials are passed from Client to ServerB my using
Impersonation on ServerA...
The problem is the following :
ServerB is a Windows Ser... more >>
Manual Transactions and Remoting
Posted by Ryan H at 7/26/2006 11:36:53 AM
Hi,
My application is written in VB.NET and has a data access layer that resides
on a different server and is accessed via Remoting.
Currently, when performing an update to the database, I pass the SQL string
and connection string to the data access layer like so:
DataAccessLayerClass.Run... more >>
>net 2.0 remoting and SSL
Posted by SNORBERG at 7/26/2006 10:49:01 AM
I would like to be able to use HTTP, SOAP with a remoting service (not IIS)
and use SSL to connect. It works as I would like when connecting via http but
not https.
Searching the web only tells me to use IIS to host my service and https is
there. But I would like to keep everything in my se... more >>
Exceptions and remoting
Posted by ThunderMusic at 7/25/2006 2:35:09 PM
Hi,
I receive an exception from remoting on the first call I make on the remote
object... "No connection could be made because the target machine actively
refused it"... it means the server is not present (well, it's not started,
actually), but even if I put my code in a try...catch structur... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
problem impersonating when remoting
Posted by ThunderMusic at 7/25/2006 12:00:38 PM
Hi,
When I try to use impersonation when remoting I always get an exception even
when the server and client are on the same computer... Here are my 2 config
lines for the channels (that's about all there is in each config files)
Client :
<channel ref="tcp" secure="true" tokenImpersonationL... more >>
problem with WindowsPrincipal
Posted by ThunderMusic at 7/24/2006 4:28:39 PM
Hi,
I have a problem getting WindowsPrincipal objects for remote calls... if I
only get from a client to a server, it works fine, but if I have a client
that calls a server to get an object hosted on another server, the hosted
object does not get a WindowsPrincipal, but a GenericPrincipal.... more >>
|