compiler on gae - google-app-engine

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 18 hours ago.
Improve this question
I am writing a coding website. I want to provide an option to the
users to compile their c,c++ or java code. Basically I want to host a
compiler in my app. Some google links said that it is not possible to
host an external program on gae. Is there any alternative? Like
connecting to a Linode or linking to amazon ec2 ?? Any pointers would
be great.
Thanks and Regards,
Mahendra Naik

Yes, you cannot run external programs on GAE. I'm not sure what you mean with linking to other providers. You can obviously move the whole site to Amazon or any other IaaS provider, where you don't have any restrictions of use, as with normal computer. I think it would be the easiest.
If you really want to stick with GAE you could obviously host compiler somewhere else and connect there from your GAE application. Probably the simplest would be exposing a simple web service for that. I'm not sure if it would be possible to connect with SSH (with some Java SSH library), because as far as I remember you cannot connect to sockets, just HTTP requests.

Related

Is there a way to send push notifications to a web browser from Google appengine standard? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'd like to add chat to a web application I've been working on.
I've searched the Google documentation, but cannot find a way to send push notifications from a server to a web application running on Google's appengine standard environment.
The latest release notes indicate that websockets are not supported, and XMPP is not available either. For this project, there is no budget available for a third party solution, and I'd rather cut the code myself anyway.
What APIs are available to me? Surely there must be something or some way of building this sort of functionality?
You're talking about a few different things here.
To send a push notification to a browser, this answer has you covered: https://stackoverflow.com/a/33976929/4458510
As for doing this on GAE, all you really need is outbound https right? It isn't the most straight forward to set up, but this is what I needed to do to get outbound https working in python: https://stackoverflow.com/a/51550041/4458510
I've never bothered with browser push notications, but do send APNS & GCM push notifications to our mobile app from GAE Standard with the linked code.

Looking for web service.solution for embedded Linux/C platform [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I hope I can expose web sercices APIs from my embedded Linux device. By doing that I can then write standalone Windows application that involves these APIs to get/put data from/to my device. Since the client GUI for some reason has to be written in Gtk, that means I plan to use c for the client side, no Java here. On the server side, since it's an embedded Linux and all my business logics already implemented in a lot of c code, so I also hope that I can use c to write any web servive code on the server side.
I heard there exists Restful and SOAP, I searched google and grabed some ideas about them. I prefer to be simple but not sure whether Restful good enough to suit my task (remember I am not going to create web clients and I have only application clients). Do you have a suggestion on the topic?
And, even I choosed the style of web servive (Rest or SOAP), I think I still need a framework for my platform. The requirements of having to use C language seems limited the list to two options, the Apache axis2/c and gSOAP. Does them can be cross compiled to ARM Linux? And which one is more suitable? Any suggestion from you will be highly appreciated!
-woody
You could use some HTTP server library in C, like e.g. libonion, in your embedded Linux device. It probably is the best solution (but you should be sure that your application is reliable enough to run continuously for weeks without crashing).
You could also run some light web server (e.g. lighttpd) and have your program be a FastCGI or CGI application. This approach probably makes sense only if your device needs to also serve web pages for some other purposes.
We have no exact idea about your device and your application (and the web services you want).

Database in the cloud? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Some of my recent clients are asking for remote connections to the office server, for standalone work, etc, in winForm applications.
Since the concept of the web is remote connection to a server both of data and resources, it should be possible to place both of this in cloud and have the winForm apps connect to it as if web Apps.
As any one tested this, is working like this?
Is it fast enough?
Is it secure?
What is the best cloud host for this type of work ?
Also what DB engines support this ?
Some of my friends have used MongoHQ with greate success.
Also Xeround is a cloud-hosted database. It is compatible with MySQL. I have used it before, but never for a winForm application.

The best host server for running a C program? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have developed automatic speech recognition software with C, and would like to develop a web application using that.
But I have no idea where should be the best host server that I can run it.
I really want to run it on Google App Engine, but as far as I know it allows only Java and Python.
So I would be appreciate if you could recommend decent or popular host servers for this purpose.
Amazon's AWS lets you deploy operating systems of your choice, where you can run programs in programming languages of your choice. Smaller competitors are Google's GCE and Microsoft's Azure.
Maybe you can look at Amazon Web Services:
http://aws.amazon.com/

Looking for substantial open source GWT/App-Engine project to use as reference [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm working on GAE-J/GWT app, wherein a desktop app connects to the GAE-J component, and there is also a web-app component whose front-end is written in GWT, and the GAE-J backend supports both the desktop app and the web app.
I have a good amount of experience with writing pure server code and desktop code, but not so much on the web-app side of things. So I'm looking to study some good sophisticated open source code to see how other's have done things, but I can't find much open source GWT and/or GAE-J stuff, other than frameworks. Does anyone know of any good projects out there?
I've written a little app called SixFixMix that uses the following stack: GWT, GIN, dyuproject (for OpenID), gwt-mobile-webkit (for HTML5 Geolocation), gwt-google-apis (for Maps), gwt-log, gwt-presenter, gwt-dispatch, Objectify, and GAEJ. Good luck!
There isn't any GWT in it (yet?) but Partychat (Google Code Project) is a moderately-sophisticated open-source Java App Engine app that simulates multi-user chatrooms using the XMPP service.
I'm sure there are more sophisticated apps out there, and some that include a GWT component, but I figured I'd take the chance to self-promote when it's given :)
GWT tagged open-source projects on google code hosting.
maybe that can help you http://code.google.com/webtoolkit/articles/mvp-architecture.html

Resources