Are you trying to compile/use the demo or you just have the own code?
is input JSON string valid? Can you post it here?
Do you have @JSONObject annotation on Company POJO? Did you try to
debug it? No exception are there?
I'm 100% sure that you do no have created a Jsonizer interface which
is generated by JSR269 processor. If you don't want to use maven
project setup, you have to run processor manually. Or create it on
your own.
Add this file on the classpath (CompanyJsonizer.java):
package sk.seges.acris.json.client.facebook.model;
public interface CompanyJsonizer extends
sk.seges.acris.json.client.data.IJsonObject<sk.seges.acris.json.client.facebook.model.Company>
{
}
Hope this helps
Peter
On 29. Júl, 05:59 h., messidinho <
ger...@gmail.com> wrote:
> Thanks for your help so far. I have progressed further now. However,
> I'm encountering a problem with a null object after getting the JSON
> string. I'm using the code fromhttp://
code.google.com/p/acris/source/browse/trunk/acris-deployer/src....