[google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2019-07-22 Thread Nikola Mihajlović
Hello, I am trying to connect to an instance on GCE from GAE by using its name: http://INSTANCE.c.PROJECT_ID.internal Is this not possible? On Friday, April 19, 2019 at 4:00:44 AM UTC+9, Jason Collins wrote: > > Check out > https://cloud.google.com/appengine/docs/standard/python/connecting-vpc

[appengine-java] HTTPRequest POST parameters

2010-11-18 Thread Nikola Okiljevic
Hi everyone, I have a rather trivial problem, but I can't seem to find the solution in the docs... I'm trying to fetch a HTML page via a POST request. I'm using the following code, and that works fine: URL url = new URL(sUrl); HTTPRequest request = new HTTPRequest(url, HTTPMethod.POST,

Re: [google-appengine] Re: Unable to deploy due to 500 server error

2010-11-18 Thread Nikola Vasilev
. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- Pozdrav, Nikola Vasilev -- You received this message

[google-appengine] Re: Accessing Third Party Libraries from the Dev Server

2010-09-30 Thread Nikola
of c modules you depend on so you can add them to the whitelist. - Tom On Sep 29, 9:55 pm, Nikola niko...@gmail.com wrote: Hello, I know GAE restricts access to allow only certain C libraries and Python modules.  However, is there an easy way to lift those restrictions from the local

[google-appengine] Accessing Third Party Libraries from the Dev Server

2010-09-29 Thread Nikola
Hello, I know GAE restricts access to allow only certain C libraries and Python modules. However, is there an easy way to lift those restrictions from the local dev server? Specifically, I would like to use the MySQLdb module to import my datastore data. Thanks, Nikola -- You received

[google-appengine] Re: Accessing Third Party Libraries from the Dev Server

2010-09-29 Thread Nikola
and pull from MySQL? On Wed, Sep 29, 2010 at 15:55, Nikola niko...@gmail.com wrote: Hello, I know GAE restricts access to allow only certain C libraries and Python modules.  However, is there an easy way to lift those restrictions from the local dev server? Specifically, I would like

[google-appengine] Importing Remote Data Into Local Datastore

2010-09-27 Thread Nikola
Hello, I have exported the datastore from my site using the instructions as per this page: http://code.google.com/appengine/docs/python/tools/uploadingdata.html I would like to now use the data that I have downloaded and import it into my local datastore for development. Is this possible? --

[google-appengine] Re: Importing Remote Data Into Local Datastore

2010-09-27 Thread Nikola
-- application=my_app_name --url=http://localhost:8080/remote_api On Sep 27, 11:32 am, Nikola niko...@gmail.com wrote: Hello, I have exported the datastore from my site using the instructions as per this page:   http://code.google.com/appengine/docs/python/tools/uploadingdata.html I would like

[google-appengine] can i upload apache ofbiz in google app engine

2009-12-30 Thread Nikola Georgiev
hello Is it possible to upload and use apache ofbiz (http:// ofbiz.apache.org/) in google app engine ? 10x -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To

[google-appengine] Re: Issue: an app installed on a subdomain of my own domain stopped working

2009-04-24 Thread Nikola
Recreating the url in Google Apps controll panel solved the issue. On 23 Апр, 19:09, Nikola ntos...@gmail.com wrote: Just to add: the application works fine when accessed at word- cloud.appspot.com, and there is nothing that registers on the logs when accessing wordics.lemmatica.com

[google-appengine] Issue: an app installed on a subdomain of my own domain stopped working

2009-04-23 Thread Nikola
I have an app installed on lemmatica.com, subdomain wordics, that stopped responding today - DNS is resolved to ghs.google.com, the app is listed in the Google Apps Control panel, but wordics.lemmatica.com returns 404. There is another app on www that works fine. In appspot.com, Administration |

[google-appengine] Re: Issue: an app installed on a subdomain of my own domain stopped working

2009-04-23 Thread Nikola
Just to add: the application works fine when accessed at word- cloud.appspot.com, and there is nothing that registers on the logs when accessing wordics.lemmatica.com. On 23 Апр, 12:46, Nikola ntos...@gmail.com wrote: I have an app installed on lemmatica.com, subdomain wordics, that stopped

[google-appengine] indexes on StringListProperty or ListProperty(int)

2009-04-03 Thread Nikola
Is there a significant difference in storage requirements and performance of fields stored as StringListProperty vs ListProperty (int)? I am playing with a full text search implemented similarly to SearchableModel, only I got tf-idf relevance and some phrase search. I've seen big increase of the

[google-appengine] Re: is datastore timestamped for concurrency at page level?

2009-02-19 Thread Nikola
:41 pm, Nikola ntos...@gmail.com wrote: I am trying to go through all entities of a kind, using the __key__ property. I take 10 at a time, and run threads in parallel to do something and then update these entities (I am doing this viaremote_api). What I often get

[google-appengine] is datastore timestamped for concurrency at page level?

2009-02-18 Thread Nikola
I am trying to go through all entities of a kind, using the __key__ property. I take 10 at a time, and run threads in parallel to do something and then update these entities (I am doing this via remote_api). What I often get is: TransactionFailedError: too much contention on these datastore

[google-appengine] Re: remote api, when?

2009-01-22 Thread Nikola
Ryan mentioned it in the chat (see the transcript here in the group), he thinks it should be working already and there is an article coming soon. Nik On 21 Ян, 11:06, dobee berndd...@gmail.com wrote: hi all there is an undocumented remote api client in the 1.1.8 sdk which i tried, but it

[google-appengine] Re: Streaming support?

2009-01-22 Thread Nikola
I don't think GAE will be usable for video streaming anytime soon. The platform is oriented towards doing stuff in small chunks, which doesn't fit video streaming. There is support for long running processes in development, but it is not even on the roadmap. Nik On 20 Ян, 12:15, alokiN

[google-appengine] 3 problems

2008-12-03 Thread Nikola
I am trying Entity.fetch (20) and have 44 results, I get back only 16 of them. Can 2) be the reason? I should probably report 1 and 3 as issues, but I am being proved dumb too many times already ;-) -- Nikola --~--~-~--~~~---~--~~ You received this message because

[google-appengine] Re: encryption libraries

2008-11-28 Thread Nikola
You can try encryption based on the built-in SHA module that is supposed to be implemented in native code: http://www.nightsong.com/phr/crypto/p3.py On Nov 27, 7:22 am, Leonid Evdokimov [EMAIL PROTECTED] wrote: Marzia Niccolai wrote: There aren't many pure python implementations for

[google-appengine] Re: App Engine 'session' questions

2008-10-31 Thread Nikola
GAE has no global memory - every handler runs in it's own address space. You can persist data in the datastore (perhaps caching with memcache for performance), or in browser cookies. A lot of applications can do with the Users API instead of full-blown sessions. -Nikola On Oct 30, 10:11 pm, sal