active questions tagged remoting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:55:52Z http://stackoverflow.com/feeds/tag/remoting http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947219/actionscript-class-not-found-at-runtime-for-blazeds-communication 0 Actionscript class not found at runtime for BlazeDS communication Dougnukem 2009-12-22T15:48:43Z 2009-12-22T16:01:33Z <p>We are using GraniteDS autogenerated AS code to map Java remote objects to AS.</p> <p>We have objects that contain List sites in Java so when they are converted to AS it looks like:</p> <p><em>JAVA:</em></p> <pre><code> private List&lt;MyObject&gt; territories; </code></pre> <p><em>Actionscript:</em></p> <pre><code> private var _territories:ListCollectionView; </code></pre> <p>The trouble is we are using MXML databinding to bind the contents of that list generically, the trouble is we never reference the type of object contained in the list explicitly so it's never compiled into our SWF is there any way to ensure that objects in a list for a RemoteClass is compiled in?</p> http://stackoverflow.com/questions/1326971/initialising-server-activated-objects-in-net-remoting 0 Initialising server activated objects in .net remoting andyjohnson 2009-08-25T08:57:40Z 2009-12-22T14:00:03Z <p>I am using single-call server activated objects in .net remoting, and have a question about how to initialise the remoted objects.</p> <p>When my server calls RemotingConfiguration.RegisterWellKnownServiceType() it passes a reference to the Type of the object to be instantiated to service client requests. How do I initialise these 'remote objects' after thay have been created and before the client uses them?</p> <p>In my case, the remote objects need to connect to a database, so they need a connection string. How should they acquire this when the containing server doesn't known when they are created, and the remote object has no references to the containing server? What am I missing here?</p> <p>(My workaround for the moment is to store the connection string in a static field, since all remote objects currently use the same database. This isn't very flexible though, and looks like a hack to me.)</p> http://stackoverflow.com/questions/1944161/flash-remoting-and-java 1 Flash Remoting and Java Luke 2009-12-22T04:23:47Z 2009-12-22T04:23:47Z <p>I want to use Flash Remoting in my Flash app that is backed by a Java server. I'm interested in what my options are for using Flash Remoting with Java. I know about <a href="http://opensource.adobe.com/wiki/display/blazeds/BlazeDS/" rel="nofollow">BlazeDS</a> but it seems to be fully geared towards Flex, not Flash (AS3). I'd like to make simple AMF calls, as like in the old days.</p> <p>Can I use BlazeDS for this and if yes, can anyone point me to a good tutorial. Otherwise, are there any other good solutions available?</p> http://stackoverflow.com/questions/1936386/where-is-transparent-proxy-pointing-to 0 Where is Transparent Proxy pointing to? Charles Bretana 2009-12-20T17:13:20Z 2009-12-20T22:47:52Z <p>I am using .Net Remoting. I have a service exposing a singleton class that a client on another machine can register with, so that the server can broadcast messsages to all registered clients. </p> <pre><code> MessageManager mgr = MessageManager.Instance; //Static Singleton Factory Proprty RemotingServices.Marshal(mgr, MesgURI); </code></pre> <p>Now in my service, in the method where I am publishing these messages, I want to stop the code from sending the same message to the same client more than once. So I am iterating through the server's delegate.InvocationList</p> <pre><code>public event MessageArrived SendMsgToClientEvent; Delegate[] clientList = SendMsgToClientEvent.GetInvocationList(); List&lt;int&gt; dels = new List&lt;int&gt;(); foreach (Delegate d in clientList) try { mAH = (MessageArrived)d; int tgtHC = mAH.Target.GetHashCode(); if (dels.Contains(tgtHC)) // If we already sent SendMsgToClientEvent -= mAH; // to this one, delete it else { mAH.BeginInvoke(msg, OnMsgCallComplete, null); dels.Add(tgtHC); // keep track of which ones we've sent to } } // ..... </code></pre> <p>Now each delegate mAH contains a method (which will be called when the delegate is invoked) It also contains a Target property, which, (for instance methods), is populated with a reference to the object that this method will be called against.</p> <p>But for remote events like this, the delegate has been populated by event registrations from remote clients, over a .Net Remoting channel. So in this case, this target Property is populated with a <em>Transparent Proxy</em> object, not the object on the remote client box where the handler will actually be executed. So my assumption is that even if two delegate registrations come from the same method on the same remote object, they will each still get distinct individual transparent proxies on the server. Now what I want to do is ensure that if a specific client somehow registers more than once, that the server does not transmit the same message more than once to that client. (...and then remove that extra delegate from the invocation List). </p> <p>So my question is: How can I tell, from looking at the delegate, or from the transparent proxy in the delegates' Target Property, that two such delegates are actually from the same object on the same client machine?</p> http://stackoverflow.com/questions/1936526/security-sandbox-issues-with-flex-as3-and-appengine 0 Security Sandbox Issues with Flex/AS3 and AppEngine Sam Gammon 2009-12-20T18:20:10Z 2009-12-20T20:32:52Z <p>I'm having trouble with an AS3 AMF RemoteObject request that is hosted on App Engine. I have a crossdomain.xml file in the root of the domain, and also one at the remoting endpoint.</p> <p>Here are the contents of the root crossdomain.xml:</p> <p><code>&lt;?xml version="1.0"?&gt;<br> &lt;cross-domain-policy&gt;<br> &lt;site-control permitted-cross-domain-policies ="all"/&gt;<br> &lt;allow-access-from domain="*.appspot.com"/&gt;<br> &lt;allow-access-from domain="*.{appid}.appspot.com"/&gt;<br> &lt;allow-access-from domain="*.{appid}.com"/&gt;<br> &lt;allow-access-from domain="*.{appid}.org"/&gt;<br> &lt;/cross-domain-policy&gt;</code></p> <p>I have replaced my application's ID with {appid}. In the endpoint crossdomain.xml, it says the exact same thing, except it omits the <code>&lt;site-control&gt;</code> tag.</p> <p>Loading the swf file and testing it on my machine works just fine... I think that may have something to do with me having the debugger version of Flash Player. When I push it up to App Engine to make it public, other clients access it and get a <code>Client.Error.MessageSend Channel.Security.Error error Error #2048 url: http://05-alpha.latest.{appid}.appspot.com/_rpc/data</code>.</p> <p>I am using Flex 4 beta, and the App Engine Python runtime.</p> http://stackoverflow.com/questions/936676/dynamically-loaded-assembly-showing-form 0 Dynamically loaded assembly showing form? Arjan de Haan 2009-06-01T20:41:25Z 2009-12-19T09:00:02Z <p>Hi.</p> <p>Is there a way to allow an instance of a class from a dynamically loaded assembly to show a form?</p> <p>I have this plugin system which loads assemblies in separate domains (for unloading them as needed). These assemblies might have settings, and I was hoping I could have each assembly present a form to the end user to allow for editing them. Each extension in an assembly needs to implement a special interface just for this. However, on showing the form from my plugin manager class, I get an exception that the Form class isn't serializable. Apart from deriving from Form and implementing ISerializable myself, is there another way to do this?</p> <p>Tx for any hints, tips, and (hopefully :D) solutions! ...Arjan...</p> http://stackoverflow.com/questions/1911384/custom-formatter-for-net-remoting 0 Custom Formatter for .NET Remoting tom-cap 2009-12-16T00:05:20Z 2009-12-16T01:33:09Z <p>I would like to use a custom formatter for .NET remoting. In order to accomplish this, my understanding is that I have to implement something akin to the BinaryClientFormatterSink class (used for BinaryFormatter), but for my custom formatter. For example, if my formatter was FastBinaryFormatter, I would likely implement FastBinaryClientFormatterSink. I would then configure remoting to use my FastBinaryClientFormatterSink in the configuration file by providing the tag: . I have been searching for an example of how this is done to no avail. Ultimately I would like to use this over a TCP channel. Where could I find a sample implementation of this?</p> http://stackoverflow.com/questions/1911339/how-to-provide-a-streamingcontext-to-the-binaryformatter-when-using-net-remoting 0 How to provide a StreamingContext to the BinaryFormatter when using .NET remoting tom-cap 2009-12-15T23:55:47Z 2009-12-15T23:55:47Z <p>I am trying to provide the StreamingContext to the client-side formatter when using .NET remoting. I have set up remoting using the config file, e.g. . Is there a way to provide the Context property for the formatter in the configuration file?</p> http://stackoverflow.com/questions/1906860/impersonating-a-remote-object 0 Impersonating a Remote object srikanthv 2009-12-15T11:36:54Z 2009-12-15T11:36:54Z <p>I have a web application in which web server acts as a remoting client. Here I am creating CAOs using SAO. I want to impersonate the client who logs into the web application on Remoting Server. While I am able to impersonate the client objects created by SAO object factory, but using these objects method calls are not getting impersonated. Is this a desired behavior? Can't we impersonate the methods using the objects?</p> http://stackoverflow.com/questions/1901454/circumventing-wcf-with-direct-calls-to-a-dll-in-a-single-user-environment 0 circumventing WCF with direct calls to a DLL in a single user environment John 2009-12-14T15:12:23Z 2009-12-14T15:14:47Z <p>I am helping a company with a software package that will flexibly support multiple deployment scenarios. The package is written with .NET, has a well defined BLL, and utilizes SQL Server for the database.</p> <p>The design calls for a clear delineation between data access and services (BLL) and UI. There are at least two UI front ends at this point (WinForms and Web). We are proposing a WCF solution to run the BLL layer which can be run on a beefy application server. This path is pretty well marked and understood at this point, and covers one of our required deployment scenarios.</p> <p>The deployment scenarios are (in no particular order):</p> <ol> <li><p>Large multi user environment with 1-n application servers all hitting a suitably sized dedicated SQL server. </p></li> <li><p>Multi user environment running the UI/BLL on each individual’s machine all accessing a shared SQL server. </p></li> <li><p>Single user environment with a single machine running the entire application on their box (including SQL server). </p></li> </ol> <p>My concern is not so much with scenario (1) as much as (2) and (3). If the deployment is a flavor of type (2) or (3), WCF isn’t really buying us anything at that point and would hamper performance. Can someone suggest a way an application can be designed so that when deployed in scenario (1) it utilizes a BLL running on a application server, but in (2) or (3) where most if not all of the entire stack is on a single machine, WCF can be circumvented with more traditional calls to the BLL?</p> <p>The BLL logic would remain unchanged between all scenarios. Just in (2) or (3) I would like to have the BLL DLL loaded in memory with direct calls to it w/out having to go through WCF.</p> <p>I really appreciate any advice from the community on this!</p> http://stackoverflow.com/questions/1898362/net-wcf-servicehost-startup-arguments 0 .NET WCF ServiceHost - startup arguments Nippysaurus 2009-12-14T00:30:38Z 2009-12-14T01:39:27Z <p>I am creating a remotable object using WCF. This is a snipped of how I create the remotable object ...</p> <pre><code>ServiceHost service_host = new ServiceHost(typeof(MyObject), new Uri[] { new Uri("net.pipe://localhost") }); service_host.AddServiceEndpoint(typeof(IMyServer), new NetNamedPipeBinding(), "MyServer"); service_host.Open(); return service_host; </code></pre> <p>Is there a way to store some variables which are available when the remotable object is instantiated? I would prefer not to control EVERYTHING from the client. Is this possible?</p> http://stackoverflow.com/questions/1862815/net-channel-and-sinks-between-unrelated-appdomains 0 .NET: Channel and sinks between unrelated appdomains oakskc 2009-12-07T20:52:56Z 2009-12-13T17:20:15Z <p>I am of the understanding that when a new appdomain is created, the framework creates channels and sinks implicitly. If it didn't, you couldn't create an object in one appdomain and make use of a proxy in the other.</p> <p>(This is an understanding; please correct me if I am wrong.)</p> <p>Additionally, if an object is marshaled for remoting purposes, a channel must be explicitly registered in order for others to make use of it.</p> <p>(Right so far?)</p> <p>Here's where my understanding breaks down. Scenario: </p> <p>Appdomain 1: Remoting server with a marshaled object, channel is registered.<br> Appdomain 2: Client wishing to make use of the marshaled object.<br> Appdomain 3: For a plugin. Created from within appdomain 1 (server), creating the aforementioned implicit channels between appdomains 1 and 3.</p> <p>If an object is created in appdomain 3 (plugin) but the proxy reference is to be used in appdomain 2 (client), channel(s) and sinks are necessary. How do I do this?</p> http://stackoverflow.com/questions/1627312/net-remoting-calling-a-wcf-service-reference-errors-with-could-not-find-default 0 .NET Remoting calling a WCF Service Reference errors with "Could not find default endpoint element that references contract" Josh 2009-10-26T20:59:43Z 2009-12-12T16:00:03Z <p>I have <strong>.NET Remoting</strong> setup for a number of objects. It has been production for over a year and all is well with the setup. I've added a <strong>Service Reference</strong> today in a project called Entities. One of the classes with the Entities project calls this new Service Reference. The Entities project is <strong>class library</strong>. </p> <p>When I created Service Reference I noticed it created a file called "<strong>app.config</strong>" in the project root. It also created a file in the bin directory called [namespace].Entities.<strong>dll.config</strong>.</p> <p>We have a test console application that we call these classes through normal references (opposed to using remoting), this allows us to easily step through for debugging. Initially when I tried to run the test console it errored with the "<strong>Could not find default endpoint element that references contract</strong>." I resolved this error by adding the app.config from Entities project root to the root of the console application. </p> <p>When I went to try it in the Remoting setup, I received the same "Could not find default endpoint element that references contract" error. Unfortunately I haven't been able to figure out where to put the &lt;<strong>system.serviceModel</strong>> config information.</p> <p>I have tried the following without success:</p> <ol> <li>Add the information from app.conifg to the .NET Remoting web.config</li> <li>Add the app.config file to the root along with web.config</li> <li>Add the [namespace].Entities.dll.config file to the root along with web.config</li> <li>Add the app.config file to the bin folder root</li> <li>Add the [namespace].Entities.dll.config file to the bin folder root</li> </ol> <p>Any other suggestions where the configuration should be put to resolve this error?</p> http://stackoverflow.com/questions/1884804/checking-for-presence-of-net-remoting-server-is-my-approach-correct 2 Checking for presence of .NET remoting server - is my approach correct? Michael Petrotta 2009-12-10T23:20:02Z 2009-12-11T01:23:54Z <p>It's not possible to set a connection timeout on a .NET remoting call. Documentation occasionally refers to <a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.tcp.tcpchannel.aspx" rel="nofollow">TcpChannel</a> properties that allegedly do this, but <a href="http://social.msdn.microsoft.com/Forums/en/netfxremoting/thread/22d06986-b0a3-42f8-a5bd-43e950302fdf" rel="nofollow">discussions</a> and the most recent <a href="http://msdn.microsoft.com/en-us/library/bb187434%28VS.85%29.aspx" rel="nofollow">docs</a> I've found indicate that this is not possible. One may set a timeout on the remoting call itself, but not on the initial connection attempt. You're stuck with the default 45-second timeout.</p> <p>For various reasons I can't use WCF.</p> <p>This causes a problem when the remoting server goes away. If I attempt to make a remoting call, I'm stuck for those 45 seconds. That's not good. I want to check for the presence of the remoting server. Pinging it with a <code>PingTimeout</code> is the simplest approach, but I want to check specifically for the remoting server, as opposed to just the machine being up.</p> <p>After some experimentation, I've come up with this approach:</p> <ol> <li>Asynchronously begin a TCP socket connection to the remoting port. </li> <li>Wait for the connection to complete, or a timeout to expire (using a ManualResetEvent).</li> <li>If the connection async callback succeeded, return success. Otherwise, return failure.</li> </ol> <p>This works, but I'm unsure about my use of my WaitHandle and socket. I'd also like to assure thread-safety WRT concurrent checks, which I think I've done. My code's below. Do you see any problems with my approach?</p> <pre><code>private static bool IsChannelOpen(string ip, int port, int timeout) { IPEndPoint endpoint = new IPEndPoint(IPAddress.Parse(ip), port); Socket client = new Socket(endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp); SocketTestData data = new SocketTestData() { Socket = client, ConnectDone = new ManualResetEvent(false) }; IAsyncResult ar = client.BeginConnect (endpoint, new AsyncCallback(TestConnectionCallback), data); // wait for connection success as signaled from callback, or timeout data.ConnectDone.WaitOne(timeout); client.Close(); return data.Connected; } private static void TestConnectionCallback(IAsyncResult ar) { SocketTestData data = (SocketTestData)ar.AsyncState; data.Connected = data.Socket.Connected; if (data.Socket.Connected) { data.Socket.EndConnect(ar); } data.ConnectDone.Set(); // signal completion } public class SocketTestData { public Socket Socket { get; set; } public ManualResetEvent ConnectDone { get; set; } public bool Connected { get; set; } } </code></pre> http://stackoverflow.com/questions/895760/how-to-consume-remoting-in-ironruby 0 How to consume remoting in IronRuby Marc Vitalis 2009-05-21T23:20:39Z 2009-12-09T09:00:02Z <p>I was trying to consume a remoting service in IronRuby and I get this error.</p> <p>Attempted to call a method declared on type 'IronRuby.Runtime.IRubyObject' on an object which exposes 'Contracts.SomeManager'.</p> <p>Can you help me with this?</p> <p>Here's my code.</p> <pre><code>require "netincludes" some_manager = System::Activator.get_object ISomeManager.to_clr_type, "tcp://localhost:8080/SomeManager" some_manager.get_message "hello" </code></pre> http://stackoverflow.com/questions/1872059/can-i-place-remoting-configuration-in-web-config 0 Can I place Remoting configuration in web.config? srikanthv 2009-12-09T06:49:56Z 2009-12-09T06:56:23Z <p>I have an ASP.Net web application, which interacts with .Net Remoting application server. As part of this is it possible to place Remoting Client Configuration in Web.config file? If so, how it can be done?</p> http://stackoverflow.com/questions/1849220/net-remoting-singleton-memory-leak-tcp-marshal-by-reference 5 .NET Remoting Singleton memory leak, TCP, Marshal by Reference mlusby 2009-12-04T19:43:19Z 2009-12-08T00:06:33Z <p>I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine.</p> <p>The service instantiates the object like this:</p> <pre><code>serviceConfigRemote = new serviceConfigDataRemote(); serverChannel = new TcpServerChannel(9090); ChannelServices.RegisterChannel(serverChannel, false); RemotingServices.Marshal(this.serviceConfigRemote, "ServiceConfigData"); </code></pre> <p>The client establishes a connection like this:</p> <pre><code>TcpClientChannel channel = new TcpClientChannel(); ChannelServices.RegisterChannel(channel, false); configData = (serviceConfigDataRemote)Activator.GetObject(typeof(serviceConfigDataRemote), "tcp://localhost:9090/ServiceConfigData"); </code></pre> <p>The idea is for the service to be able to make changes to some of the parameters of the object, for the client to be able to read those changes. </p> <p>The object itself is:</p> <pre><code>public sealed class serviceConfigDataRemote : MarshalByRefObject { private bool myConnectedFlag; private bool mySendingFlag; private bool myUpdateFlag; private string myClientConfiguration; static readonly serviceConfigDataRemote instance = new serviceConfigDataRemote(); static serviceConfigDataRemote() { } public serviceConfigDataRemote() { myConnectedFlag = false; mySendingFlag = false; myUpdateFlag = false; myClientConfiguration = ""; } public static serviceConfigDataRemote Instance { get { return instance; } } public override object InitializeLifetimeService() { return (null); } public bool Connected { get { return myConnectedFlag; } set { myConnectedFlag = value; } } public bool Sending { get { return mySendingFlag; } set { mySendingFlag = value; } } public bool CheckForUpdates { get{return myUpdateFlag;} set { myUpdateFlag = value; } } public string ClientConfiguration { get { return myClientConfiguration; } set { myClientConfiguration = value; } } } </code></pre> <p>While the service is running by itself, the Mem Usage in Task Manager stays constant, even though the service is continually updating the object with status information. When the client is started, both begin to increase in Mem Usage, and never go down.</p> <p>This is the problem that I referred to in <a href="http://stackoverflow.com/questions/1840090/how-do-i-find-a-net-remoting-memory-leak-on-select-machines">My Previous Question</a> about finding memory leaks.</p> <p>It is appearing differently on different machines, some show no memory increases, but the machines that do will reliably reproduce this problem. Running .NET Memory Profiler shows that on the service, there is an ever increasing number of "New instances", with only one or two "Removed" in the tab Types/Resources where Namespace/System is Kernel and Name/Resource is HeapMemory. I'm still trying to learn how to use the Memory Profiler, so I apologize if this is the wrong information, and tip on where else I should be looking would also be appreciated.</p> <p>This object is instantiated once, with just a couple of parameters to read and write, no file io, no allocating of memory that I can see, and yet my memory usage only appears to go up the moment I start a connection from the client to that object and read its values. Any and all input would be appreciated, as I would like to avoid pulling this code and replacing it with named pipes or similar, but I'm quickly approaching that point as my only option.</p> http://stackoverflow.com/questions/1186718/event-problem-in-net-remoting 0 Event Problem in .NET Remoting cui chun 2009-07-27T06:29:17Z 2009-12-07T22:00:02Z <p>Learning from INGO RAMMER's "Advanced .NET Remoting", I tried to use the following codes for firing events to clients:</p> <pre><code>foreach (Delegate del in MessageArrived.GetInvocationList()) { try { mah = (MessageArrivedHandler) del; mah(msg); } catch (Exception e) { Console.WriteLine("Exception occured, will remove Delegate"); MessageArrived -= mah; } } </code></pre> <p>When I simulated a network problem in client side, the client's delegate was removed by -= as expected, and the MessageArrived became null. </p> <p>But as the network was restored, the client will try to connect, get remote object and re-register event as it does same for startup, it seems the re-registeration was successful as the MessageArrived was not null. </p> <p>The problem is I still got the exception will invoke the delegate which was then removed. As I understand, this shall not raise expcetion coz. the client is online again and re-connect() and connect() method shares the same codes...</p> <p>Can anybody help me?</p> http://stackoverflow.com/questions/1861079/net-remoting-wrap-user-objects-vs-more-remoting-channels 0 .Net Remoting: Wrap user objects vs more remoting channels oakskc 2009-12-07T16:24:10Z 2009-12-07T16:24:10Z <p>I'm learning about remoting by doing small remoting-based projects and also trying to enforce Good Practices while doing so to avoid my usual habit of developing Bad Habits.</p> <p>There is a service that makes use of user-created plugins. Each plugin is isolated in its own appdomain. Additionally, there is a client application that connects to and interacts with the service.</p> <p>There are channels for service-client communication and service-plugin communication, but nothing to facilitate plugin-client communication. As such, any object created by a plugin must be wrapped in a service-defined object before it can go through to the client (otherwise there is an exception due to lack of channel sinks).</p> <p>If this makes sense, my question is this: should I continue this pattern or should I be creating channels between the plugin and client appdomains to allow plugin-instantiated objects to go to the client application?</p> <p>Thanks for any education on the subject!</p> http://stackoverflow.com/questions/1859281/jmx-confuseremote-server-control 0 JMX confuse(remote server control) Olexandr 2009-12-07T10:54:58Z 2009-12-07T11:06:19Z <p>Hi. I have a couple of <strong>Tomcat</strong> and <strong>Glassfish</strong> servers.</p> <p>And i want to manage them over <a href="http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/" rel="nofollow"><strong>JMX</strong></a>. "Use <a href="http://www.openjdk.org/tools/svc/jconsole/index.html" rel="nofollow">JConsole</a>" - you could say, but this is wrong way because i'm writing Hudson plugin.</p> <p>I need starting point. I need something like <a href="http://www.openjdk.org/tools/svc/jconsole/index.html" rel="nofollow">JConsole</a> to integrate in my app and then invoke it when needed or... i just want to manage my app <strong>remotely</strong> via <a href="http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/" rel="nofollow">JMX</a>.</p> http://stackoverflow.com/questions/1010838/flash-lite-access-complex-data-on-the-webservice-net-based 1 Flash Lite access complex data on the webservice .net based? Marsh 2009-06-18T04:56:24Z 2009-12-06T08:59:59Z <p>Hi All, I am new to flashlite/actionscript, my problem is.. how can i call a method in the webservice having complex data(return data and paramters), The web service is .net based and it is tuned for a mobile friendly type of webservice(without xsd:import)... And the problem is brought up when the complex data from/parameter of WS is a structure data of c#... and i think AS/Flash needs some remote access in data handling.... I have read that to have flash remoting you have to install flash remoting in the machine, but is it posible in the Cellphone? How can I handle complex data from/to WS using flashlite in cellphones... sorry I am really new... Hope someone can help me...</p> <p>i got this error message calling from a WS method ... complexDataStructure myMethod(); "Unable to connect to endpoint: <a href="http://localhost:8001/myservice" rel="nofollow">http://localhost:8001/myservice</a> undefined"</p> <p>I can load my Webservice and having no problems on some methods having simple data types... I just dont know what to do with the methods having complex types...</p> http://stackoverflow.com/questions/1846766/asp-net-sessions-and-custom-authentication 0 ASP.NET sessions and custom authentication Multipass 2009-12-04T12:48:11Z 2009-12-06T06:56:36Z <p>I'm building a web site that will acts as a client to a persistant server process. ASP.NET will communicate with the server using .NET Remoting. The server is used by other clients as well (thick WPF clients and automated processes) and already has methods for password based authentication, authorization and sessions. The way I intend to build this is to require an ASP.NET session for all pages, and keep a remoted object in the server side session state that corresponds to a session in the backend server. I'll build a login page that passes on the credentials to the remoted session object which will keep track of the authentication status of the session. I hope all that made sense. Two questions:</p> <ul> <li><p>Is it safe to rely only on the ASP.NET session to ensure that a request is authenticated, or do I need to add some authentication cookie on top of this as well? The site will contain sensitive material and all pages will require HTTPS, so the session key should not be possible to pick up by a third party (at least not more so than an authentication cookie).</p></li> <li><p>How do I incorporate this with the ASP.NET authentication infrastructure? In specific, I want the HttpRequest.IsAuthenticated to be true if the server thinks that the session is authenticated and the Page.User principal to describe the currently authenticated user, again as seen from the server.</p></li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/1840090/how-do-i-find-a-net-remoting-memory-leak-on-select-machines 0 How do I find a .NET remoting memory leak on select machines? mlusby 2009-12-03T14:12:45Z 2009-12-04T13:26:48Z <p>The memory leak is not happening on every machine, but reliably on a couple at my work, and it's looking like close to 10% in the field.</p> <p>I have a product that uses a Windows service to monitor user input to launch alerts, paired with a visual application that serves only to sit in the system tray, and allow the user to make configuration changes.</p> <p>I chose to use a remoted object to share the configuration information between the two processes. In the service it is called serviceConfig, and in the visual application it is called configData. The object is created on the server first, and then remoted as follows:</p> <pre><code>try { InitializeComponent(); setAppInitDLL(thisDirectory); serviceConfig = new serviceConfigData(); Regex getVersion = new Regex("Version=(?&lt;ver&gt;[^,]*)"); if (getVersion.IsMatch(Assembly.GetExecutingAssembly().FullName)) { serviceConfig.Version = new Version(getVersion.Match(Assembly.GetExecutingAssembly().FullName).Result("${ver}").ToString()); } // Create the server channel for remoting serviceConfig. serverChannel = new TcpServerChannel(9090); ChannelServices.RegisterChannel(serverChannel, false); RemotingServices.Marshal(this.serviceConfig, "ServiceConfigData"); baseLease = (ILease)RemotingServices.GetLifetimeService(serviceConfig); lock (Logger) { Logger.Write(String.Format("The name of the channel is {0}", serverChannel.ChannelName)); } lock (Logger) { Logger.Write("Exiting Constructor"); } } catch (Exception ex) { lock (Logger) { Logger.Write(String.Format("Error in Constructor:{0}", ex.Message)); } } </code></pre> <p>Then in the visual application I have a private object that I connect using:</p> <pre><code>configData = (serviceConfigData)Activator.GetObject(typeof(serviceConfigData), "tcp://localhost:9090/ServiceConfigData"); </code></pre> <p>When reading or writing to this object, I have catch statements for Socket Exceptions and Remoting Exceptions which then call this same statement.</p> <p>On most machines this works without leaking memory, but on some it leaks very quickly. All machines at work have .NET 3.5, some are XP, a couple are Vista. The problem has only been seen on XP machines, and the machines in the field are all XP. </p> <p>Any ideas where I should be looking, and as a secondary question, should I be using something completely different from this?</p> http://stackoverflow.com/questions/1834026/what-is-the-best-way-to-transmit-java-objects-over-a-network 3 What is the best way to transmit Java objects over a network tomdee 2009-12-02T16:22:07Z 2009-12-04T00:35:49Z <p>I am trying to transmit objects of a particular class from one server to another.</p> <p>The options I'm looking at are: </p> <ul> <li>Serialize the data as JSON and send it over the wire using HTTP, and de-serialize at the other end.</li> <li>Serialize the data into some binary form and transmit using TCP sockets.</li> </ul> <p>What are the best practices in this area? What are the gotchas?</p> <p>Ideally I would like the interface to be versioned, so the sender and receiver can be upgraded independently.</p> <p>I'm considering the JSON approach as I already have code that will serialize/deserialize the objects into JSON.</p> http://stackoverflow.com/questions/1840904/remotely-pass-messages-to-c-console-app 0 Remotely pass messages to c# console app Jody Powlette 2009-12-03T16:03:03Z 2009-12-03T16:22:49Z <p>I need to be able to send a string message and receive a string response from a console app running within our organization. I want to pass simple strings back and forth from a remote IP address. What's the best way to do this? My first thought is to listen on a socket, but that seems like overkill. I've looked a little into becoming a WMI producer/consumer, but that's pretty involved too. Also there's System.Runtime.Remoting.Channels.Tcp to register for messages. </p> <p>It seems like any of these methods would work, but what's the easiest way to get an event to fire when a string arrives and how to pass a string back from a c# console app?</p> http://stackoverflow.com/questions/1834377/presentation-layer-communication-with-business-service-layer 0 Presentation layer communication with business service layer HDave 2009-12-02T17:09:44Z 2009-12-02T17:09:44Z <p>I have an existing enterprise Java application with several layers including a web services facade over a Java services layer over a domain layer over a data access layer. The system currently has not GUI. The clients of this system currently are (simply) other composite web services based applications.</p> <p>I am somewhat new to the whole web presentation stuff, but I am currently investigating approaches to providing customers with our own GUI thin client. I am currently looking into JSP, Ajax (or both). My question is how should this presentation layer talk with the services layer? What gives the best performance and customer flexibility for deployment?</p> <p>Here are some of my thoughts:</p> <p>1) Use the existing web services: Because I have existing web services I could have my web presentation invoke the existing web services. I like this idea because it would allow my customers the option of clustering just the web presentation tier in the event they need to scale up the number of users. It also reuse the existing web application tier. My concern here is that it will have high latency, slower response times and make the users crazy...perhaps Ajax will help?</p> <p>2) Use remoting: I could have the web application java objects use some kind of remoting technology such as RMI to talk directly to the services layer on the app server and by pass the web services facade. This gives customers flexibility, and could perhaps run faster than the web services communication, but I am not sure how much faster.</p> <p>3) Put it all in one JVM: I could put the services/domain/data access JARs right into my web server and run it all on one tier -- this seems to me to be the fastest possible performance as it eliminates an entire layer of network communication. Customers could still cluster the web presentation servers, but they may or may not like the idea that they completely bypass the existing application servers.</p> <p>Are there other, better options? Are these approaches sensible?</p> http://stackoverflow.com/questions/482811/remoting-server-forcibly-closing-client-connections-in-the-middle-of-remote-calls 0 Remoting server forcibly closing client connections in the middle of remote calls Carsten Hess 2009-01-27T09:47:57Z 2009-12-02T15:00:05Z <p>Hello everyone. I have a system consisting of a server accepting remoting calls from clients with TCP as the underlying transportlayer. It normally works like a charm, but if I increase the no. of clients, the server starts at random to close the TCP connections in the middle of the calls. Not all calls are interrupted this way.</p> <p>That is really unexpected behaviour... I get no exceptions on the server side, just the client side exception:</p> <pre><code>System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host Server stack trace: ved System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags) ved System.Runtime.Remoting.Channels.SocketStream.Read(Byte[] buffer, Int32 offset, Int32 size) ved System.Runtime.Remoting.Channels.SocketHandler.ReadFromSocket(Byte[] buffer, Int32 offset, Int32 count) ved System.Runtime.Remoting.Channels.SocketHandler.Read(Byte[] buffer, Int32 offset, Int32 count) ved System.Runtime.Remoting.Channels.SocketHandler.ReadAndMatchFourBytes(Byte[] buffer) ved System.Runtime.Remoting.Channels.Tcp.TcpSocketHandler.ReadAndMatchPreamble() ved System.Runtime.Remoting.Channels.Tcp.TcpSocketHandler.ReadVersionAndOperation(UInt16&amp; operation) ved System.Runtime.Remoting.Channels.Tcp.TcpClientSocketHandler.ReadHeaders() ved System.Runtime.Remoting.Channels.Tcp.TcpClientTransportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders&amp; responseHeaders, Stream&amp; responseStream) ved System.Runtime.Remoting.Channels.BinaryClientFormatterSink.SyncProcessMessage(IMessage msg) Exception rethrown at [0]: ved System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) ved System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&amp; msgData, Int32 type) ved EBH.GuG.AgentKit.Transports.RemotingAgentHostEndPoint.SyncInvoke(Agent a, Int32 port) </code></pre> http://stackoverflow.com/questions/1815920/deserialize-amfphp-messages 0 Deserialize AmfPhp messages unknown (google) 2009-11-29T16:09:51Z 2009-12-02T00:25:17Z <p>Is it possible to deserialize the AmfPhp messages while remoting?</p> <p>They are in binary, and assuming that amfphp understands what they are I should be able to decode what it s.</p> <p>How to ? is this considered a security issue?</p> http://stackoverflow.com/questions/1817123/as3-whats-newer-better-than-amfphp 0 AS3: What's newer/better than AMFPHP Dan 2009-11-29T23:20:39Z 2009-12-01T21:48:33Z <p>I'm aware that AMFPHP has long been used to connect php with flex. I remember I read somewhere that there's something better now, but I didn't take a note of it, and of course now I forgot. Does anyone know what that could be?</p> http://stackoverflow.com/questions/1644002/calling-a-wcf-service-from-a-remoted-dll 0 Calling a WCF service from a Remoted DLL ctacke 2009-10-29T14:09:56Z 2009-12-01T09:00:07Z <p>I have a process, let's call it Process A, that is hosting a simple WCF service exposed though a basic Http binding. If I spin up that process I can then access the service from another process, Process B, with no problems.</p> <p>However, my required use case isn't so simple. What I need to do is access the Service from a DLL that is hosting with Remoting. The Remoted DLL is spun up in a separate AppDomain by Process A and it is on the local machine. </p> <p>When I call a method in the remoted DLL from Process A which in turn is supposed to call back to the WCF Service hosted in Process A the caller just hangs and after one minute I get a service timeout. The service code is never entered (a breakpoint that gets hit when calling it externally never is reached).</p> <p>The fact that the Remoted DLL <em>is</em> able to create an instance of the client proxy class tells me (correct me if I'm wron here) that the configuration for the service is at least available in the Remoted client. It doesn't complain about missing configuration info or throw an exception like it does in the external client if I remove the service reference.</p> <p>So I guess my question is multi-part. First, can a Remoted DLL call a WCF service in the first place (i.e. is all of the requisite infrastructure available to the client)? If it can, what might I be missing? And how does one go about debugging something like this? Debugging remoting is painful when it's a simple case - and this is not so simple.</p> <p>One last thing - I can't change the fact that I'm in a process that is remoting the DLL and that remoted DLL needs to consume the service. It's a deeply entrenched part of the infrastructure of this app. I could, however, most the WCF service host to another process if it is of any use (and I might try that while waiting for any answers here).</p>