Hi,
I wonder if it's possible to transform java object into an xml with xslt.
I have this class
Code:
public class Customer
{
private String name;
private String address;
... getter and setters here
}
Is there anyway if I have a Customer object and pass it into xslt to create an xml?
Can someone please point me to the right way or give me an example.
Thanks