> > Unfortunately we don't have any Java coders here, just C# .NET ones.
> > Is there a way to do it in that?
>
> No. Java is written in Java.
> I'm sorry, I wasn't clear. Is there a way to do the communication from
> the browser to an external C# .NET application?
Persuading a browser to launch an application installed on the client
(irrespective of what that app is written in) isn't particularly difficult,
so long as the browser is IE and you don't mind ramping down the security:
http://www.thescripts.com/forum/thread92803.html
However, ActiveX is an IE-only technology so, for cross-browser
compatibility, you need a Java applet.

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
DS2 Systems - 29 Sep 2007 02:46 GMT
If you're AX control is in C++, you could do something like CreateProcessEx
to launch the program. Then you would use some form of interprocess
communication (IPC) to talk between the programs. I recommend TCP/IP or
shared memory. Of course there are other methods, but these are the easiest
IMHO.
>> I'm sorry, I wasn't clear. Is there a way to do the communication from
>> the browser to an external C# .NET application?
[quoted text clipped - 6 lines]
> However, ActiveX is an IE-only technology so, for cross-browser
> compatibility, you need a Java applet.