No I dont think this will work on AppEngine. Firstly if your scripts
regually take so long, AppEngine wont scale your application - it likes
handlers to respond in less than 800ms or so.

But also can't really 'stream' - in general, it works on the CGI model. Your
application receives the whole request as one whole block, and the client
receives your output. Ie there is a proxy in front of the application that
only forwards the whole request/resonce on - it doesn't allow for live
streaming.

 - sounds like best would be to look at cheap VM hosting. eg
http://code.google.com/p/nano-cast/
makes it sound like it doesnt need much horsepower - maybe a free
micro-instance on amazon EC2 would do it.


On 20 January 2011 14:55, nunojpg <nuno...@gmail.com> wrote:

> For academic research I might be sugesting to use google app engine for a
> NTRIP Caster.
>
> A NTRIP caster is a application that receives a data stream over HTTP and
> allows any connected client, possibly several, to also receive the same
> stream over HTTP.
> This means that HTTP connections will usually last for several minutes.
>
> I know from the start that the 30s limit will force the clients to
> reconnect again and again, what I don't know is what kind of issues will I
> get for wanting to redirect a stream in near real-time.
> I have to possibly store the incoming stream line by line in the db, but
> then how long will it take to be available on client instance?
>
> Is this something really not very suitable for app engine?
>
> Regards
>
> --
> 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-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com<google-appengine%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
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-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to