all groups > dotnet remoting > july 2006 > threads for july 1 - 7, 2006
Filter by week: 1 2 3 4 5
Why is it locking up?
Posted by ThunderMusic at 7/7/2006 3:52:35 PM
Hi, I have a service and an app, I cut down the code to a minimum... can
someone explain me why it locks up when I try to get an instance of my
object?
public class LoginService : MarshalByRefObject
{
public override object InitializeLifetimeService()
{
// return null so ... more >>
Tweaking (de)serialization 2.0->1.0 possible?
Posted by henk gijsbert at 7/7/2006 4:29:37 AM
I'm getting an error when I try send a dataset from a .NET2.0 proces to
a .NET1.1 proces: Type is not resolved for
System.Data.Serializationformat, System.Data, ....
It appears Microsoft does not support backward compatiblity on datasets
in .NET2.0. I have seen more postings on this problem. ... more >>
Windows authentication over remoting... possible?
Posted by ThunderMusic at 7/6/2006 3:48:20 PM
Hi,
I have to develop an application that will consist of a service and a
windows forms application... the service could be on a distant server but I
need to authenticate the user as being part of the same domain. so when the
application starts, I can send something to the remote service a... more >>
is it possible accessing to .NET Remoting object with a VBscript
Posted by kid80 at 7/5/2006 8:16:22 AM
HI,
i am working currently on a .NET projet since a while. I have
implemented a .NET Remoting object as a marshal object. i know how to
do with C# for writing an appropriate client to access to it. It's an
object registred on the httpchannel.
i tried to find some vbscript samples on the n... more >>
Absolute path in objectUri attribute
Posted by Striped at 7/3/2006 11:43:54 AM
Can I specify an absolute path in the objectUri attribute, e.g.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown type="Processing.ReportProcessor, ReportAssembly"
mode="Singleton" objectUri="D:/DR/Server/Repo... more >>
Using Kerberos delegation with TcpChannels
Posted by vtjdailey NO[at]SPAM gmail.com at 7/3/2006 7:10:58 AM
Hello,
I am trying to have a remoting application use Kerberos authentication
because I have an application where the remoting server may make
further calls to other remoting servers, and even 3 levels deep I want
the code to run in the context of the original authenticated user.
But I can'... more >>
WebClient class is throwing exception
Posted by Deepson Thomas at 7/3/2006 4:28:01 AM
Hi,
Iam trying to use WebClient class under system.net namespace to download
files from internet via http. For that iam using DownloadFile method. But
when ever iam trying to download any file iam getting the error “"The
underlying connection was closed: Unable to connect to the remote ... more >>
Connection events
Posted by yevron2 NO[at]SPAM gmail.com at 7/2/2006 6:26:01 AM
Hey,
Wanted to know if there is a way to receive an event in the server that
a client tried to connect but didn't succeed?
Thanx,
Yael.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Remoting and Windows Forms - Deadlock?
Posted by CDX at 7/1/2006 12:00:00 AM
I have what appears to be a deadlock issue in a simple remoting application
consisting of 3 objects:
1) A server side Singleton
2) A client-side windows form
2) A client side helper to facilitate communication between the two
SITUATION ONE
I successfully implemented remote callback on the... more >>
|