[appengine-java] SAP SECKEY generation procedure required in java

2010-04-19 Thread aptest1 actiprocess
can i validate the sap url seckey in java, using the url parameters Thanks in advance chandrashaker gattu -- 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...@googlegroups.com.

[appengine-java] Re: Update to GAE/J 1.3.2 -> Project in Eclipse broken

2010-04-19 Thread Dannemano
Note, I am also MacOSX snow leopard. I have been hacking away in App Engine and Vaadin before 1.3.2 and it has been working flawlessly. I tried moving the project to a newly downloaded copy of Eclipse (the JavaEE development version) and then installing Google Plugin. The same issue as described a

[appengine-java] Re: Trying a clean compile gives "The parameter is incorrect"

2010-04-19 Thread Stephen Johnson
In Eclipse, go to Project / Properties menu. Go to Google / App Engine / ORM setting. It probably is set to src/ (using this setting DataNucleus puts all class files on its classpath). Instead restrict the folders (or patterns) to just the folders or file name patterns for your files that need enha

[appengine-java] Re: open source pdf engine for GAE

2010-04-19 Thread jeno
Hi François , Thanks for your help. I have used PDFjet (PDFJet.jar version 2.72) PDF class missing save method So i cant call pdf.save("d.pdf") method. Cheers jeno On Apr 19, 6:48 pm, François Masurel wrote: > Hi Jeno, > > You can try the PDFjet Open Source Edition :http://pdfjet.com/os/editi

[appengine-java] Re: open source pdf engine for GAE

2010-04-19 Thread jeno
Hi François Thank for your help. i have used PDFjet. (PDFjet.jar version 2.72). It is misssing pdf.save() method. cheers jeno On Apr 19, 6:48 pm, François Masurel wrote: > Hi Jeno, > > You can try the PDFjet Open Source Edition :http://pdfjet.com/os/edition.html > > François > > On 19 avr, 01:5

Re: [appengine-java] Slow app JVM wake - even with no data store access?

2010-04-19 Thread Blake Caldwell
I guess it is what it is. I don't consider myself lucky though, because I spent three weeks migrating from JDO :). Yeah, Spring is great and all, and would work just fine on a huge site on App Engine, but the documentation should be clear about how much time should be expected for each of the commo

Re: [appengine-java] Slow app JVM wake - even with no data store access?

2010-04-19 Thread Jeff Schnitzer
3-4s is pretty close to "as good as it gets" to start a JVM, load your app, and begin serving pages. I've seen 2s load times but 3-4s is pretty typical. Consider yourself lucky! The poor souls running Spring apps usually wait 15s+ for cold starts... Jeff On Mon, Apr 19, 2010 at 4:58 PM, Blake

[appengine-java] Slow app JVM wake - even with no data store access?

2010-04-19 Thread Blake
I switched from JDO to twig-persist to save load time, and it seemed to help a bit, but I'm still seeing 3-4 second load times on servlet calls that don't even touch the datastore. Wow. Of course, after the JVM loads, it's super-fast... but that first hit after a few minutes of inactivity - wow..

Re: [appengine-java] Debugging stopped working after updating GAE to 3.1.0 and higher

2010-04-19 Thread Ulrik Sorber
Jason: This is my URL: http://127.0.0.1:/MyPage.html?gwt.codesvr=127.0.0.1:9997 The page runs fine in debug mode, except it doesn't stop at any of my breakpoints. He

[appengine-java] org.datanucleus.store.appengine.query.DatastoreQuery$2

2010-04-19 Thread CodeMan
Hi, I am getting the error below in a JSF app when I try to fetch a List. Using this code: PersistenceManager pm = PMF.get().getPersistenceManager();// String query = "select from " + Template.class.getName() + " where owner=='"+owner+"' "; this.templates = (Li

Re: [appengine-java] Working version of Hessian 4.0.3 for Google App Engine?

2010-04-19 Thread Jeff Schnitzer
The Caucho folks have been slow to update the hessian download page, but the actual binaries are still being generated and put up for download. You can craft the download link by hand. This version works with GAE: http://caucho.com/download/hessian-4.0.6.jar Jeff On Sun, Apr 18, 2010 at 1:36 A

Re: [appengine-java] Re: Create Online Game That Contains High Change Data

2010-04-19 Thread Jeff Schnitzer
No. The GAE documentation is explicit: There is no guarantee that your data will exist in the memcache even 1s after putting it there. Will it be there? Most likely. But that's not very comforting given the time and energy required to develop an online game. When your system starts behaving b

Re: [appengine-java] Debugging stopped working after updating GAE to 3.1.0 and higher

2010-04-19 Thread Jason Parekh
Which URL are you opening from your browser? It should have the "?gwt.codesvr=127.0.0.1:9997" (perhaps with a different value) at the end of it, is that the case? jason On Sat, Apr 17, 2010 at 10:14 AM, GAE_User wrote: > Since GAE changed debugging from the stand alone test browser to using >

[appengine-java] ImagesService make image smaller then 32K to be able to use base64 in IE8

2010-04-19 Thread Vlad Skarzhevskyy
In our application we want user upload-able images to be shown in application. The image is re-sized to 150x200 and Thumbnail are stored in DB. Then we show images in browser using GWT RPC and retrieve base 64 encoded image. But to show image in IE8 the data can only be max 32K. The question is

Re: [appengine-java] Re: Update to GAE/J 1.3.2 -> Project in Eclipse broken

2010-04-19 Thread Miguel Méndez
No, I don't think that a bug has been filed with a repro case. Or, at least, I have not seen it. On Mon, Apr 19, 2010 at 7:00 AM, Dannemano wrote: > Hi, > > Any updates on the bug? I have the exact same problems and have been > unable to fix it. > > > Regards, > Daniel > > > On 5 Apr, 15:04, Mi

[appengine-java] Re: Update to GAE/J 1.3.2 -> Project in Eclipse broken

2010-04-19 Thread Moritz
No. Miguel asked for an example project for reproduction, but in each and every project I try to enable appengine support, I get the same problem and the SDK is permanently set to "{project.home}/war" and I'm not able to change it. My solution is to get rid of the Eclipse plugin and use the Maven

[appengine-java] What's wrong with my JPA Entity

2010-04-19 Thread Sudhir Ramanandi
I have just started with GAE+JPA. However I find it difficult to grasp the primary key things. I have created a very simple entity and a test to verify that the primary key is generated automatically. Entity import java.util.Date; import javax.persistence.Basic; import javax.persistence.Entity;

[appengine-java] Re: One - Many Child Persistence help

2010-04-19 Thread datanucleus
> I have a method which will create a comment on some content. The Web > page updates correctly but the call to save ServerContent never works. > I get a silent failure in by AsyncCallback and it throws a > com.google.gwt.user.client.rpc.SerializationException with the details > null and stacktrace

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Nacho Coloma
What you are seeing is normal JEE behavior with cluster environments. The standard does not say that modifications to your session-stored beans should be propagated to other cluster nodes unless you explicitely invoke setAttribute(). You are experiencing the worst possible case (never increments)

[appengine-java] Doubt In Eclipse Plugin Development

2010-04-19 Thread Pallavi Jadhav
I have to extend the existing problem view of Eclipse.. But I have problem to display problems i.e errors,warning,infos at run time... I am able to get that runtime but when we change any error i.e after removing or adding any error,warning that changes not reflect immediately in problem view table

[appengine-java] Eclipse plugin requires fixed location for src directory

2010-04-19 Thread Sudhir Ramanandi
I can not change the source folder (/src) to anything else, otherwise enhancer will not be able to find source folder and enhance entity classes I just created http://code.google.com/p/googleappengine/issues/detail?id=3111 is it me only or other too have same issue? Thanks Sudhir -- You receive

[appengine-java] Re: Update to GAE/J 1.3.2 -> Project in Eclipse broken

2010-04-19 Thread Dannemano
Hi, Any updates on the bug? I have the exact same problems and have been unable to fix it. Regards, Daniel On 5 Apr, 15:04, Miguel Méndez wrote: > Can you file a bug with a project that reproduces the problem?  I think that > will be the best way to get to bottom of what is going on. > > --

[appengine-java] One - Many Child Persistence help

2010-04-19 Thread DeliveryNinja
I've been trying to tweak this to get it working for a while now and I've had no luck at all. First off I create two classes @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true") public class ServerContent implements Serializable { private static final long s

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Thomas
I have submitted the issue#3112. http://code.google.com/p/googleappengine/issues/detail?id=3112 -- 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...@googlegroups.com. To unsubsc

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Peter Ondruska
Actually I would call this a bug in my opinion.. If you create a bug issue I am the second to star it. On Apr 19, 12:20 pm, Thomas wrote: > Hi Vaclav: > >    Thanks for your reply. > >    HttpSession is a defined standard interface in JEE. The standard > doesn't ask developers for explicitly call

Re: [appengine-java] Re: Cannot persist a HashMap

2010-04-19 Thread Bhim Khadka
Dear friends, thank you very much sent mail. I will recive to allready massage any time. Who every one told me Question than Give any time give answer. Bhim Bdr. Khadka Lalrakshak Prakashan Pvt. Ltd On Sun, Apr 18, 2010 at 11:35 AM, sreenidhi b.s wrote: > > > http://groups.google.com/group/goog

[appengine-java] Re: Cannot persist a HashMap

2010-04-19 Thread datanucleus
> like i said before > " DataNucleus has no way of "seeing" > the changes you make to the internal values of a serialized field, and as a > result it doesn't know when it needs to flush changes to these fields to the > datastore.  However, DataNucleus *can* see when the top-level serialized > field

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Thomas
Hi Vaclav: Thanks for your reply. HttpSession is a defined standard interface in JEE. The standard doesn't ask developers for explicitly calling HttpSession.setAttribute. The GAE/J provides a servlet container implementation which utilize datastore and memcache to store session data. It is

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Vaclav Bartacek
Sessions are stored in a Memcache and that's the reason of the behaviour you described. The Memcache low-level API documentation says: "The values returned from this API are mutable copies from the cache; altering them has no effect upon the cached value itself until assigned with one of the p

Re: [appengine-java] Re: Cannot persist a HashMap

2010-04-19 Thread sreenidhi b.s
@mscwd01 i acknowledge it is not the best solution ,but in my case i wanted a quick dirty solution and it worked. my app rarely updates hashmap so my problem is temporarily solved.if you find a better solution please post it here. like i said before " DataNucleus has no way of "seeing" the change

Re: [appengine-java] Blobstore upload from Flash?

2010-04-19 Thread bimbo jones
hi, the blobstoreService.createUploadUrl() returns a string that you should use as the action for the form. I never used flash for this type work so i don't know if you have to use a absolute path in the action for it to work. You can make a servlet that give you the blobstoreService.createUpload

Re: RE : Re: RE : Re: RE : [appengine-java] ANT - Guestbook tutorial - [java] INFO: Unable to access http://appengine.google.com/api/updatecheck?

2010-04-19 Thread Raj
Thanks. The IT policy in this company is very stringent. They even block me from writing any to the hosts file!! Its really frustrating. On 19 Apr, 09:32, Romain Pelisse wrote: > No problem. > > As it is a DNS problem, the simpliest solution is to add google-appengine IP > address to your local

[appengine-java] Re: open source pdf engine for GAE

2010-04-19 Thread François Masurel
Hi Jeno, You can try the PDFjet Open Source Edition : http://pdfjet.com/os/edition.html François On 19 avr, 01:55, jeno wrote: > Hi Guys, > > Anyone know open source java  pdf engine for GAE. > > Thanks > Jeno > > -- > You received this message because you are subscribed to the Google Groups >

Re: RE : Re: RE : Re: RE : [appengine-java] ANT - Guestbook tutorial - [java] INFO: Unable to access http://appengine.google.com/api/updatecheck?

2010-04-19 Thread Romain Pelisse
No problem. As it is a DNS problem, the simpliest solution is to add google-appengine IP address to your local hosts file (would be /etc/hosts on unix like system, no idea on its whereabouts on windows) On 19 April 2010 07:25, Raj wrote: > Thanks again, yes you are right, the ping cannot find t

[appengine-java] Re: owned one to many relationship problem

2010-04-19 Thread Ian Marshall
Because A is the entity group parent of B, the key of an instance of B must contain information about its entity group parent instance of A. Instead of using b.key.getId() in // We cannot retrieve this object. Why? B newB = pm.getObjectById(B.class,b.key.getId()); you might care to use the K