I am trying to create a browser based application that can access Java Objects that I have created as part of another project:
For example, say I have created a Book Class that contains the parameter author and isbn:
public class Book
{
public String author;
public int isbn;
}
and I would like to be able to access say Book.author from an html page.
Would greatly appreciate a link to a tutorial on this type of code integration.
jsp... is there something specific you don't understand?