microsoft.public.dotnet.framework.remoting Archive - July 2004
Post a message to this list
Messages
Page: 1234
remoting on network-less machine (5 replies)
microsoft.public.dotnet.framework.remoting
hi all, i want to do fast inter process data sharing in my app, some suggested that remoting is the best for this. my question is: can i use remoting (for inter process comm) on a machine which doesn't have network card, or event no network services/components installed? thanks sci
remote object rights problem (4 replies)
microsoft.public.dotnet.framework.remoting
Hi All, I'm getting a bit confused about the identity remote objects are executed under. I've written a service that hosts a remoteable object, and a client that can access it all this works OK. Both host and client run on the same machine, the host service is configured to run as localsystem. The aim of the service is to allow actions to be executed with localsystem rights, however, when I connec...
.Net Remoting and ISS (3 replies)
microsoft.public.dotnet.framework.remoting
Hi everyone I 've made a .net remoting client/server application using http channel. Now, I would like to make it secure by using an ISS server (I'm under W2k). The problem is that I have absolutely no idea of how to proceed. Could someone highlight me about this? ka *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it!
capturing remote events (2 replies)
microsoft.public.dotnet.framework.remoting
does anyone have any code samples, examples or documentation that explains how to capture an event that takes place on a remote computer? i suppose what i want is a lightweight notification services. i want clients to be able to subscribe to events that take place on a central computer or server. thanks m
Using client side proxies to instantiate remote objects (5 replies)
microsoft.public.dotnet.framework.remoting
This seems to be a touchy issue, but I think that it is important one and I would like to promote an objective discussion with those who are interested. The reasons why I believe that you should use client side proxies and instantiate remote objects using the new operator wherever possible are as follows: #1 Less code is required and it's simpler. #2 The overall footprint is smaller. #3 You do not...
Singleton and IIS (3 replies)
microsoft.public.dotnet.framework.remoting
Hi, I'd like to build a .NET Remoting component that has to be singleton. Actually, this component will serve as a "collaborative component". Each client will connect to this component, which will keep a reference to each connected client. This collaborative component will then be able to send a message to every or some of the clients, allow clients to see who is connected, etc... I'm now wonderin...
Remoting issues between Windows 2000 and Windows XP (6 replies, VIP)
microsoft.public.dotnet.framework.remoting
Simple client/server remoting application in which the client creates a reference to a published server object. It then sends a reference to itself back to the server so that the server can call back to the client. This works fine between two Windows 2000 systems, and works fine when a Windows XP system is the server. But when a Windows 2000 system is the server and XP is the client, calling back ...
Remoting interfaces on local machine (8 replies)
microsoft.public.dotnet.framework.remoting
Hi, I have an ASP.Net client that uses remoting (HTTP in IIS) to connect to the server using only the interface of the required objects (as per Ingo Rammer examples). So the actual implementation assembly is not known on the client side. What I was wondering is if it is also possible to create the objects locally when the client and server are on the same machine without creating another virtual d...
Perhaps Simple Question? (4 replies)
microsoft.public.dotnet.framework.remoting
I am very new to .NET Remoting and so I have a question (perhaps for many here in the group a simple question). I have the following sample constitution. public class RemoteObject : MarshalByRef { public int myValue 12; public void doSomething() { // Some code } } public class Server { public void initializeRemoteObject(RemoteObject A) { // do some initialization } // all following code is for tra...
Microsoft.Samples.Runtime.Remoting.Security question (2 replies, VIP)
microsoft.public.dotnet.framework.remoting
Does anybody know why the .NET Remoting Authentication and Authorization Sample ( http://msdn.microsoft.com/library/default.asp?url /library/en us/dndotnet/html/remsec.asp ) does not work properly when I use interfaces rather than classes for implementation?
.Net Remoting 2nd client (6 replies, VIP)
microsoft.public.dotnet.framework.remoting
Hello; I'm working on a project using .Net Remoting and events and facing the following problem. When the first client access the server ( as web site), the program works fine but with 2nd client, it will stop working without any error meassage. The client can be in localhost or in a network. Anybody has an idea.
Genuine Channels through a Firewall. Problem (2 replies)
microsoft.public.dotnet.framework.remoting
I have a firewall that has a port forwarded to a particular machine. I have a Channel setup to listen on that port. With TCPChannel I set the machine name to the external Ip address and it works fine. This doesn't seem to work with genuine channels GenuineTCPChannel. Is anyone familar with Genuine channel to know how to get this to work? any help appreciated.
COM object works with WinForms but not with ASP.NET (5 replies)
microsoft.public.dotnet.framework.remoting
Hello! I want to use an existing COM object (i.e. I do not have the sourcecode) in an ASP.NET application with .NET framework 1.1. The same object can be included in a winforms application and runs without any problem. There is also no problem with .NET framework 1.0 so I think it is a security problem! Does anybody know which settings are responsible for this problem! What has to be changed that ...
An alternative to events? (5 replies)
microsoft.public.dotnet.framework.remoting
Hi NG In one of his numerous articles, Ingo Rammer advise the .net remoting developpers not to use events for networked application. I'm a newbie in programming and actually, I do use events in my .net remoting application...since I haven't yet found other ways to do what I want. Here is the actual scenario : When changes are made on the remote object (Singleton SAO) by a client, this client send ...
Remoting with windows services (6 replies, VIP)
microsoft.public.dotnet.framework.remoting
Hi, I got three windows services A,B,C. I need to invoke some of the methods in service C from B. Is it better to use remoting from Service B? Any good examples avilable for this kind of sceniorio? Regards, Sachi
COA Server on different sub net (4 replies)
microsoft.public.dotnet.framework.remoting
If I try to have a client activate an object on a server that is on a different subnet it dosen't work correctly. The object will create but any calls made to the object after this time out. SAO are working fine and CAO are working fine from within our network. Does anyone have any idea? Thanks Stewart
Database Transaction management across different remoting objects. (2 replies)
microsoft.public.dotnet.framework.remoting
Hi, If I seperate my middle tier (business domain services) into functional areas, as follows Application Person Service Database Order Services Database such that I have a PersonService and an OrderService, each a singleton server side object, which execute database procedures. I have Person Order AddPerson AddOrder My application needs to be able to call both methods within a single transaction....
Are the Singleton objects ever collected (2 replies)
microsoft.public.dotnet.framework.remoting
I'm using .Net remoting singleton object in both console application and windows service application. Lease time is set to 10 minutes with renew on call time to also 10 minutes, and that works fine after 10minutes of client inactivity I get new object on next request. But the problem is that the previous object is newer collected. According to my investigation he stays in memory for the life of th...
Does someone has the sample codes of the book <<Building C# web service with asp.net and .net remoting>> (2 replies, VIP)
microsoft.public.dotnet.framework.remoting
(Type your message here) I have bought the book named Building C# web service with asp.net and .net remoting but I don't find the sample codes of the book in its' press web site www.wrox.com,does some friend konw it? From: John Adolf Posted by a user from .Net Guru (http://www.dot-net-guru.com/) Id u9N7yXAKP0eLXNOLuh 8mg /Id
soapsuds for binary (21 replies)
microsoft.public.dotnet.framework.remoting
Is there anything like soapsuds that generates proxies for binary remoting rather than soap?
Copy Events (2 replies, VIP)
microsoft.public.dotnet.framework.remoting
hi I want copy an Event of a control to an other control. I have the control. I know the name of the event, but I don't know the method by name. How I can resolve this problem? Torsten From: Torsten Lang Posted by a user from .Net Guru (http://www.dot-net-guru.com/) Id NsF0FKPi4ESlK2Ttq/yN5g /Id
Obtaining List of Networked Computers. (NON AD) (2 replies)
microsoft.public.dotnet.framework.remoting
I've searched and searched and I have yet to find an answer on this. Why wouldn't there be an object in the .Net namespace where I could find out computers connected to a workgroup. Its so practical, yet there is nothing. So far I was able to do this by using the Process Object and spawning a &quot;NET USE&quot; command. There must be a native way to do this using the framework. Anybody ever done this?
IIS Remote Host & Proxy Servers (2 replies)
microsoft.public.dotnet.framework.remoting
I'm getting a message (407) Proxy Authentication Required. when trying to invoke a method on a remote object that is hosted on a IIS site A.B.C on an intranet machine. Internal DNS has been sorted where i can browse to a test page on the site using IE with no problems. If i try to invoke a remote method i get the error above, if i disable the proxy in IE, the remote object method invockation is su...
Remoting -v- Enterprise Services -v- Web-services (4 replies)
microsoft.public.dotnet.framework.remoting
With Microsoft (Richard Turner) now suggesting Enterprise Services for the internal tiers of applications, and minimizing the use of remoting (a &quot;last resort&quot; option?), what are people's thoughts on technologies for new n tier applications in WAN/Internet environments ? Scenario: Application tiers all on physically separate machines: 1. client UI (smart client and/or browser) geographically disper...
Get "not mark as serializable" when passing VB6 Type as a parameter (3 replies)
microsoft.public.dotnet.framework.remoting
Hi, I have a project where I need to separate a VB app from his components that will reside on a separate machine. I've decided to use the .Net remoting to do accomplish this. My solution is to recreate the .net components with the same signature that the vb components and only change the references in my VB app and recompile it. This way, when the vb app creates a new obejct, the .net component i...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification