Middleware is a software component (or components) that sits "in the middle" between applications and the operating system. Typically, middleware will facilitate application development by providing services such as communications, file access, or thread locking.

learn more… | top users | synonyms

28
votes
3answers
4k views

What is Node.js' Connect, Express and “middleware”?

Despite knowing JavaScript quite well, I'm confused what exactly these three projects in Node.js ecosystem do. Is it something like Rails' Rack? Can someone please explain?
13
votes
22answers
22k views

Is there a multiplatform framework for developing iPhone / Android applications?

I am interested in writing applications for the iPhone and the Android platform. I was hoping to find a middleware / framework that abstracted away some of the differences in the APIs and allow me to ...
12
votes
2answers
1k views

Advantages of HornetQ vs ActiveMQ vs Qpid

I was browsing for an open source messaging software and after some good bit of research I came across these three products. I've taken these out for a preliminary test drive, having had them handle ...
12
votes
2answers
391 views

What is the common practice for targeting Foreign Servers in Oracle WebLogic Server

We’re trying to come up with something approaching a simple and straight-forward model for targeting of JMS resources in WebLogic (fat chance, I know). Queues and Topics can easily and quite ...
10
votes
1answer
183 views

Rails - how can I make a request that doesn't hit the database at all?

In order to trace some performance issues, I'm trying to create a page that is rendered through the Rails (2.3.8) framework but makes no calls whatsoever to the database. I want the request to go ...
10
votes
1answer
476 views

App Engine (python) skips webapp middleware (like Appstats) in production but works fine on dev server

I'm using App Engine python to host an application and would love to use Appstats and a couple of other libraries that run as middleware. However, when I set up middleware through appengine_config.py ...
7
votes
4answers
502 views

Non-global middleware in Django

In Django there is a settings file that defines the middleware to be run on each request. This middleware setting is global. Is there a way to specify a set of middleware on a per-view basis? I ...
7
votes
7answers
592 views

what is middleware exactly?

I hear a lot of people talking last days about middleware, but what is the exact definition of middleware. If I look in information about middleware I found a lot of information and some definitions, ...
7
votes
1answer
10k views

Options for Client Server Communication in Android

I'm currently in the research phase of my dissertation project. My project is a ticket booking system for a mobile device and I have chosen to target Android. I anticipate the need for a ...
6
votes
5answers
1k views

Facebook Open Graph without a browser

For a middleware system with internet (which works inside a set-top box) I want to develop a primitive Facebook interface where users can type their user-names and password, showing their latest ...
6
votes
8answers
3k views

Best Publish/Subscribe “Middleware”

I'm in the market for a good open source network based Pub/Sub (observer pattern) library. I haven't found any I like: JMS - tied to Java, treats message contents as dumb binary blobs NDDS - $$, ...
6
votes
1answer
4k views

How do I access the Rack environment from within Rails?

I have a Rack application that looks like this: class Foo def initialize(app) @app = app end def call(env) env["hello"] = "world" @app.call(env) end end After hooking my Rack ...
5
votes
4answers
431 views

Java/Python communication via message broker

What is a good solution for communication via message broker that supports both (C)Python and Java/JMS applications? My particular requirements are: open source solution Available on Linux-based ...
5
votes
2answers
220 views

Is Django middleware thread safe?

Are Django middleware thread safe? Can I do something like this, class ThreadsafeTestMiddleware(object): def process_request(self, request): self.thread_safe_variable = ...
5
votes
3answers
987 views

WSGI Middleware for OAuth authentication

I have build a very small web application using Flask. Now I would like to add very basic authentication to the site (I don't need authorization). As Flask does not support auth&auth out of the ...
5
votes
5answers
338 views

What pitfalls await me when i migrate from CF6.1 to CF8 or Railo3.1?

Google does not really deliver much content (or my query sucks). Has anyone made the switch and can share the experience?
4
votes
4answers
88 views

EJBs and Modern Java Development

I'm new to Java EE and see that EJBs are alive and well within the pure Java/Oracle community. However everyone at work makes a disgusted look on their face whenever someone else even utters the ...
4
votes
3answers
240 views

Where did this Ruby parameter convention come from?

There's a piece of Ruby middleware used by Rails and other frameworks to the parse the parameters you've sent to the server into a nested Hash object. If you send these parameters to the server: ...
4
votes
1answer
158 views

Is it possible to pass a flash message from Rails to Sinatra?

I have a project that uses Sinatra for static pages and Rails for the application. I allow the request to hit one or the other by doing this in config.ru: run Rack::Cascade.new([ ...
4
votes
1answer
366 views

Using paste.progress In A Pyramid Project

I need to keep track of a file's upload progress and found the paste.progress middleware. It seems like what I want. How would I add and use the paste.progress middleware in a Pyramid project?
4
votes
5answers
781 views

What is the difference between an API , framework and middleware?

Just Randomly got this question in my head! Whats the difference between API , Framework and middleware? Essentially all of them provide abstract low level services to apps. In that case why is dot ...
4
votes
4answers
333 views

which technologies to use for middleware server in .net?

I don't know whether this is a silly question! I searched the web with no useful hits. I am a dot net user (C#).I want to develop a Server, it may be called a middleware server (actually I am not ...
4
votes
5answers
1k views

Where do you put your Rack middleware files and requires?

I'm in the process of refactoring some logic built into a Rails application into middleware, and one annoyance I've run into is a seeming lack of convention for where to put them. Currently I've ...
4
votes
2answers
1k views

How do I set a cookie with a (ruby) rack middleware component?

I'm writing a rack middleware component for a rails app that will need to conditionally set cookies. I am currently trying to figure out to set cookies. From googling around it seems like this ...
4
votes
5answers
598 views

Managing redundant typedefs from multiple vendors

What are some of the best ways to manage redundant typedefs used for platform independence from multiple middleware (operating systems, protocol stacks) vendors in the C programming language. e.g.: ...
4
votes
1answer
330 views

Default list of Django built-in middleware

Django comes with a list of built-in middleware, but if one wants to use all (or most) of them, he has to work through tons of docs in order to get the right sorting in the settings.py file. Is there ...
4
votes
2answers
219 views

How do I use domain objects from middleware with cache_classes off?

In the rails development environment, cache_classes is off so you can modify code under app/ and see changes without restarting the server. In all environments, though, middleware is only created ...
4
votes
2answers
2k views

How do I use a Rack middleware only for certain paths?

I'd like to have MyMiddleware run in my Rack app, but only for certain paths. I was hoping to use Rack::Builder or at least Rack::URLMap, but I can't quite figure out how. This is what I thought ...
4
votes
4answers
666 views

How does one enable authentication across a Django site, and transparently preserving any POST or GET data?

Suppose someone is editing a HTML form, and their session times out, how can one have Django re-authenticate that individual without losing the content the user had entered into the form? The snippet ...
4
votes
3answers
429 views

WSGI byte ranges serving

I'm looking into supporting HTTP/1.1 Byte serving in WSGI server/application for: resuming partial downloads multi-part downloads better streaming WSGI PEP 333 mentions that WSGI server may ...
4
votes
3answers
2k views

Unhandled Exception in Flup

I am facing the dreaded "Unhandled Exception" raised by Flup. The sad part is its raised at the webserver (lighttpd+flup) level and not at the application level(Django). So no 500 email is raised ...
3
votes
1answer
252 views

Is changing SITE_ID dynamically in middleware considered good idea?

(this isn't duplicate of "Changing Django settings variable dynamically based on request for multiple site", as that previous question covers making much more serious reconfiguration at runtime) I ...
3
votes
1answer
141 views

Python based publish subscribe middleware

Is there a scalable, python based publish subscribe middleware available? I tried RabbitMQ, but it does not scale well over 32-64 nodes. I need a middleware that could run over >1000 nodes Thanks
3
votes
2answers
385 views

How is something like Zircon Zircomp different from ZeroC Ice?

Is there anyone that's currently using Zircon Zircomp? How is their technology different from something like ZeroC ICE? Are they trying to solve the same problem domain? How's their target audience ...
3
votes
0answers
111 views

Class reloading stops after uncaught exception in custom middleware

I've written my own middleware to provide an API endpoint to our application. The middleware loads classes that provide the API methods, and routes the request to the appropriate class/method. The ...
3
votes
2answers
674 views

Middleware for both Django and Pylons

It appears to me that Django and Pylons have different ideas on how middleware should work. I like that Pylons follows the standardized PEP 333, but Django seems to have more widespread adoption. Is ...
3
votes
4answers
2k views

How to adding middleware to Appengine's webapp framework?

Im using the appengine webapp framework (link). Is it possible to add Django middleware? I cant find any examples. Im currently trying to get the firepython middleware to work (link).
3
votes
3answers
601 views

Document/Image Database Repository Design Question

Question: Should I write my application to directly access a database Image Repository or write a middleware piece to handle document requests. Background: I have a custom Document Imaging and ...
3
votes
3answers
455 views

.NET enterprise application platform (same as JBoss to Java)

As a .NET developer I'm asking whether JBoss alternatives exist to be "more suitable for .NET development" as an enterprise application platform. Please do not make any suggestions, such as "make ...
2
votes
2answers
113 views

Middleware: Using C as the engine, Lua for Adapters…is this bad practice (Security risk)?

I am an integration consultant and tend to use C and Lua in my spare time, unfortunately it is not my day job ;-( Anyway, I tend to believe that a mixture of C and Lua is perfect for many "product" ...
2
votes
3answers
149 views

How to properly handle errors in Express?

I am beginning to work with Express JS and have run into an issue. I can't seem to figure out the proper way to handle errors. For example, I have a web services API that serves an object called ...
2
votes
1answer
63 views

Factors Affected for Low Performance of middleware Messaging Softwares

I am planning to inegrate messaging middleware in my web application. Right now I am tesing different messaging middleware software like RabbitMQ,JMS, HornetQ, etc.. Examples provided with this ...
2
votes
1answer
171 views

How to Use OmniAuth Properly with Rails 2

I am trying to use an OmniAuth (0.2.6) strategy for my application. The architecture is Rails 2.3.10 and Rack is version is 1.1 (this version or higher is required for OmniAuth). A problem that ...
2
votes
1answer
233 views

Hornetq and IBM Websphere MQ Comparison

I would like to get some opinion regarding these two JMS providers in terms of : Documentation Easy to use Features Standard Conformance I would like to use it together with NetBeans and ...
2
votes
1answer
204 views

Measuring view execution time in a Django middleware - good idea?

I want to check the execution time of views in my site. This can be done by decorators, but since I have dozens of views I thought of doing it in a middleware, saving the initial time in a dictionary ...
2
votes
0answers
223 views

Add api_key on every request with Rack middleware

I work with Devise token_authentication service and ActiveResource client. I wish set automatically :auth_token params in every requests ! I tried this, but this doesn't work... class AuthApp ...
2
votes
1answer
762 views

Application vs middleware development in Android [closed]

I have 1 year and 6 months of experience on Android. All of my experience has been into application development. Recently I have got offers from two companies. One is offering me a profile to work on ...
2
votes
2answers
1k views

what are java middleware technologies

What technologies can we name as 'Java Middleware' ? if I say JMS, WS is that correct ??
2
votes
6answers
106 views

remote methode invocation for c

Is there any equivalent middleware for c like rmi for java or .net for c#?
2
votes
2answers
484 views

Non regex WSGI dispatcher

I've found this regex based dispatcher but I'd really rather use something that only uses literal prefix strings. Does such a things exist? I know it wouldn't be hard to write but I'd rather not ...

1 2 3 4 5