Hi,
I am trying to pass back an array of strings using XTile, similar to the
country example.
However, I get the following error before my receive event is called:
XSL-1101: (Fatal Error) DOMSource node as this type not supported.
I am running 3.0.3 on Tomcat 5.5, if that could be a factor.
Here is my listener code:
public String[] sCompanies = new String[]{"Argus", "Amoco", "Addison",
"Big Horn", "Bruin"};
public void searchCustomer(IRequestCycle cycle)
{
cycle.setServiceParameters(sCompanies);
}
Thanks in advance,
Craig