Rich Java client deployment options

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike

    Rich Java client deployment options

    All,

    I'm working on a system for deployment on a corporate network. I
    would like to use a technology like Java Web Start to take care of the
    client deployment. And I would also like the performance offered by a
    natively compiled application.

    Looking into Java Web Start, I think it only deals with .jar files
    rather than .exe files. Is there any way to use Java Web Start with
    an executable file?? Or can anyone suggest an alternative approach??

    Thanks in advance for any help.
    Mike
  • Tom N

    #2
    Re: Rich Java client deployment options

    "Mike" wrote:[color=blue]
    > I'm working on a system for deployment on a corporate network. I
    > would like to use a technology like Java Web Start to take care of the
    > client deployment. And I would also like the performance offered by a
    > natively compiled application.
    >
    > Looking into Java Web Start, I think it only deals with .jar files
    > rather than .exe files. Is there any way to use Java Web Start with
    > an executable file?? Or can anyone suggest an alternative approach??[/color]

    You could put your exe into a jar file, then have a Java class to extract it
    :-)

    What do you plan to compile Java into an .exe with? You ought to check
    whether the native compiler is actually capable of compiling your "rich java
    client". It seems to me that Sun licensing prevents you from passing their
    supplied class libraries through a native compiler, so your compiler vendor
    must supply reimplementatio ns of those standard Java class libraries that
    your application uses. Unless the native compiler vendor has a deal with
    Sun of course.

    For software deployment of exe's, see



    Comment

    Working...