If you want to configure your TIBCO Web Messaging gateway, which normally lives in the DMZ, to connect to TIBCO EMS messaging backbone over a TCP connection, the procedure is straightforward. Just point to the TIBCO EMS server hostname and port number, assuming that's already open in the firewall, in the trusted network and that's it.
Something similar to the following service (stomp.jms) configuration should be enough:
<service>
<accept>ws://${gateway.hostname}:${gateway.nonsecure.port}/jms</accept>
<type>stomp.jms</type>
<properties>
<connection.factory.name>GenericConnectionFactory</connection.factory.name>
<context.lookup.topic.format>%s</context.lookup.topic.format>
<context.lookup.queue.format>%s</context.lookup.queue.format>
<env.java.naming.factory.initial>
com.tibco.tibjms.naming.TibjmsInitialContextFactory
</env.java.naming.factory.initial>
<env.java.naming.provider.url>
tcp://${EMS.hostname}:${EMS.portNumber}
</env.java.naming.provider.url>
<destination.strategy>session</destination.strategy>
</properties>
<realm-name>dev_realm</realm-name>
<authorization-constraint>
<require-role>AUTHORIZED</require-role>
</authorization-constraint>
</service>
Now, if you want to configure an end-to-end secured enabled environment then some extra parameters are necessary to make everything work correctly. The service configuration below will give you what you need (most of them are self-explanatory) to enable that.
<service>
<accept>wss://${gateway.hostname}:${gateway.secure.port}/jms</accept>
<type>stomp.jms</type>
<properties>
<connection.factory.name>SecureConnectionFactory</connection.factory.name>
<context.lookup.topic.format>%s</context.lookup.topic.format>
<context.lookup.queue.format>%s</context.lookup.queue.format>
<connection.security.principal>ems_user</connection.security.principal>
<connection.security.credentials>ems_password</connection.security.credentials>
<env.java.naming.factory.initial>
com.tibco.tibjms.naming.TibjmsInitialContextFactory
</env.java.naming.factory.initial>
<env.com.tibco.tibjms.naming.security_protocol>
ssl
</env.com.tibco.tibjms.naming.security_protocol>
<env.java.naming.provider.url>
ssl://${EMS.hostname}:${EMS.securePortNumber}
</env.java.naming.provider.url>
<env.com.tibco.tibjms.naming.ssl_enable_verify_host>
true
</env.com.tibco.tibjms.naming.ssl_enable_verify_host>
<env.com.tibco.tibjms.naming.ssl_trusted_certs>
ems_certificate.pem
</env.com.tibco.tibjms.naming.ssl_trusted_certs>
<env.com.tibco.tibjms.naming.ssl_trace>
true
</env.com.tibco.tibjms.naming.ssl_trace>
<destination.strategy>session</destination.strategy>
</properties>
<realm-name>dev_realm</realm-name>
<authorization-constraint>
<require-role>AUTHORIZED</require-role>
</authorization-constraint>
</service>
The current version of TIBCO Web Messaging also provides you a really nice feature called Reverse Connectivity where you will be able to close all incoming traffic ports while still allowing external clients to initiate the connection. But, this is a topic to be explored on a next post. Stay tuned!
Thursday, January 17, 2013
Thursday, January 3, 2013
Searching for the same thing over and over again...
I have to admit that I very often run queries on Google for things I've searched before and many times I end up with the exact same results. I'm also a big fan of Evernote where I keep my notes organized per project, topic, event, place, etc...
Luckily, the Evernote Web Clipper has a feature that seems to solves the issue above allowing you to simultaneously search on Google and also on your Evernote notes.
To enable that capability all you have to do is to right-click in the Web Clipper and then make sure you have the Related Results checkbox enabled. I believe this is available only in Google Chrome and Apple Safari for now.
On your next Google search, you should be able to see results similar to the following picture (with the Evernote results boxed in to the right).
Luckily, the Evernote Web Clipper has a feature that seems to solves the issue above allowing you to simultaneously search on Google and also on your Evernote notes.
To enable that capability all you have to do is to right-click in the Web Clipper and then make sure you have the Related Results checkbox enabled. I believe this is available only in Google Chrome and Apple Safari for now.
Evernote Web Clipper Related Results to add simultaneous search capabilities with Google |
On your next Google search, you should be able to see results similar to the following picture (with the Evernote results boxed in to the right).
Wednesday, January 2, 2013
Do Not Disturb!
To all of my friends out there with their powerful iOS 6 devices, you may haven't noticed yet but if you use the Do Not Disturb feature it will stay on after scheduled time and that's caused by a bug reported here: http://support.apple.com/kb/TS4510 and it will stay on until Jan, 07th 2013 causing your device to do not alert, notify, ring, etc (depending on your setup) until you turn DND off manually.
Remote Debugging Mobile Web Apps
Just found this little tool called jsconsole that's a tremendous help with remote debugging mobile web applications.
All you have to do is to navigate to jsconsole.com and type :listen in the top command prompt and insert the <script> tag generated back to you on your web application after the connection has been established.
Then, after loading the application on your mobile device you should be able to see all the JavaScript output.
All you have to do is to navigate to jsconsole.com and type :listen in the top command prompt and insert the <script> tag generated back to you on your web application after the connection has been established.
Then, after loading the application on your mobile device you should be able to see all the JavaScript output.
Subscribe to:
Posts (Atom)
Setting Up Local Environment for Developing Oracle Intelligent Bots Custom Components
Oh the joy of having a local development environment is priceless. For most cloud based solutions the story repeats itself being hard to tr...
-
A few days ago I was helping an Apache user getting the ActiveMQ Web Console up and running on ServiceMix 4.4. At first instance, it seems ...
-
Web Services are very important components of most (if not all) of the integration projects these days. The Web Services architecture make t...
-
Most of the projects I work on have some kind of database interaction and some of them require variables to be the passed to the queries at ...