[appengine-java] Re: JAXB Support (2)

2011-02-07 Thread Jeroen Kransen
I got it working! I replaced the whole JAXB with an alternative JAXB implementation called JaxMeAPI. This is the Maven dependency: jaxme jaxmeapi 0.5.1 Now I got stuck again though, as it turns out that Apache FOP is incompatible with GAE. FOP (more specifically xmlgraph

[appengine-java] Re: JAXB Exception on Production and not on local env

2011-01-07 Thread Didier Durand
Hi, Please, dump here the entire stack of the exception: that provides info for more precise answers from this forum. regards didier On Jan 6, 8:32 pm, Roi wrote: > Hi, > I am using JAXB to serialize objects in app. > I have this function that i use to generate XML response from objects > in m

[appengine-java] Re: JAXB

2010-05-03 Thread David Chandler
There is an AppEngine plug-in for Apache Commons VFS that lets you store files in the Datastore. http://code.google.com/p/gaevfs/ /dmc http://turbomanage.wordpress.com On May 1, 11:48 pm, m seleron wrote: > Hi, > > I think that it is possible > by using memcache or datastore. > > Though you mig

Re: [appengine-java] Re: JAXB

2010-05-01 Thread m seleron
Hi, I think that it is possible by using memcache or datastore. Though you might already have seen I think that the link where post was done by Duong BaTien is useful. Please try variously. thanks. > Thanks saleronm > I share your sample application adn its working. > I have question, whether i

Re: [appengine-java] Re: JAXB

2010-05-01 Thread Łukasz Woźniczka
Thanks saleronm I share your sample application adn its working. I have question, whether is there a possibility that we store file as xml on Google app engine??? If a have file as xml so can i marshal/unmarshal or modify it ?? Your example is wery helpful but can i save result in file ?? Thanks f

Re: [appengine-java] Re: JAXB

2010-04-30 Thread Duong BaTien
Please share your example if you can. We will share our solution at the right time for using: (1) GAE, Guice, Objectify, Jersey REST and JAXB at server side, (2) Jersey REST client, JSONP in GWT 2. Thanks. BaTien On Fri, 2010-04-30 at 22:41 +0900, seleronm wrote: > Hi, > > That's great informati

Re: [appengine-java] Re: JAXB

2010-04-30 Thread Duong BaTien
This may be the one you are looking for. It works with JAXB 2.2, Jersey and GAE http://tugdualgrall.blogspot.com/ Duong BaTien DBGROUPS and BudhNet On Fri, 2010-04-30 at 15:38 +0430, Łukasz Woźniczka wrote: > This link is useful. > http://stackoverflow.com/questions/1955396/whats-the-easiest-w

Re: [appengine-java] Re: JAXB

2010-04-30 Thread Łukasz Woźniczka
This link is useful. http://stackoverflow.com/questions/1955396/whats-the-easiest-way-to-persist-java-objects But i'm looking for implementation on google app engine... -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to

[appengine-java] Re: JAXB

2010-04-30 Thread seleronm
Hi, Though it is likely already to have known I think that I can use jaxb by using memcache or datastore instead of the filesystem. The following links might be useful for marshal/unmarshal. http://stackoverflow.com/questions/1955396/whats-the-easiest-way-to-persist-java-objects Plese try. than

[appengine-java] Re: JAXB Support

2010-04-11 Thread Raj
I was facing similar issue and use of 2.1.12 version of JAXB reference implementaion fixed the issue..Thanks On Apr 6, 10:41 pm, Toby Reyelts wrote: > It looks like you're bundling the latest 2.2 JAXB RI. Apparently they made a > change in that release which requires access to the protected metho

Re: [appengine-java] Re: JAXB Support

2010-04-06 Thread Toby Reyelts
It looks like you're bundling the latest 2.2 JAXB RI. Apparently they made a change in that release which requires access to the protected method, ClassLoader.findLoadedClass. This makes it incompatible with App Engine. If you can use the previous release (2.1.2), a built-in version of JAXB, or eve

[appengine-java] Re: JAXB Support

2010-04-06 Thread Brian
I've been working with the tutorial mentioned above and it runs fine in my local environment, but when I deploy to GAE JAXB is throwing the exception detailed above. I'm baffled as to why this is running locally but failing on GAE. I though the local environment was supposed to replicate the actual

Re: [appengine-java] Re: jaxb-impl version?

2010-01-28 Thread Don Schwarz
What happens when you include the version of JAXB that you want to use? Please include a stack trace and some explanation of how your application is configured. On Thu, Jan 28, 2010 at 4:10 PM, Iqbal Yusuf Dipu wrote: > I'm kind of in the same boat. May we know which version of JAX-B > implement

[appengine-java] Re: jaxb-impl version?

2010-01-28 Thread Iqbal Yusuf Dipu
I'm kind of in the same boat. May we know which version of JAX-B implementation is being supported in App Engine? Thanks. IY -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-j.

[appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-10 Thread andy.booth
Thanks for the quick resolution on this. A previously deployed app which gave the above class not found error, which uses JAXB 2.0 features extensively for both XML and JSON serialization, works just fine this morning. Many thanks. Andy On Dec 9, 11:01 pm, Toby Reyelts wrote: > The built-in JAX

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-09 Thread Jeremy Blythe
It works now. Thanks. On Wed, Dec 9, 2009 at 11:01 PM, Toby Reyelts wrote: > The built-in JAXB implementation should be available now. Please let us know > if you continue to see problems. > > On Sat, Dec 5, 2009 at 3:16 AM, Jeremy Blythe > wrote: >> >> Thanks, but I'll stick with Simple XML htt

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-09 Thread Toby Reyelts
The built-in JAXB implementation should be available now. Please let us know if you continue to see problems. On Sat, Dec 5, 2009 at 3:16 AM, Jeremy Blythe wrote: > Thanks, but I'll stick with Simple XML http://simple.sourceforge.net/ > until 1.2.9 :) > > On Fri, Dec 4, 2009 at 10:55 PM, Toby Rey

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-05 Thread Jeremy Blythe
Thanks, but I'll stick with Simple XML http://simple.sourceforge.net/ until 1.2.9 :) On Fri, Dec 4, 2009 at 10:55 PM, Toby Reyelts wrote: > It's probably worth mentioning that, as a temporary workaround, you should > be able to bundle your own JAXB implementation with your webapp. For > example,

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Toby Reyelts
It's probably worth mentioning that, as a temporary workaround, you should be able to bundle your own JAXB implementation with your webapp. For example, the reference version can be obtained from https://jaxb.dev.java.net/. On Fri, Dec 4, 2009 at 4:31 PM, Toby Reyelts wrote: > Thanks for the qui

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Toby Reyelts
Thanks for the quick reports folks. We've identified this as a fault which occurred during our push to production. We're working on this and will post back on this thread when it's resolved. On Fri, Dec 4, 2009 at 2:26 PM, javaprime wrote: > Error for /cron/url_update_delta > java.lang.Exception

[appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread javaprime
Error for /cron/url_update_delta java.lang.ExceptionInInitializerError at com.amazonaws.queue.AmazonSQSClient.(AmazonSQSClient.java: 108) at compareodds.webapp.server.util.SQSQueue.buildQueue(SQSQueue.java: 65) at compareodds.webapp.server.util.SQSQueue.buildURLQueue (SQSQue

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Don Schwarz
Can one of you post a full stack trace? Thanks, Don On Fri, Dec 4, 2009 at 12:42 PM, javaprime wrote: > Same problem here. > > On Dec 4, 8:16 am, Jeremy Blythe wrote: > > I get this error: > > > > Constructor threw exception; nested exception is > > java.lang.RuntimeException: javax.xml.bind.J

[appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread javaprime
Same problem here. On Dec 4, 8:16 am, Jeremy Blythe wrote: > I get this error: > > Constructor threw exception; nested exception is > java.lang.RuntimeException: javax.xml.bind.JAXBException >  - with linked exception: > [java.lang.ClassNotFoundException: com.sun.xml.bind.v2.ContextFactory] > > M