Re: [appengine-java] GeoPt vs. two floats

2011-10-18 Thread Brandon Donnelson
great article Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/Edf1asb5lpcJ. To post

Re: [appengine-java] Re: Blobstore and upload question

2011-09-22 Thread Brandon Donnelson
(for example), and then I just grabbed it from the client. Have a good day, Brandon Donnelson c.gawkat.com The Donnelson Team YourDTeam.com On Thu, Sep 22, 2011 at 3:11 PM, GeorgeS sxoutt...@gmail.com wrote: I finally got back to the upload function and started trying to get it to work... I'm

[appengine-java] Documentation Suggestion: More JDO ancestor query on collection documentation

2011-09-19 Thread Brandon Donnelson
,there} how can I query that if it is an ancestor collection; needs more info in docs. Maybe I'm not seeing whats currently stated. In that case please tie it into the collections area. Thanks, Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you

[appengine-java] Re: Writing to google spreadsheet from GAE

2011-09-19 Thread Brandon Donnelson
= spreadsheets.get(i); //System.out.println(\t + entry.getTitle().getPlainText()); } } Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web

[appengine-java] Why now 1.5.3 SDK in eclipse repository yet?

2011-08-23 Thread Brandon Donnelson
Could you stick the 1.5.3. SDK in the eclipse repository 3.7. Thanks, Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https

Re: [appengine-java] Why now 1.5.3 SDK in eclipse repository yet?

2011-08-23 Thread Brandon Donnelson
, Brandon Donnelson branflake2...@gmail.com wrote: Could you stick the 1.5.3. SDK in the eclipse repository 3.7. Thanks, Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group

[appengine-java] Re: GWT will serialize java.util.Hashet and won't serialize org.datanucleus.sco.backed.HashSet from JDO. Why?

2011-08-23 Thread Brandon Donnelson
(); IteratorLong itr = jdoIds.iterator(); while (itr.hasNext()) { Long l = itr.next(); if (l != null) { r.add(l); } } return r; } Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups

Re: [appengine-java] Re: GWT will serialize java.util.Hashet and won't serialize org.datanucleus.sco.backed.HashSet from JDO. Why?

2011-08-23 Thread Brandon Donnelson
Wow, that worked, your my best friend :) How I got it to work: if (j != null) { classJdo detatched = pm.detachCopy(j); a.add(detatched.getData()); } Thanks, Brandon Donnelson http://gwt-examples.google.com -- You received this message because you

Re: [appengine-java] Re: GWT will serialize java.util.Hashet and won't serialize org.datanucleus.sco.backed.HashSet from JDO. Why?

2011-08-23 Thread Brandon Donnelson
null; } SchoolPeopleData[] r = new SchoolPeopleData[a.size()]; a.toArray(r); return r; } Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view

Re: [appengine-java] Re: is it possible to use Java 7 on GAE ?

2011-08-23 Thread Brandon Donnelson
What would be the benefits of moving to Java 7 sooner than later? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/qUqOlkgoVrQJ. To

Re: [appengine-java] Re: GWT will serialize java.util.Hashet and won't serialize org.datanucleus.sco.backed.HashSet from JDO. Why?

2011-08-23 Thread Brandon Donnelson
Ah, I thought they were both the same at first, so after you said that I tried pm.makeTransient(j); and it won't work for me. Thanks for the help. Brandon -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on

[appengine-java] Re: Blobstore and upload question

2011-07-28 Thread Brandon Donnelson
choose to go? Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/GMfXd1GxHo8J

Re: [appengine-java] Re: Blobstore: storing multiple blobs, retrieving blobkeys in doGet, form dissappears in appspot deployment

2011-07-27 Thread Brandon Donnelson
other items might fall into place after you get a successful upload. Let me know if you can reder your html in a servlet, and get the blob url correctly. Then confirm the file gets to the directory. Then you might want to iterate and see if you have it too. Hope that helps, Brandon Donnelson http

[appengine-java] Re: Blobstore: storing multiple blobs, retrieving blobkeys in doGet, form dissappears in appspot deployment

2011-07-26 Thread Brandon Donnelson
Can you post some of your source code. Its hard to diagnose via your comments above. Here is some of my code I use to do it: http://code.google.com/p/gwt-examples/wiki/DemoGAEMultiFileBlobUpload Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you

[appengine-java] Re: Can I/Should I test my *ServiceImpl class? (RPC calls - GAE+GWT+MVP)

2011-07-26 Thread Brandon Donnelson
much like the production environment although there are a few minor differences. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https

[appengine-java] Re: 1.5.2 SDK Prerelease

2011-07-23 Thread Brandon Donnelson
Suggestion: When you prerelease, could you stick that in the eclipse repository too, for ease of download? Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view

[appengine-java] Re: FileServiceFactory.getFileService().getBlobKey(file) is Broken, blobkey parser returns null

2011-06-05 Thread Brandon Donnelson
{ log.warning(tryfindingBlobKey(): warn: wasn't able to parse the blobkey or find the file: skey= + skey); } return blobKey; } Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: FileServiceFactory.getFileService().getBlobKey(file) is Broken, blobkey parser returns null

2011-06-05 Thread Brandon Donnelson
I needed to use Thread.sleep(2000); instead of wait(2000); Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d

[appengine-java] Re: GWT Google Maps: Creating multiple markers leads to no error, but only one marker shows up; Exception with Clickhandler

2011-06-05 Thread Brandon Donnelson
Just to be sure, is this GWT? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/cWlRQU0xVkFBdDRK. To post to this group, send email to

[appengine-java] Re: newbie question: redirect users (GWT 2.3.0)

2011-06-04 Thread Brandon Donnelson
servlet servlet-nameindex/servlet-name servlet-classcom.gonevertical.server.servlet.Servlet_Index/servlet-class /servlet welcome-file-list welcome-fileindex.html/welcome-file /welcome-file-list Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message

[appengine-java] Re: Why do I get - The datastore operation timed out, or the data was temporarily unavailable.

2011-06-01 Thread Brandon Donnelson
(); } pm.close(); } Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/VDJ3ZHRMUDZXVE1K

[appengine-java] Re: Why do I get - The datastore operation timed out, or the data was temporarily unavailable.

2011-06-01 Thread Brandon Donnelson
Thanks for the help :) -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/VmxBT3RvN2lLbWtK. To post to this group, send email to

[appengine-java] Re: FileWriteChannel writeChannel throwing java.io.IOException?

2011-05-31 Thread Brandon Donnelson
I have found no workarounds for this limitation at the moment. I'm slicing up my images into tiles/squares which suites my strategy anyway. But it would be nice to figure out why the error shows up. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you

[appengine-java] Re: FileWriteChannel writeChannel throwing java.io.IOException?

2011-05-31 Thread Brandon Donnelson
I made an issue: http://code.google.com/p/googleappengine/issues/detail?id=5131 Can GAE dev setup Blob write to datastore unit test, which would take up to 10min writing 10MB+ of data in task. This should replicate the issue. Brandon Donnelson http://gwt-examples.googlecode.com -- You

[appengine-java] Re: New GWT/App Engine site

2011-05-31 Thread Brandon Donnelson
Nice site! Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: FileWriteChannel writeChannel throwing java.io.IOException?

2011-05-30 Thread Brandon Donnelson
The error: 1. E2011-05-27 07:41:59.139 org.gonevertical.core.server.jdo.data.base64.WriteBase64 writeToBlob: writeToBlob(): Error 5: java.io.IOException 2. E2011-05-27 07:41:59.149 org.gonevertical.core.server.jdo.data.base64.WriteBase64 decode:

[appengine-java] Re: Deploying My Web Application in google App engine

2011-05-27 Thread Brandon Donnelson
JDO on mysql, it seemed fun and seemed to have the new JDO features which were nice, but GAE doesn't support all JDO features. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group

[appengine-java] Re: setter values becom null during AsyncCall

2011-05-27 Thread Brandon Donnelson
Is this JSP, GWT or something else? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: Aw: Re: setter values becom null during AsyncCall

2011-05-27 Thread Brandon Donnelson
Sounds like it could be scope of the variable. Check to see if your setting the superclass var or subclass var. At least thats what I am thinking at the moment after looking at your code. I think some more code could help divine the solution easier. Brandon Donnelson http://gwt

[appengine-java] Re: FileWriteChannel writeChannel throwing java.io.IOException?

2011-05-27 Thread Brandon Donnelson
oops HeapByteBuffer error is not an error but the object toString(). -- 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-java@googlegroups.com. To unsubscribe from this group, send

Re: [appengine-java] Aw: Re: Aw: Re: setter values becom null during AsyncCall

2011-05-27 Thread Brandon Donnelson
Good job. On May 27, 2011 2:40 PM, meiaestro jmalbre...@gmx.de wrote: Ok, found it. Guess you gave me the right push - thanks: While my subclasses did extend the IsSerializable interface, the superclass didn't. Never the less... funny effect ;-) -- You received this message because you are

[appengine-java] Re: JDO Query ordering issue

2011-05-26 Thread Brandon Donnelson
into another tmp jdo class or into an array and keep drilling (querying) the data until I get what I want. I've found it doesn't add to much overhead. But I'm sure there are other ways too. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you

[appengine-java] Re: JDO Query ordering issue

2011-05-25 Thread Brandon Donnelson
What restrictions are you referring? Have you tried the entity query class, the sort is a bit easier to set up. Query q = new Query(BlobTmpJdo); q.addFilter(key, FilterOperator.EQUAL, fbd.getKey()); q.addSort(index); Brandon Donnelson http://gwt-examples.googlecode.com

[appengine-java] Re: Google App Engine + Java Applet

2011-05-25 Thread Brandon Donnelson
Try this: http://www.htmlcodetutorial.com/applets/_APPLET.html - stick the applet tag in a web page html source. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

Re: [appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-25 Thread Brandon Donnelson
Is this the location for revoking? https://www.google.com/accounts/b/0/IssuedAuthSubTokens Brandon Donnelson http://gwt-examples.googlecode.com -- 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

[appengine-java] Re: Failed to upload app with Google App account SDK 1.5.1

2011-05-25 Thread Brandon Donnelson
Hmmm, I would think try revoking the oauth so it asks for your credentials again. https://www.google.com/accounts/b/0/IssuedAuthSubTokens - I'm not sure if this is the place yet. https://groups.google.com/d/msg/google-appengine-java/Hg2PgwC6_0g/RDtz9XlJ1isJ Brandon Donnelson http://gwt

Re: [appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-25 Thread Brandon Donnelson
D'oh, I could have spotted that one, first one in my list. :) Thanks for your time :). Brandon -- 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-java@googlegroups.com. To

[appengine-java] Re: Google App Engine + Java Applet

2011-05-24 Thread Brandon Donnelson
Doesn't an applet run on the client side? Did you want it to run on the server side? If it does run on the client GAE won't care what you do. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-24 Thread Brandon Donnelson
In the Development Mode tab, when you see the link, right click on it, you'll get choices of which browser to run. You can set it back to default browser or choose another browser to run. Brandon Donnelson http;//gwt-examples.googlecode.com -- You received this message because you

[appengine-java] Re: HashMap within an Embedded Class

2011-05-24 Thread Brandon Donnelson
the sort with an incremented order value. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com. To unsubscribe

[appengine-java] Re: Connect Android Emulator to Google App Engine (GAE) local PC - domain works correctly.

2011-05-24 Thread Brandon Donnelson
Can you get your android phone on the 10.0.2.2 private network? -- 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-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: Connect Android Emulator to Google App Engine (GAE) local PC - domain works correctly.

2011-05-24 Thread Brandon Donnelson
are like you want them? And if the request, how about the response, what does it look like? Brandon Donnelson http://gwt-examples.googlecode.com -- 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

[appengine-java] Re: Connect Android Emulator to Google App Engine (GAE) local PC - domain works correctly.

2011-05-24 Thread Brandon Donnelson
Yea, changing the url should work. I have to make url modifications depending on local and production. I would check to see if a Cookie is getting sent in the header. Brandon -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

Re: [appengine-java] Java = Google app

2011-05-23 Thread Brandon Donnelson
I see nothing wrong with what you said. Its fun to see others perspectives. That's what this group is all about. :) On May 23, 2011 4:58 PM, Rusty Wright rwright.li...@gmail.com wrote: Sorry, my post was slightly tongue in cheek; sometimes I can't resist sticking a twig into a hornet's nest.

[appengine-java] Re: couple questions about consume REST services using jersey(works on prod however doesn't work on dev)

2011-05-22 Thread Brandon Donnelson
As to the inclusion of the libs in war/WEB-INF/lib, that is a yes. You may have to check jaxb dependencies to make sure all of them are whitelisted or the dependencies have to be included in the lib folder. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message

[appengine-java] Re: GAE - Java - JSON?

2011-05-20 Thread Brandon Donnelson
Check out http://www.json.org/ under java section towards bottom middle, there are classes that serialize java objects into json for outing. GWT has some libs that does it too. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed

[appengine-java] Re: Coding with Adobe Software

2011-05-20 Thread Brandon Donnelson
I would start with eclipse to code for GWT, android, and/or GAE, but there are other good IDE's you could use for Java development. Eclipse cost nothing and works great. I'd save up for the devices for testing. :) Brandon Donnelson http://gwt-examples.googlecode.com -- You received

Re: [appengine-java] GAE - Java - JSON?

2011-05-20 Thread Brandon Donnelson
I forgot I'm using GSON too, indirectly through another library that works with Google's geocoding API. It translates it very nicely into JAVA, which all gets done on GAE. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed

[appengine-java] Re: is setHeader(Connection, keep-alive) prohibited?

2011-05-19 Thread Brandon Donnelson
It has to do with limits that are set for the API your using. If you need longer transit times, I would use a task or something like the the Channel API. Or split up the traffic. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed

[appengine-java] Re: how to transfer request to a different servlet ?

2011-05-15 Thread Brandon Donnelson
Do you mean: response.sendRedirect(url); Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com

[appengine-java] Re: UserService.getCurrentUser() returning null sometimes

2011-05-15 Thread Brandon Donnelson
Dev or Production side? I've had this happen on the dev side at times. I haven't seen it recently in my app. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: old tutorials still available?

2011-05-13 Thread Brandon Donnelson
Its under JDO: http://code.google.com/appengine/docs/java/datastore/jdo/queries.html Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java] Re: old tutorials still available?

2011-05-13 Thread Brandon Donnelson
is a bit more textual in the query and datastore query is more static constants, which is a bit easier for me to use. It would be nice if you could have a utility class to assemble the entity into the object/class like JDO when using the datastore query. Brandon Donnelson http://gwt

[appengine-java] Re: Google Web App Set Up Info

2011-05-13 Thread Brandon Donnelson
the test works, place with the code in small chunks get the feel first. Hope that helps, Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Re: overcome onetomany limitation of 5000

2011-05-13 Thread Brandon Donnelson
I would try another JDO class or Entity to store your friends instead of a list. I like to use unowned relationships my self. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group

[appengine-java] Re: Google Web App Set Up Info

2011-05-13 Thread Brandon Donnelson
I forgot, this is a good time to test deploying an app to GAE too. If you get a successful run of the example app, I deploy for testing the simplest working app. bd -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

Re: [appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-10 Thread Brandon Donnelson
Very good job. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com. To unsubscribe from this group, send

[appengine-java] Re: JDO and HRD

2011-05-10 Thread Brandon Donnelson
Nothing has to be done with JDO to make the app HR. Although when you create an app in the dashboard you will have to select HR in the beginning. Once you have created a Master/Slave you will not be able to upgrade that app to HR. Brandon Donnelson http://gwt-examples.googlecode.com -- You

[appengine-java] Re: 1MB URL Fetch limit

2011-05-09 Thread Brandon Donnelson
I haven't used this api yet, although, the java api is a wrapping up the parameters into a post to the docs service in xml. In this case, what I might do is sniff the http post out and get the config. Usually I can figure out the api's intentions and get it to work for me. In this case I can

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-09 Thread Brandon Donnelson
How is Winxp proxy setup for you? Do you just setup proxy in each app, or do you have a OS global setting? I do know there is an OS global proxy setup, but I can't remember that at the moment. Brandon -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Glimpse into GWT RPC Chunking Base64 and Decoding into a blob

2011-05-09 Thread Brandon Donnelson
I thought I share my experimenting of GWT RPC chunking of a base64 file from client to blobstore. My Steps: 1. FileUpload then triggers a File API read of the file to base64 2. Chunk requests to blobstore of 24900 (divisible by 4) 3. Server I divide it by 900 chars per record stored into

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-08 Thread Brandon Donnelson
Are yo using eclipse to debug? What OS are you using? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-08 Thread Brandon Donnelson
Ways I setup proxy: 1. I'll set the proxy in the OS, then requests should be tunneled through. 2. I usually won't hard code it, b/c as soon as you deploy enviro changes 3. I'll change proxy in the eclipse networking configuration. If you code at work on a proxy, then you might setup more than

[appengine-java] Re: 1MB URL Fetch limit

2011-05-07 Thread Brandon Donnelson
#Upload_By_Servlet Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: .getKey().getId()

2011-05-07 Thread Brandon Donnelson
. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com. To unsubscribe from this group, send email to google

[appengine-java] Numeric sorting on double not working for me yet.

2011-05-07 Thread Brandon Donnelson
=45.21 base64=null query(): index=45.22 base64=null qu... Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com

Re: [appengine-java] Numeric sorting on double not working for me yet.

2011-05-07 Thread Brandon Donnelson
Oops my bad. I was wrong. On May 7, 2011 10:33 AM, Brandon Donnelson branflake2...@gmail.com wrote: It appears so far that numeric sorting on a double doesn't work yet. I am probably doing something wrong. I wondering what kind of cost you get when sorting numerically on GAE? I am thinking

[appengine-java] Re: Numeric sorting on double not working for me yet.

2011-05-07 Thread Brandon Donnelson
I can't believe my self. It seems I forgot how to count decimals. Wheres my foot in mouth totem so I can scratch another notch :). Brandon -- 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

[appengine-java] Re: 1MB URL Fetch limit

2011-05-07 Thread Brandon Donnelson
://code.google.com/apis/documents/docs/3.0/developers_guide_java.html Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread Brandon Donnelson
I haven't yet. Are you storing compressed to save on cost? I am mainly working with images at the moment and sending them to the blobstore so I haven't had the need to consider that yet. Thats interesting point if you are trying to save on cost of storage that way. How much time does it take

[appengine-java] Randomizing a query

2011-05-06 Thread Brandon Donnelson
the buffer, randomly get a number then query using the index as a filter Maybe I should be asking my self, what is random. Should I be using some atomic decay? Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google

Re: [appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Brandon Donnelson
I see a java.lang.ClassNotFoundException. Got the libs in war? -- 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-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread Brandon Donnelson
If you pulled the source code in, try renaming(refractor) the source make sure its referencing the correct class. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: Uploading a file to the blobstore in Base64 gives wrong filesize in blobinfo. Any work arounds?

2011-05-06 Thread Brandon Donnelson
Wahoo. I'm getting really good results chunking base64 over RPC calls into a entity. After the chunks are all sent, I recombine the chunks and decode into bytes for save the file to blobstore. I am having so much more control with chunking, I'm starting to dig it. :) Brandon Donnelson http

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-05 Thread Brandon Donnelson
I choose the datastore so I wasn't constrained with the 1MB limit. I think it works great too. I made a rough demo to try it out. GWT javascript has to init. http://demogaemultifileblobupload.appspot.com/ - the files are served from the datastore. Brandon Donnelson http://gwt

Re: [appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-05 Thread Brandon Donnelson
Oops I mean blob store On May 5, 2011 3:42 PM, Brandon Donnelson branflake2...@gmail.com wrote: I choose the datastore so I wasn't constrained with the 1MB limit. I think it works great too. I made a rough demo to try it out. GWT javascript has to init. http

Re: [appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-05 Thread Brandon Donnelson
1mb text columns? Or is there an overall size limit for the row? On May 5, 3:42 pm, Brandon Donnelson branflake2...@gmail.com wrote: I choose the datastore so I wasn't constrained with the 1MB limit. I think it works great too. I made a rough demo to try it out. GWT javascript has to init. http

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-05 Thread Brandon Donnelson
Entity limit is 1MB total. But you could have multiple blobs within one if they where less than 1MB. Brandon -- 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

Re: [appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-04 Thread Brandon Donnelson
', '$', '_'}; //... } Javascript canvas is feeding me this snippet: /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAICAgICAQICAgICAgIDAwYEAwMDAwcFBQQGCAcICAgH Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

Re: [appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-04 Thread Brandon Donnelson
Oops I think the 62 (zero ordinal index) should be a +. -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: user api: logout link logs me out of google account instead of just my app?

2011-05-04 Thread Brandon Donnelson
You could try nulling the Cookie that is created. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com

[appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-03 Thread Brandon Donnelson
I'm wondering if I am having operator error? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-03 Thread Brandon Donnelson
Thanks for looking :) -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-03 Thread Brandon Donnelson
track the upload and retransmit sections on failure. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com

[appengine-java] Re: Some details on how GAE actually works

2011-05-01 Thread Brandon Donnelson
trying to figure some things out, like data relationships. I like reading about it all when I get time. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group

[appengine-java] Re: Task Queue Strange Errors/Defects

2011-04-30 Thread Brandon Donnelson
Did they have a high retry count? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: task queue api calls limit exceeded with mapreduce

2011-04-30 Thread Brandon Donnelson
http://code.google.com/appengine/docs/java/config/queue.html#Queue_Definitions - add a queue.xml? Brandon -- 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-java@googlegroups.com.

[appengine-java] Re: App contact list?

2011-04-30 Thread Brandon Donnelson
I haven't seen a profile api yet. If there was, I would like something like that too. I think they need a friends api too. -- 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

[appengine-java] Re: request.getRequestURI() returns WEB-INF/views/whatever.jsp

2011-04-30 Thread Brandon Donnelson
= Global_String.encodeUrlDelimiters(url); String baseUrl = cp.getAccessToken().getThirdPartyLoginData().getGoogleLoginUrl(); baseUrl = baseUrl.replaceAll(=%2F.*, = + url); // this is where I do it at. return baseUrl; } Brandon Donnelson http://gwt-examples.googelcode.com

[appengine-java] GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-04-30 Thread Brandon Donnelson
uploads work in my dev environment, which is telling me my code works. I have tried both High Replication and Master/Slave deployments with no success. http://code.google.com/p/googleappengine/issues/detail?id=4265 Can someone look into uploading in base64 data and fix it? Thanks, Brandon Donnelson

[appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-04-30 Thread Brandon Donnelson
Demo to test my point: http://demogwtcanvas.appspot.com - Demo http://code.google.com/p/gwt-examples/source/browse/trunk/DemoGwtCanvas/src/org/gonevertical/democanvas/client/UploadImage.java - source code for it Brandon Donnelson http://gwt-examples.googlecode.com -- You received

[appengine-java] Re: Some details on how GAE actually works

2011-04-30 Thread Brandon Donnelson
http://labs.google.com/papers/bigtable.html - here is a good read -- 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-java@googlegroups.com. To unsubscribe from this group, send

[appengine-java] Re: issue in serving xml file from blobstore

2011-04-28 Thread Brandon Donnelson
Oops my bad. I see it now. Good job in fixing it :). Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com Challenge is to: Spice up the java forum with some profile pictures, lets beat the python community. :) -- You received this message because you are subscribed

[appengine-java] Re: ${SDK_ROOT} .classpath eclipse

2011-04-28 Thread Brandon Donnelson
Check to see if its in war/WEB-INF/libs. See if there is a duplicate too. Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com Challenge is to: Spice up the forum with some profile pictures, lets beat the python community. :) -- You received this message because you

[appengine-java] Re: FileServiceFactory.getFileService().getBlobKey(file) is Broken, blobkey parser returns null

2011-04-27 Thread Brandon Donnelson
, but having said that, I really would love to use a direct write and read that works. I see you guys progressing the platform quickly, and look forward to the future of #GAE. I appreciate your time on the response. :) Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com -- You

[appengine-java] Re: jdo update is inserting when I don't want it to

2011-04-27 Thread Brandon Donnelson
the option to roll back on a failure. Hope that helps? Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java@googlegroups.com

[appengine-java] Re: FileServiceFactory.getFileService().getBlobKey(file) is Broken, blobkey parser returns null

2011-04-27 Thread Brandon Donnelson
I dont' want to waste your time, so I wanted to let you know, that all blobs write to store perfectly. When I get a null return for blobkey after successful write to blobstore, I split the namePart to get the key, but for some reason, this doesn't match up yet. Its probably api operator error,

[appengine-java] Re: jdo update is inserting when I don't want it to

2011-04-27 Thread Brandon Donnelson
I think this is a good question for Ikai, hes the guru that might be able to give you some light to your path. I see the dilemma, but I'm not sure which road :). Brandon -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to

[appengine-java] Re: jdo update is inserting when I don't want it to

2011-04-27 Thread Brandon Donnelson
He has two servlets concurrently working on the same object, what would you suggest? Brandon -- 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-java@googlegroups.com. To

[appengine-java] Re: jdo update is inserting when I don't want it to

2011-04-27 Thread Brandon Donnelson
thought. I think this could help solve your collision problem. Brandon Donnelson http://gwt-examples.googlecode.com -- 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-java

  1   2   >