J#

Discussion in 'ASP.NET 2.0' started by jhonrath, Jun 24, 2007.

  1. Has anyone every pushed anything out to Discount ASP ini J#?

    I have some code compiled into DLL Libraries in J# and i can't get them to work on the host. Do they need to install the J# Redistributable package for this to work, or in DLLs does this not matter?

    Thanks
     
  2. It will need the J# redistributable package if the library is using Java types.

    For example,

    Integer x; // this is type java.lang.Integer which references Vjslib.dll (not installed on our web servers)

    versus

    int x;


    Aristotle

    DiscountASP.NET
    www.DiscountASP.NET
     

Share This Page