+49 228 5552576-0


info@predic8.com

Frequently asked Questions

There is a community-maintained list of FAQs on GitHub.

1. General

Q: Where do I find the source code of the Service Proxy?
A: The router is the core project of the monitor. It is an Eclipse RCP plugin named com.predic8.membrane.core. The project is built using Maven 3. (Install Maven and execute mvn package)
You'll find the source code via git on the Download page.

2. Deployment

Q: Does Membrane Service Proxy support Hot Deployment?
A:Yes. You can add and modify service proxies during the execution of Membrane Service Proxy. Just modify the proxies.xml file and save it. An instant later the new configuration should be deployed. To activate or deactivate hot deployment, set the hotDeploy attribute on your router element to true or false.

Q: Could Membrane be used in the Cloud?
A: Yes. It is build with the cloud in mind:

3. Integration

Q: Can Membrane manipulate intercepted request and response message?
A: Membrane is made to be used for such tasks as intercepting and then manipulating messages. Membrane provides several interceptors for the manipulation of messages that you can put into the message flow:

If you want to do something different you can write easily your own interceptor . I am glad to help you if you can describe that you want to manipulate.

Q: What Message Exchange Patterns are supported by Membrane Service Proxy?
A: The synchronous Request/Response message exchange pattern over HTTP is supported. One way HTTP invocations using the 201 and 202 status codes are also supported.

Q: Why does Membrane ESB only support the HTTP protocol?
A: Because HTTP is the protocol for REST resources and is the main protocol for SOAP based Web Services. The focus on HTTP allows to use optimizations that gives Membrane Service Proxy an outstanding performance.

Q: Is Membrane Service Proxy really an ESB?
A: An ESB typically provides a reliable bus and provides adaptors for a buch of protocols. Membrane Service Proxy has no reliable bus and the only supported protocol is HTTP. By these criteria Membrane is not an ESB. During ESB consulting we worked in a lot of projects where HTTP was used in more than 90% of the time and most services invocations were synchronous. So we developed an ESB that provides only HTTP transport but all the other features of an ESB like support for EAI patterns, service monitoring and provisioning. So a better name would be Membrane (E)SB or synchronous ESB or Highspeed ESB.

4. Security

Q: Can Membrane Service Proxy be used as SOAP Firewall?
A: Yes. Place Membrane inside your DMZ. Then configure a service proxy to forward HTTP and SOAP requests from the outside to an internal server. How to do that is described in the firewall tutorial.

5. Performance

Q: How big is the Time Delay caused by the Service Proxy?
A: It depends on the configuration and what the Service Proxy should do with the messages. Used as a simple Router, Membrane has a latency that is lower than 1 ms (3 KByte message size on a Pentium Centrino Notebook).

Q: When I start using the <accessControl />-Interceptor, my HTTP requests suddenly take several seconds (compared to milliseconds) to complete. Where is the problem?
A: The cause are (reverse) DNS lookups. Up to version 3.5.2 the <accessControl />-Interceptor always performs reverse DNS lookups for the source IP of the request, even if you do not use a <hostname /> element in the ACL file. These DNS lookups are cached by the Java Virtual Machine, but since JDK version 1.6 only for 30 seconds by default. This means that during manual testing you will almost always experience the lag of a full reverse DNS lookup. You can change the default timeout using the networkaddress.cache.ttl (or sun.net.inetaddr.ttl) and networkaddress.cache.negative.ttl (or sun.net.inetaddr.negative.ttl) properties. Reading the guide is highly advised, as this is a balance between performance and security.

6. Development

Q: Where do I find the source code?
A: On github.

7. Troubleshooting

Q: The Service Proxy keeps crashing after consuming all available memory. Is this a bug?
A: Membrane Service Proxy versions before 4.0.7 could not detect circular requests. The Service Proxy calling itself over and over again floods the memory with requests that cannot be completed. Make sure that no service proxy accidentally routes calls to itself.