JMS over SSL

View: New views
5 Messages — Rating Filter:   Alert me  

JMS over SSL

by UWD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I can't find any Mule information on how to configure SSL support for JMS. Is that possible, and does anyone have a config example perhaps? I'd really appreciate it!
It's for Tibco EMS, but any JMS SSL example would be helpful.

Regards
Ulf

Re: JMS over SSL

by Andrew Perepelytsya :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ulf,

JMS specification does not describe any transport-level protocol at all (like an SSL one). This is all vendor-specific.

If nobody responds here on the list, I recommend you check Tibco forums, and get back to us.

Andrew

On 3/5/07, UWD <ulf.westerlund@...> wrote:

Hi,

I can't find any Mule information on how to configure SSL support for JMS.
Is that possible, and does anyone have a config example perhaps? I'd really
appreciate it!
It's for Tibco EMS, but any JMS SSL example would be helpful.

Regards
Ulf
--
View this message in context: http://www.nabble.com/JMS-over-SSL-tf3347966.html#a9309031
Sent from the Mule - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list please visit:

     http://xircles.codehaus.org/manage_email



Re: JMS over SSL

by UWD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks Andrew!

Late response from me here, it took a while to verify due to firewall openings to our customer, but I'll post the config anyway in case someone else might need it.
Only these jndi properties are needed on the connector when you use a connection factory and no certificate:

                <property name="com.tibco.tibjms.naming.security_protocol" value="ssl"/>
                <property name="com.tibco.tibjms.naming.ssl_enable_verify_host" value="false"/>

Regards
Ulf

Andrew Perepelytsya wrote:
Ulf,

JMS specification does not describe any transport-level protocol at all
(like an SSL one). This is all vendor-specific.

If nobody responds here on the list, I recommend you check Tibco forums, and
get back to us.

Andrew

On 3/5/07, UWD <ulf.westerlund@cybercomgroup.com> wrote:
>
>
> Hi,
>
> I can't find any Mule information on how to configure SSL support for JMS.
> Is that possible, and does anyone have a config example perhaps? I'd
> really
> appreciate it!
> It's for Tibco EMS, but any JMS SSL example would be helpful.
>
> Regards
> Ulf
> --
> View this message in context:
> http://www.nabble.com/JMS-over-SSL-tf3347966.html#a9309031
> Sent from the Mule - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>

Re: JMS over SSL

by Andrew Perepelytsya :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ulf, thanks a lot for sharing this snippet, it would be a valuable addition to the docs :)

Andrew

On 5/7/07, UWD <ulf.westerlund@...> wrote:

Thanks Andrew!

Late response from me here, it took a while to verify due to firewall
openings to our customer, but I'll post the config anyway in case someone
else might need it.
Only these jndi properties are needed on the connector when you use a
connection factory and no certificate:

                <property name="com.tibco.tibjms.naming.security_protocol"
value="ssl"/>
                <property
name="com.tibco.tibjms.naming.ssl_enable_verify_host" value="false"/>

Regards
Ulf


Andrew Perepelytsya wrote:

>
> Ulf,
>
> JMS specification does not describe any transport-level protocol at all
> (like an SSL one). This is all vendor-specific.
>
> If nobody responds here on the list, I recommend you check Tibco forums,
> and
> get back to us.
>
> Andrew
>
> On 3/5/07, UWD <ulf.westerlund@...> wrote:
>>
>>
>> Hi,
>>
>> I can't find any Mule information on how to configure SSL support for
>> JMS.
>> Is that possible, and does anyone have a config example perhaps? I'd
>> really
>> appreciate it!
>> It's for Tibco EMS, but any JMS SSL example would be helpful.
>>
>> Regards
>> Ulf
>> --
>> View this message in context:
>> http://www.nabble.com/JMS-over-SSL-tf3347966.html#a9309031
>> Sent from the Mule - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list please visit:
>>
>>     http://xircles.codehaus.org/manage_email
>>
>>
>
>

--
View this message in context: http://www.nabble.com/JMS-over-SSL-tf3347966.html#a10362646
Sent from the Mule - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email



Re: JMS over SSL

by UWD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

No problem!
If you'll use it for docs, you may also then make a note that when you use tibjmsnaming as protocol in your jndiProviderUrl, you can't specify tcp or ssl since that is either default in the connection factory or specified with the jndi property com.tibco.tibjms.naming.security_protocol

Example: <property name="jndiProviderUrl" value="tibjmsnaming://XXX.XXX.XXX.XXX:PORT,tibjmsnaming://YYY.YYY.YYY.YYY:PORT"/>

Just to be thorough :)

Ulf

Andrew Perepelytsya wrote:
Ulf, thanks a lot for sharing this snippet, it would be a valuable addition
to the docs :)

Andrew

On 5/7/07, UWD <ulf.westerlund@cybercomgroup.com> wrote:
>
>
> Thanks Andrew!
>
> Late response from me here, it took a while to verify due to firewall
> openings to our customer, but I'll post the config anyway in case someone
> else might need it.
> Only these jndi properties are needed on the connector when you use a
> connection factory and no certificate:
>
>                 <property name="com.tibco.tibjms.naming.security_protocol"
> value="ssl"/>
>                 <property
> name="com.tibco.tibjms.naming.ssl_enable_verify_host" value="false"/>
>
> Regards
> Ulf
>
>
> Andrew Perepelytsya wrote:
> >
> > Ulf,
> >
> > JMS specification does not describe any transport-level protocol at all
> > (like an SSL one). This is all vendor-specific.
> >
> > If nobody responds here on the list, I recommend you check Tibco forums,
> > and
> > get back to us.
> >
> > Andrew
> >
> > On 3/5/07, UWD <ulf.westerlund@cybercomgroup.com> wrote:
> >>
> >>
> >> Hi,
> >>
> >> I can't find any Mule information on how to configure SSL support for
> >> JMS.
> >> Is that possible, and does anyone have a config example perhaps? I'd
> >> really
> >> appreciate it!
> >> It's for Tibco EMS, but any JMS SSL example would be helpful.
> >>
> >> Regards
> >> Ulf
> >> --
> >> View this message in context:
> >> http://www.nabble.com/JMS-over-SSL-tf3347966.html#a9309031
> >> Sent from the Mule - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe from this list please visit:
> >>
> >>     http://xircles.codehaus.org/manage_email
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/JMS-over-SSL-tf3347966.html#a10362646
> Sent from the Mule - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>