all groups > dotnet remoting > september 2004 > threads for september 1 - 7, 2004
Filter by week: 1 2 3 4 5
SAO with Parameters but Not CAO.
Posted by Lord2702 at 9/7/2004 10:18:11 PM
Tue. Sep. 07, 2004 10:15 PM PT
Is it possible to create an MBRO to host as SingleCall or SingleTon(Really,
I do not preferred), with parameters, so that, I can pass a string as
parameters to this MBRO, w/o. changing the MBRO. ? I don't mind shutting
down the remoting server. This could be poss... more >>
Sockets Question
Posted by Tiraman :-) at 9/7/2004 10:05:55 PM
Hi,
I have a client Server Application which was write in vb.net
i m using the TcpClient Object And A StreamWriter To Send a message to the
client but i would like to
send other objects but for strings like arrays, my own objects and so on.
how can i do that ?
Thanks.
T:-)
... more >>
call remoting object from vba
Posted by md at 9/7/2004 10:00:26 PM
Hello
I've created a C# outlook addin that will get an object from the server
using dotnet remoting. The addin is marked as Register for Com interop. When
i try to cast the returned object into the a specific class, i get
"specified cast is invalid". The specific class is implemented in a
(se... more >>
Passing Webcontrols
Posted by TJ Manigo via .NET 247 at 9/7/2004 7:27:01 PM
Hi, I have a bunch of subroutines that expect parameters of type=
Textbox and HTMLTableCell (i=2Ee=2E Sub uf_Test(ByVal loTextbox as=
Textbox)=2E The problem is that these objects are not inherently=
serializable, so whenever I call my remoting object, an=
excpetion gets raised=2E
Is ther... more >>
tcpchannel security
Posted by Ivan G. at 9/7/2004 6:50:52 PM
Hi.
Is it possible to use integrated windows security when using TcpChannel?
Thanx.
... more >>
Remoting Controls across AppDomains
Posted by Richard Brown at 9/7/2004 3:25:53 PM
I've read a myriad of posts, articles and other information sources on this,
but NONE seem to answer the question or provide a solution. Why am I going
insane? Here's the desired result and reasoning:
Desired Result and Reasoning:
Using a plugin architecture, allow loading of UserControl, ... more >>
Hosting in IIS - Timeout Setting
Posted by jpuopolo NO[at]SPAM mvisiontechnology.com at 9/7/2004 1:01:25 PM
All:
I have a remote object hosted in IIS 6.0 in Windows 2003 Server. One
of my method calls loads a set of images -- upwards of 7 MB. On slow
networks, this can take > 90 seconds, which causes a timeout --
Is there a way to set the timeout value of IIS/remoting layer to
something higher ... more >>
How Hoste Remote Object Securly
Posted by Naeem at 9/6/2004 11:31:02 PM
Hi all
How I host remote object on IIS prgrammtically without using
congiuration files and also donot let the client application know the real
implemetation of the remote object?
How I protect the open port in case of using window service hosting
remote object which keep listen... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Remoting, AppDomains and Events
Posted by Aaron at 9/6/2004 8:31:01 PM
Hi,
I have developed a framework, using AppDomains, to allow other developmers
to add plug-in's to our master application. I have written an application
manager class that hides the implementation specifics of this. Recently I
noticed the handle count of the application to climb as the appl... more >>
Is it possible to pass web controls?
Posted by TJ Manigo via .NET 247 at 9/6/2004 7:58:34 PM
Hi, I have a bunch of subroutines that expect parameters of type Textbox and HTMLTableCell (i.e. Sub
uf_Test(ByVal loTextbox as Textbox). The problem is that these objects are not inherently serializable,
so whenever I call my remoting object, an excpetion gets raised.
Is there a workarou... more >>
Can a remote object be a WebService as well?
Posted by Julia at 9/6/2004 4:39:39 PM
Hi,
Can a Remote object be a WebService as well?
i want to able to connect to a remote object either using .NET remoting
and HTTP\SOAP
so I wonder if I can create a singleton(statefull) object hosted in IIS
which can be xml web service
,NET remoted object,singleton and support COM+ transac... more >>
Determining if there a client instances of a server object.
Posted by Phil Jones at 9/6/2004 11:37:42 AM
Is it possible to ask the remoting system whether there are currently any
client instances of a server object?
[or is that knowledge only mainted in reverse - as in the client knows about
it's server?]
Thanks (hope this question ain't to ass-about-face!)
===
Phil
(Auckland | Aotearoa)
... more >>
Show form from remotable object?
Posted by Alex Oleynikov via .NET 247 at 9/6/2004 8:16:11 AM
Hi all,
Is this possible to display a windows form from a remotable=
object?
I need to create a singlecall server application that gives=
access to an instance of MapPoint ActiveX control to its=
clients=2E And I also would like to display a form from the=
remotable object containing th... more >>
Strange Debugger issues
Posted by cduden at 9/4/2004 5:14:47 PM
Not sure which group this question would go in so if this isn't the
appropriate place I apologize.
Here is the setup --
Rather large project consisting of a Winform client that communicates with a
series of SAO, Single Call, IIS hosted remoted facades all written in C#.
Up until recently ... more >>
I need help with architecture design,please.
Posted by Julia at 9/4/2004 1:35:11 PM
I need help with architecture design,please:
I have a server which constantly downloading messages from the internet
and store them inside a data base.
the server have two administrators options:
one is a local windows application,and the second is a web application
The administrator ca... more >>
Dynamic Publication
Posted by ChamithSri at 9/4/2004 7:17:12 AM
Hi,
What is meant by Dynamic Publication in .net Remoting?
Thanks,
Chamith
... more >>
Host an app on remote site
Posted by SD Keane at 9/2/2004 6:21:58 PM
Hi all,
We need to host our application (asp.net), vs.net 2003, on remote server
under a specified domain name.
The app is fine on the development machine. How to host it on the remote
site (shared hosting) ?
As far as I know, webhosting with the setup module is not permitted on
Hosting ... more >>
Fix passing exception through remoting problem
Posted by msnews.microsoft.com at 9/2/2004 12:30:17 PM
Exception can be thrown from remoting server to client on .net frame 1.0, it
starts have problem since 1.1 came, when will MicroSoft fix this problem?
... more >>
encrypt before serializing
Posted by Hazzard at 9/2/2004 6:28:03 AM
I have some xml tokens that need to be serialized before sending off to a
client. The token class inherits from MarsalByRefObject.
I need to encrypt the tokens also. That should be done first before
utilizing any of the serialization mechanisms. Right? thx -g
p.s. I think the answer is obvio... more >>
Can I return an Interface.?
Posted by Lord2702 at 9/1/2004 10:15:13 PM
Wed. Sep. 01, 2004 10:10 PM PT
I have a remoting server, on which I host a Business Object Component, I
want to return an Interface IDbConnection as follows...
IDbConnection *GetConnection() {
// code
return dbConnection; //as an interface
}
Thanks.
... more >>
Can we use remoting to call objects in 3rd Party Application servers
Posted by Vakkaas at 9/1/2004 8:39:02 PM
Hi,
I am intrested to interact with 3 party application servers like
EAserver. Anybody know how to do that?
Vakkaas
... more >>
System.InvalidCastException: Return argument has an invalid type
Posted by Julien Barbé at 9/1/2004 8:17:29 PM
Hi,
Does anyone know where is the problem ???
I receive a Unhandled Exception: System.InvalidCastException: Return
argument has an invalid type. on the getA() function !
getA() is a function from object B and returns a new object A.
object A has one property i that is a int = 1.
I try ... more >>
ref param doesn't keep changes if an exception is thrown (Remoting
Posted by Charlie at 9/1/2004 6:45:02 PM
Hi again,
Really I need some help or direction on this point. I prepare a
proof-of-concept app to show you my issue. We're trying to move ours custom
services to use remoting architecture, but if i don't find a quick fixed for
this issue, maybe I'll be dead man tomorrow!!
*************... more >>
Singleton Thread-Safe??
Posted by Henrik de Jong at 9/1/2004 4:08:27 PM
Hello,
I'm using a singleton hosted in IIS. In the singleton I'm using a
hashtable. My question is: Can I add and remove objects to this
hashtable without concerning about locking or something like that. Or:
are singletons thread-safe?
kind regards,
Henrik... more >>
Can a WinForm be a remoted object?
Posted by Julia at 9/1/2004 12:25:30 PM
Hi,
I have a server application which composed from a form which uses the Task
pattern to run background processes(threads),
each process is correctly update the user interface in the UI thread.
I want to allow ASP.NET application to call a method on my server
Since it is my first attemp... more >>
possible to call a remote object from IE?
Posted by Julia at 9/1/2004 11:31:27 AM
Hi,
I have an application inside an organization which uses IE as a client
and a .NET application as a server
I want to be able to call an object in the server from IE
1.Must WebService hosted in IIS or can I host it in my server application?
2.Is there a way to call a .NET remoting obj... more >>
Interface based serialization
Posted by noelwatson NO[at]SPAM bristol94.freeserve.co.uk at 9/1/2004 5:51:20 AM
I am attempting to get the example posted on csharphelp to work
http://www.csharphelp.com/archives/archive191.html
The example executes fine, but when checking whether the call
IResume aResume = resService.GetResume();
is passed copied locally to the machine (ByVal), I find that it has
be... more >>
|