Re: java.rmi support inside Visual J# .NET
From: bruce barker (nospam_brubar_at_safeco.com)
Date: 11/30/04
- Next message: Scott Allen: "Re: dynamically load DLL exception when calling Activator.CreateInstance(type, object[])"
- Previous message: Scott Allen: "Re: make httpmodule class part of application?"
- In reply to: Nainesh Jhaveri: "java.rmi support inside Visual J# .NET"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 29 Nov 2004 17:42:50 -0800
no.
one of the key design decisions of the .net CLR was not to require the jit
to recompile code that has already been compiled. the CLR design team
thought that this java feature was too expensive a jit/vm feature.
the rmi library requires this feature so it cannot be done in j#. when you
reference a rmi object, the calling code is recompiled so it can talk to the
new downloaded rmi proxy.
you will have to replace the rmi code with a j# supported version, such as
web services with prebuilt proxies. if you need discovery mode, then you can
also switch to web services, but calling them natively is a lot more
complex.
-- bruce (sqlwork.com)
"Nainesh Jhaveri" <Nainesh Jhaveri@discussions.microsoft.com> wrote in
message news:108F4B9C-EF15-45CA-AC74-C8F9C3B18CC2@microsoft.com...
| I have a ton of Business logic writter in Java, which I am trying to
expose
| to .NET platform using Visual J#. NET.
|
| The java code is making extensive use of java.rmi.* package.
| but, the latest version of Visual J#. NET is not supporting the same.
|
| Is there a way to make this happen.
| Does any one have any information on migrating java RMI code into .NET
| platform.
|
| Thanks in advance for any help
- Next message: Scott Allen: "Re: dynamically load DLL exception when calling Activator.CreateInstance(type, object[])"
- Previous message: Scott Allen: "Re: make httpmodule class part of application?"
- In reply to: Nainesh Jhaveri: "java.rmi support inside Visual J# .NET"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|