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

0
votes
1answer
23 views

Profiling CherryPy

I've been trying to start profiling my CherryPy webserver, but the documentation is lacking in detail in how this should be set up. I understand that I should be able to use cherrypy.lib.profiler as ...
0
votes
1answer
23 views

Preprocessing via express middleware or through build system

Is preprocessing static resources through middleware (using express) a good idea for production environments? From my understanding the middleware stack is run, in series, for every request. Wouldn't ...
0
votes
0answers
12 views

Connect.js static middleware and coffeescript

I am trying to learn to use the Connect.js static middleware, but all the examples I find use the static command as either a function, or a getter, some use a method called use(), while others don't. ...
0
votes
1answer
26 views

Trigger basic HTTP auth from within middleware

I have created a custom middleware for rails which will intercept all requests and make sure it's coming from an authorized IP, otherwise it should prompt for a basic http auth user/name password. ...
0
votes
2answers
34 views

Where this undefined in Express.js console is coming from?

Useless middleware for testing purposes: module.exports = function () { return function rankick(req, res, next) { if (Math.random() < 0.5) { return next('Random kick...'); ...
0
votes
1answer
22 views

Express/Connect: Unable to parse body after making call to redis

I am trying to shorten my Express/Connect middleware pipeline by only calling certain middleware functions based on the requested path. However, the following will fail: _cookieParser(req, res, ...
1
vote
0answers
60 views

why is my express middleware session undefined?

I'm trying to use the express middleware for sessions (I'm not understanding but I feel that I am very close). the reason I have ended up asking is that the express docs ...
-1
votes
0answers
29 views

agents send message to another agent through portal

I am doing a project in uni and I am stacked. I am suppoed to build a middleware like Boris but simpler version. So at the moment I want to be able to send messages from one agent to another through ...
1
vote
1answer
24 views

Detecting a response redirect in middleware

I have some custom middleware that creates a stack of previous URLS so that they can be navigated back to from subsequent pages. In one of my views that adds its url to the stack, there is some logic ...
0
votes
1answer
26 views

How does the 'reverse path' in Node.js Connect work?

So I understand that Node.js Connect works like a stack through which it runs, starting from the top and going to the bottom. From the Connect introduction by its author at ...
0
votes
0answers
28 views

user_required decorator to authenticate user and company and branch by default

Each Branch of each company gets their own dashboard. A user visits the dashboard for their branch (but is redirected to /dashboard/<company>/<branch>/login if they aren't logged in). ...
1
vote
1answer
146 views

Express.js middleware branching or multiple app.routes middlewares

we are creating a separate API app, but forced to make it part of the existing express.js main app. My question is how to put API authentication in a proper place. I want to make it a middleware, and ...
0
votes
1answer
15 views

Is data representation typically part of a “distributed application middleware”?

I am currently building a lightweight application layer which provides distributed services to applications of a specific type. This layer provides synchronization and data transmission services to ...
0
votes
3answers
139 views

Slim Framework - cannot add route middleware

I am new to Slim Framework and PHP. I cant get this to work, if I use a normal function and use "foo" as a parameter, it works, but doesnt work like this, even tho the documentation uses pretty much ...
-1
votes
1answer
116 views

WSO2 multi-tenancy [closed]

We’re evaluating WSO2 products (http://wso2.com) for our new SOA architecture. We need multi-tenancy on level of the ESB, web services and especially data sources/databases. We have a large numbers ...
0
votes
1answer
50 views

How return items from a custom spider middleware

I've created my Custom SpiderMiddleware from OffsiteMiddleware. A simple copy and paste from the original class, maybe it exist a better method. I would collect the filtered offsite domains. My ...
0
votes
1answer
32 views

what belongs to express.js middleware layer

I do not know what belongs to the middleware layer in express.js. Can all the methods that are not part of the HTTP protocol methods, ( but belongs to namespace of main app ) be considered middleware? ...
0
votes
1answer
49 views

How can I use Y.mojito.models in middleware?

I'm using nodejs with the mojito mvc framework. Do I have access to some global variables from middleware? How can I use Y.mojito.models in middleware? // ./middleware/mymiddleware.js module.exports ...
0
votes
1answer
48 views

Silex Setting Middleware to a ControllerCollection

I want to do something like this: $app->mount('dashboard', new Travel\Controllers\Dashboard())->before(function() use ($app) { //check if is logued... }) Is it ...
0
votes
1answer
62 views

Accessing res.locals after app.router

I am creating the middleware to be called after app.router and I need to access the data that was stored in res.locals object by the route middleware and route handler. //... app.use(app.router); ...
0
votes
1answer
51 views

What is the difference between 'session' and 'cookieSession' middleware in Connect/Express?

There are two session-related middlewares bundled with Connect/Express. What is the difference? How do I choose? I'm assuming that session middleware is the same as cookieSession middleware, but with ...
1
vote
1answer
45 views

What is middleware in distributed systems?

I am taking a class on distributed systems right now and I can't grasp the idea of middleware. I understand that it is a software layer that provides a level of abstraction between the application and ...
2
votes
2answers
97 views

How can I run multiple Ring apps on the same server?

I’m new to Ring (and Clojure server-side programming in general). I have a Ring-based app that works well in “development mode”, i.e. it can listen on localhost:3000 and it responds appropriately. As ...
0
votes
1answer
130 views

How does the LMAX Disruptor address typical message broker problems?

My understanding of the LMAX Disruptor is that it is a JAR full of scary-fast, scary-concurrent Java code that allows a throughput of 20 million messages per second (if used correctly). We currently ...
0
votes
2answers
62 views

Does Mule offer hot-deployability for Camel routes?

I have a Camel-heavy web application that suffers from chronic releases because business logic is always changing and we are constantly adding/modifying our routes. I heard a co-worker talking about ...
0
votes
0answers
74 views

Send SQL queries from Android device, through middleware to Oracle Database

I have an Android application and an Oracle database, with middleware (written by someone else) on a server which handles SQL requests between the two. How do I send SQL queries from the Android ...
1
vote
1answer
71 views

NodeJS/Express: implicitly push data from custom middleware into render call

I'm using NodeJS/Express3. I have some custom middleware which retrieves some data from a database, based on cookie and URL. I want to have access to this data in the base template (used for all ...
6
votes
2answers
112 views

Looking for a message bus for HTTP load sharing

I have an HTTP application with standalone workers that perform well. The issue is that some times they need to purge and rebuild their caches, so they stop responding for up to 30 seconds. I have ...
0
votes
0answers
39 views

How can we map paths with node.js connect

How could we map some path to another path using the node.js connect middleware? For example, I'd like my server to respond with fileA when requested for fileB. (it's for using inside ...
-2
votes
1answer
89 views

middleware Codename One and mobile apps [closed]

I want to ask about the middleware Codename One : what it really is ? what are advantages and drawbacks of using it, when developping a mobile application (Android or iPhone) ??
0
votes
1answer
33 views

Exposing a logging interface from a library

I spend most of my time writing software in C. Lately, I've been working on libraries that would be classified as middleware. They only need to exist to make two pieces of software communicate. ...
0
votes
1answer
55 views

Extract Ruby Parameters

Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters. config.ru run Example::Controller.new ([ "test" => Sinatra::Application ...
2
votes
2answers
181 views

node.js middleware and js encapsulation

I'm new to javascript, and jumped right into node.js. I've read a lot of theory, and began well with the practical side (I'm writing an API for a mobile app), but I have one basic problem, which has ...
0
votes
1answer
123 views

Calling to next middleware after redirect in Express.js

I am looking to drive behavior through integration tests on an Express.js middleware. I have encountered an interesting circumstance where the behavior of Express behind the application is not ...
0
votes
1answer
143 views

connect-assets uglify settings

I have wasted way too much time on google with this, and am still new to connect-assets. So I want to use the build feature and have connect-assets concatenate and minify my javascript. However I ...
0
votes
1answer
128 views

Routing in Express/Node.js using multiple callbacks

I'm new to Node.js, or even JavaScript in general, and I'm currently setting up a http-server using Node/Express that should query a postgresql database. I am unsure if I'm using the routing and ...
2
votes
3answers
72 views

Testing of graceful handling of invalid UTF-8 in Rails

I'm currently trying to ensure that my rails application handles POST methods with invalid UTF-8 data gracefully (e.g. \xFF) (using rack middleware) Unfortunately writing tests for this is proving ...
0
votes
1answer
92 views

Modify Rack App

For one of my ruby applications i need the server to route requests based on the subdomain. There are ways to do this using other gems but i decided to make my own "middleware". This code runs ...
0
votes
0answers
25 views

Distributed architecture technology

what is the difference between Data-Centric architecture and Data-centric Technology? as in some articles they differentiate between architecture and technology
0
votes
2answers
58 views

Why data-centric is bad?

On the answers of the posted question: "What is the difference between data-centric and object-oriented application models?" I read: when you were mentioning the "message passing" example, you ...
-1
votes
1answer
53 views

Virtual Machine Vs. Middleware [closed]

What are the differences between a Virtual Machine and a Middleware? Can I consider a Virtual Machine as a Middleware? Can I use a middleware for the Virtual Machines?
0
votes
0answers
70 views

Subdomain App Routing

I'm trying to make a ruby based app for heroku that will use subdomains to route users to the correct application. After searching google i came up with a sloppy way of doing this, but i was wondering ...
3
votes
1answer
147 views

Unicorn server mongodb and sinatra

So I have been trying to find out more about this. I am currently building a lightweight API with sinatra + mongodb + unicorn. Since instance variables inside a middleware app, running on unicorn, ...
0
votes
1answer
53 views

Changing response object in django middlware

I need to modify response object in middleware, so i have added 'myproject.common.middlware.ResponseMiddleware' MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', # order ...
0
votes
1answer
108 views

How to keep main Camel thread alive with Spring DSL

I am developing my first real Camel-based Java app and am running into a bizarre, complicated issue that I believe is a result of the main Camel thread dying/finishing. Basically, the route itself ...
0
votes
0answers
57 views

What is the n-Tier means in Middleware systems?

and there are 1-Tier , 2-Tier ,3-Tier and n-Tier why we need them ?
2
votes
4answers
54 views

Why perform transformations in middleware?

A remote system sends a message via middleware (MQ) to my application. In middleware a transformation (using xslt) is applied to this message. It is just reformatted and there is no enrichment nor ...
0
votes
1answer
68 views

Node.js/Passport/Connect-Filter: Issue during refactoring

I am developing a web application with node.js and I am using passport(http://passportjs.org/) for authentication. I put all the passport code into the app.js file and it works pretty good... During ...
1
vote
2answers
309 views

browserify v2 middleware

In development I use both Coffeescript and Browserify middleware on my Express server to deliver my client side JS like so: app.use browserify mount: '/client.js', entry: './client.coffee', watch: ...
1
vote
0answers
174 views

yeoman express stack with livereload for handlebars templates

i'm using the yeoman express stack (https://plus.google.com/115133653231679625609/posts/YDNbxVxi4er) to build a web application in yeoman and using an express server. Now in stead of using regular ...

1 2 3 4 5 8