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

2011-10-18 Thread Brandon Donnelson
other 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/-/E

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

2011-10-18 Thread Brandon Donnelson
I wouldn't use floats, they change to much for GeoPoint. I use a String and BigDecimal myself. 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 di

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

2011-09-22 Thread Brandon Donnelson
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 wrote: > I finally got back to the upload function and started trying to get it to > work... I'm u

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

2011-09-19 Thread Brandon Donnelson
nt i = 0; i < spreadsheets.size(); i++) { SpreadsheetEntry entry = 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 th

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

2011-09-19 Thread Brandon Donnelson
} 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 are sub

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

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 po

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
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 this discussion on the web visit

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 are

[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
= 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 "Google App Engin

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

2011-08-23 Thread Brandon Donnelson
Wahoo, good job. On Aug 23, 2011 11:30 AM, "David Chandler" wrote: > > We're working on it. The process is currently coupled with GPE releases and there's one in progress. We're working to decouple these so SDKs can be released independently. > > > O

[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 vi

[appengine-java] Re: Blobstore and upload question

2011-07-28 Thread Brandon Donnelson
d Which way did you 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-app

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

2011-07-26 Thread Brandon Donnelson
with it. I think your 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,

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

2011-07-26 Thread Brandon Donnelson
retty 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 w

[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 are

[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

[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
onDragEnd(MarkerDragEndEvent event) { setPosition(); } }); 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 vi

[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: 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.go

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

2011-06-05 Thread Brandon Donnelson
catch (Exception e) { success = false; log.log(Level.SEVERE, "decode(): ERROR: ", e); } BlobKey blobKey = null; if (skey != null) { blobKey = new BlobKey(skey); } else { log.warning("tryfindingBlobKey(): warn: wasn't able to parse the blob

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

2011-06-04 Thread Brandon Donnelson
I use a servlet as my index.html page, so I can intercept the google login and process according. You can do all kinds of fun things before GWT loads here. index /index.html index com.gonevertical.server.servlet.Servlet_Index index.html Brandon

[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 google-

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

2011-06-01 Thread Brandon Donnelson
finally { if (tx.isActive()) { tx.rollback(); } 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 vis

[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 g

[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: 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 becaus

[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: com.google.appengine.a

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" 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 subscribe

[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, sen

[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: 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 google-appengine-java+

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

2011-05-27 Thread Brandon Donnelson
hen I used 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 En

[appengine-java] Re: JDO Query ordering issue

2011-05-26 Thread Brandon Donnelson
7;ll send them 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 receive

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@googl

[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:

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, sen

[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.

[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

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

2011-05-24 Thread Brandon Donnelson
Have you figured out what layer is trunking it? Have you sniffed the request? -- 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 gr

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

2011-05-24 Thread Brandon Donnelson
It looks like I was thinking of something else, brain glitch.. :) -- 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 ema

[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"

[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, sen

[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: HashMap within an Embedded Class

2011-05-24 Thread Brandon Donnelson
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 u

[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

[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 "Go

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" wrote: > Sorry, my post was slightly tongue in cheek; sometimes I can't resist > sticking a twig into a hornet's nest. > > > On 2011-05-23 08:

[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: Java => Google app

2011-05-22 Thread Brandon Donnelson
I think one of the easiest ways to do it is use the GWT setup. You don't have to use GWT for building the app. It sets up a nice GAE dev environment. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups "

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 subscri

[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 rec

[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 to the

[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 to

[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" gr

[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@googlegrou

[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

[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&q

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

2011-05-13 Thread Brandon Donnelson
ebug on the web app. 6. Once you 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

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

2011-05-13 Thread Brandon Donnelson
design 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

[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

[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

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 g

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

2011-05-09 Thread Brandon Donnelson
BlobTmpJdo 4. Then I query and decode and write into blob http://code.google.com/p/gwt-examples/wiki/GAEDatastore - some of my notes on the experiment. I call it an experiment until I know I can use it in production. So far the tests are working good, but need tuning and error control. Brandon

[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 "

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

2011-05-09 Thread Brandon Donnelson
case I can see some classes are restricted, and a sniff of the post, copy and configure it to your liking would do the job. You can stream the bytes ouf of the blob into a post request to the doc api. Brandon http://gwt-examples.googlecode.com -- You received this message because you are subscri

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

2011-05-08 Thread Brandon Donnelson
setup more than one location. I usually have the most success with this depending on admin rights to OS. Test the proxy by trying to update or install. Eclipse > Preferences > search "proxy" > setup the ports that you need to forward through the proxy. Brandon -- You rec

[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 googl

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

2011-05-07 Thread Brandon Donnelson
api. http://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 g

[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

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" 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 thin

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

2011-05-07 Thread Brandon Donnelson
64=null query(): index=45.18 base64=null query(): index=45.19 base64=null query(): index=45.2 base64=null query(): index=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 Goog

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

2011-05-07 Thread Brandon Donnelson
ed through. 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

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

2011-05-07 Thread Brandon Donnelson
FileBlobUpload#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 t

[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 Donn

[appengine-java] Re: Extending Enterprise Data running in the Cloud to Adobe AIR (desktop and mobile)

2011-05-06 Thread Brandon Donnelson
I would specifically mention google app engine or gae, or #GAE in your sales pitch next time. I think it wouldn't feel as spamish. -- 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-appengi

[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.

[appengine-java] Re: Migration of data to HR Datastore

2011-05-06 Thread Brandon Donnelson
How much do you have? I would make a class to run as a task, and read the blobs then write them through a post to the other app. I can see the code overhead, because of new blobkey. Might have to break up tasks if you go over 10min. Brandon -- You received this message because you are

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] Randomizing a query

2011-05-06 Thread Brandon Donnelson
p 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 G

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

2011-05-06 Thread Brandon Donnelson
es it take to compress java.util.zip.GZIPOutputStream? 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 unsubscribe from this group, s

[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 google-appe

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

2011-05-05 Thread Brandon Donnelson
ave multiple 1mb text columns? Or is there an > overall size limit for the row? > > On May 5, 3:42 pm, Brandon Donnelson wrote: >> I choose the datastore so I wasn't constrained with the 1MB limit. I think >> it works great too. I made a rough dem

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" 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://demogaemultifileblo

[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:

[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@google

[appengine-java] Re: Where does the OAuth java example code go?

2011-05-04 Thread Brandon Donnelson
I have a working demo and example here: http://code.google.com/p/gwt-examples/wiki/DemoGwtGData 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-appeng

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 g

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

2011-05-04 Thread Brandon Donnelson
;T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n&

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

2011-05-03 Thread Brandon Donnelson
will allow me 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-appeng

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 google-appengine-java+unsubscr...@goo

[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 google-appengi

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

2011-05-02 Thread Brandon Donnelson
I've been trying to find a work around for base64 upload to see if I could get it to upload and I can't find one yet. I previously was able to get some base64 to upload but for some reason I can't anymore. -- You received this message because you are subscribed to the Google Groups "Google App

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

2011-05-01 Thread Brandon Donnelson
wing pains 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. T

[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 ema

[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 this

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

2011-04-30 Thread Brandon Donnelson
ong with it. My 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, Br

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

2011-04-30 Thread Brandon Donnelson
#" + historyToken; url = URL.encode(url); url = Global_String.encodeUrlDelimiters(url); String baseUrl = cp.getAccessToken().getThirdPartyLoginData().getGoogleLoginUrl(); baseUrl = baseUrl.replaceAll("=%2F.*", "=" + url); // this is where I do

[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 google-appengine-java@

[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-appe

  1   2   >