embeddedwebserver

Real time embeddable http server library required

Having looked at several available http server libraries I have not yet found what I am looking for and am sure I can't be the first to have this set of requirements. I need a library which presents an API which is 'pipelined'. Pipelining is used to describe an HTTP feature where multiple HTTP requests can be sent across a TCP link at a...

Searching for embedded XML-RPC server (with SSL/TLS)

I'm searching for xmlrpc libraries that can be embedded in a C++ application. XmlRpc++ on SourceForge is a very neat solution but doesn't provide HTTPS support. Other RPC-like solutions such as gSOAP are not free for commercial use (or do I get that wrong, they mention a MPL-like license, too). What about Apache's Axis/C++, can it be e...

Custom webserver caching

I'm working with a custom webserver on an embedded system and having some problems correctly setting my HTTP Headers for caching. Our webserver is generating all dynamic content as XML and we're using semi-static XSL files to display it with some dynamic JSON requests thrown in for good measure along with semi-static images. I say "semi...

Cross Platform C++ webserver Library

I am looking for a cross platform Library in C++ that can run a web server. Does any one know if tntnet can work on windows computers. or libmicrohttpd ...

Visual Studio 2008 built-in web server needs integrated pipeline mode for Adding Http Header

Using Visual Studio 2008 and built-in web server. In a Web Handler .ashx file public void ProcessRequest(HttpContext context) { context.Response.ContentType = MimeType_text_xvcard; context.Response.Headers.Add(HttpHeader_ContentLength, "2138"); when I try to add an HTTP header I get the exception: This operat...

Criteria for selecting software for embedded device

We are currently evaluating Web servers for an embedded device. We have laid down the evaluation criteria for things like HTTP version, Security, Compression etc. On the embeddable side, we have identified the following criteria: Memory footprint Memory management (support for plugging in a custom memory manager) CPU usage Thread u...

aspnetserve (web server) question

Hi. Using a 'portable' web server in aspnetserve (http://code.google.com/p/aspnetserve/) to host .NET web apps locally on a machine. I've been having speed issues, it would seem. Debugging with VS (their default webserver for such) runs much quicker with no issues. Having issues to the point of seeing javascript fail to load with as...

if i need oparete small web server in my application ,does it recognase as virus?

Hello all i need to operate smell web server in my application play flash swf files in my embedded browser , this application will be distributed to local users to desktop users what is the best way to implement it in desktop application i mean ports / local host ? ...

when i start my emmbedt web server on port 8080 i get windows security alert , can i avoid it ?

is there any way to avoid this when using embedded web server in windows? i don't want users to be scare ...

Is there some http GET response that I can add to fix an encoding problem on the client web browser?

I have an embedded web server written in C using uIP libraries, in a microcontroller, which outputs the following static text in response to an http get. It is shown below as a C literal string: "HTTP/1.0 200 OK\r\n" "Server: UIP/1.0 (http://www.something.com/)\r\n" "Content-type: text\html\r\n" Right after that comes the doctype stri...

How can I provide a HTTP management console for a Java application?

I'm writing a Java application that will run for a long time (essentially, it stays running between system restarts) and does a fair bit of intensive near real-time data processing. Data is delivered to the application, some work is done on that data, and it's then passed on for delivery. I need to provide a way to inspect the inner wor...

Using Maven to Deploy on Embedded Tomcat with a Datasource

I have a multi module maven web application, which uses hibernate. I use the tomcat:run goal in order to run it on the embedded tomcat server of maven. Everything works fine so far. But now I need to switch from an explicite jdbc configuration in the hibernate.properties to a datasource. I did the following: changed hibernate.propert...

embedded Tomcat 6 - shut down after start

Hi, I wanna use an embedded Tomcat V6. The code works perfectly, but only as long as the programm is running. So if there is no Thread.Sleep it will exit immediately, otherwiese keep on running till the time is up. How can I keep the emmbedded Tomcat alive. setAwait(true) should deal with this, shouldn't it? But i does not work. Tried ...

Delphi 2006 Standalone Webserver compilation error

I'm trying to create a SOAP Server application that is a stand alone application (no need for IIS to be configured). The problem is that I get this error when trying to compile: I get the error "SockApp was compiled with a different version of IdTCPServer" Now this is because Delphi 2006 ships with INDY 10 but SockApp appear to have be...

In process web-server for MVC2

I'm working on a project that requires an in process web server to run the web based UI. The best option I have come across is CassiniDev EDIT: did some tests and noticed that issue isn't synchronous way of processing requests, it has to do with tcp-connects. fiddler shows 1 second as the tcp-connect time. Are there any alternatives? ...