IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

Connecting thrid party proxy server to IS

  • 1.  Connecting thrid party proxy server to IS

    Posted Wed February 04, 2004 03:05 AM

    I am trying to configure apache proxy server to connect to our internal IS(instead of Reverse Invoke IS). I am not sure how to pass the username/password from proxy server to IS (IS is requires basic authentication)

    Has anybody done this before(using apache or any other third party proxy server)


    #webmethods-Protocol-and-Transport
    #webMethods
    #Integration-Server-and-ESB


  • 2.  RE: Connecting thrid party proxy server to IS

    Posted Wed February 04, 2004 10:36 PM

    I guess I found a way to make it work.

    Add the following lines to httpd.conf in apache proxy server.

    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_http_module modules/mod_proxy_http.so (This is
    required to promt username/password - defined in internal IS)
    ProxyPass /submitToPartner http://host:port/invoke/wm.tn/receive
    ProxyPassReverse /submitToPartner http://host:port/invoke/wm.tn/receive

    where host:port is your IS host name and port.


    #webmethods-Protocol-and-Transport
    #Integration-Server-and-ESB
    #webMethods