We're doing an "Amazing Race" kind of event, and thought it would be cool to have CDs that could only play once... like a "this message will self destruct in 5 seconds..."
Any thoughts on how to do this? I was thinking it could be a compiled HTML website that would write a cookie and only play once. I don't want to write to the regis...
I would like to create an application that serves web pages internally and can be run in multiple instances on the same machine. To do so, I would like to create an HttpListener that listens on a port that is:
1) Randomly selected
2) Currently unused
Essentially, what I would like is something like:
mListener = new HttpListener();
mL...
Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.
...
I am looking for a light-web embeddable web server for .NET.
I need it to fake a SOAP web-service for automated testing, so it is a big plus if it supports ASP.NET web-services or another easy way to create SOAP web-services. Extra bonus points for quick startup and shutdown and multiple simultaneous instances on different ports.
A Goo...
hello everyone,
We are doing project on online quiz tool for mobile devices using J2ME. We got the code for midlet interface, webserver and connections. But we need to implement timer in it. So anyone can give suggestions for that code and where can be it beneficial to implement it?
...
Hi guys,
I'm planning to do a C++ standalone desktop application which uses web / html as the main format of it's documents content.
I need suggestions for a good application server that can generate dynamic contents and can be easily embedded in my desktop application. It doesn't matter what server side programming languages it suppo...
I would like to hear if there is a small classic ASP server, similar to the ASP.NET Development server that comes with Visual Studio?
We are a small group that supports a legacy (classic) ASP site, and would therefore like to have a small server that easily can be executed on a Windows XP machine. Currently we're stuck with IIS 5.1 on o...
I have html files that are pre-compressed on the server using zlib and it appears zlib adds the appropriate headers to the compressed html files:
static int const gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */ (from gzio.c)
The browser (FF) supports Accept-Encoding: gzip,deflate
However, it doesn't display the html.
I am using...
Hi,
Is there a framework which allows easy adding of ExtJS to a normal .Net application.
This way I only have to create a GUI once, which is then accessible through an embedded webserver. This is great since I then can remote access the server/service/application as well as fiddle with it locally.
My dreamsolution would be:
- The fram...
Hi,
I'm looking for a framework which allows me to manage my application through a webbased GUI (using an embedded webserver) instead of winforms.
Something like this: http://www.webtoolkit.eu/wt but then for .NET
In my code I should be able to instantiate classes (like buttons, forms etc), and when a user browses to a given port, t...
Is it possible to create a C# EXE or Windows Service that can process Web Service requests? Obviously, some sort of embedded, probably limited, web server would have to be part of the EXE/service. The EXE/service would not have to rely on IIS being installed. Preferably, the embedded web service could handle HTTPS/SSL type connections...
Hello all
im looking for embedded web server that can parse php
do you have experience with such ?
...
Hello, I'm writing an application in c++ and I was thinking to use an embedded simple web server that will be my gui, so i could set up my application port on localhost.
What such web server would you recommend to use in c++/c?
Thanks
...
Duplicate: this is a duplicate of .NET WebBrowser Control as User Interface. Let's please close this question, and direct any new answers to the original.
Hello folks i need you experience in such things
im thinking on easy way to be as much as cross platform as i can
lately i had the idea of using embedded web server for my applicatio...
Hey people, it's my first question here.
I successfully embedded Jetty on a test application. It can serve files without issues.
Now I want to know if it's possible for Jetty to serve files that are inside its own Jar file.
Does anyone know if that's possible?
Thanks!
...
Are there any open source, fast web server libraries? Thanks.
...
Hi,
I'm working on a personal project that consists of a linux dev board and temperature sensor. I'd like to see a nice web 2.0 real time plot of the tempature from anywhere in the house. Coming from hardware/driver background so i'm not very familar with databases or webservers. I'm stuck trying to figure out how i can send new tempera...
I need to embed a tiny webserver in a compiled jsfl external library for Adobe Flash CS4 so that an outside process can communicate with it. The external library will be a Carbon bundle on Mac and a set of dlls on Windows, so the webserver will need to be embedded/loaded from C/C++ code with no external dependencies like Ruby. Most of t...
Hi,
I had the same problem as this and solved it by using the code given by Antonio.
My problem is that the war file has multiple jars inside of them, and these jars are dependencies, without which, the web application does not run.
Is there anyway to tweak the ClassLoader or another method to make the embedded tomcat also load the ja...
Hello all,
I am working with an electronics appliance manufacturer to embed LAN based control systems into the products. The idea is to serve up a system configuration/control interface through a web browser so clients never need to install software. We can communicate with the appliance by sending and receiving serial data through the ...