all groups > dotnet remoting > june 2007
Examples of n-tier remoting.
Posted by PeteW at 6/29/2007 4:32:01 AM
Hi,
I am writing an application which is n-tier. The database is on the server
machine and I need to have the application on each client machine. I want to
have a Business Logic Layer and Data Access Layer on the server. The
application will call the BLL which will call the DAL which will i... more >>
Remoting and Statics
Posted by nilesh.shah.uk NO[at]SPAM gmail.com at 6/18/2007 3:37:45 AM
Have a remoted MarshallByRef singleton class hosted in windows
service:
class Foo
{
private static readonly Bar s_someStatic =
(Bar)ConfigurationSetting.GetConfig("BarSection");
}
When a client thru remoting calls a method on Foo, it gets initialised
including statics correctly.
Wit... more >>
Filter exceptions before marshall
Posted by chad at 6/13/2007 12:00:00 AM
Hi,
We have some services that we start up using RemotingServices.Marshall(..).
We need to filter exceptions generated on the server before they get serialized
and marshaled to clients. Where can we hook into those exceptions so we can
decide whether to pass a new friendly exception or the ... more >>
have duplicate wellknown types with different url?
Posted by Les Caudle at 6/11/2007 8:42:10 PM
I'd like to have this in my app.config
<client>
<wellknown type="MyApp.Remoting.IRemoteServer, Interface"
url="tcp://172.16.0.4:8096/Rmt" />
<wellknown type="MyApp.Remoting.IRemoteServer, Interface"
url="tcp://172.16.0.101:8096/Rmt" />
</client>
But, the duplicate wellknown t... more >>
Any idea about this eror ?
Posted by calderara at 6/11/2007 6:24:01 AM
Dear all,
I have build a client server aplication calling a remote object hosted on a
windows service using tcp chanels.
When my client is calling a method on my remote object I get following error :
System.Reflection.TargetInvocationException: Exception has been thrown by
the target of a... more >>
casting remote objects late binding
Posted by alex.kratshteyn NO[at]SPAM gmail.com at 6/8/2007 5:14:47 AM
The following always evaluates to true
bool isIMyInterface = (node.Tag is IMyInterface);
if (isIMyInterface)
node.Tag is a remote object
(IMyInterface) node.Tag also has no errors
it is when I actually trying to call a method on IMyInterface I got
error:
System... more >>
Calling remote object delay
Posted by calderara at 6/7/2007 3:02:01 AM
Dear all,
I have build a client aplication which gets service from a remote object
hosted by a windows service.
Everything works fine except one enoying initilaisation part.
The problem I got is that when my Server object is running on a remote PC
different that the client.The client plac... more >>
Using threads in vb.net framework 1.1
Posted by Colette_J at 6/4/2007 10:09:45 AM
Not sure if this is the best group for the posting, but hopefully someone
can point me in the right direction. I'm firing a thread which populates a
hash table of objects, can I at any point suspend the thread and traverse
(work) the hash table for an object and then continue the thread once ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
File Identity Lost After Downloading With WebClient
Posted by Thomas Weise at 6/1/2007 4:06:19 PM
Hello,
My application uploads files to an FTP server. Before uploading, I
calculate the hash value of each file. After downloading, the hash value is
checked.
This works fine when I'm using the FTP protocol for download as well. In
order to avoid the FTP credential overhead, I ahve tried to d... more >>
HWta is the best common way ? (loosing my hairs...stil one)
Posted by calderara at 6/1/2007 8:07:00 AM
Dear all,
I start to loos my hairs , hope anyone could help me to avoid loosing more.
I have build a remoting component host in a window service which is in
charge to store data to SQL database if everything works fine.
I have using it as server-activate and singleton mode with tcp chanel
... more >>
|