You are on page 1of 2

Show TOC

Configuring SAP Web Dispatcher


The following is to give you an example of how to configure your Web Dispatcher.

1 SAP Web Dispatcher as proxy to map in and outgoing requests for different
systems
1 SAP NetWeaver Gateway server (optional if using external gateway)
1 Front-end system

In the example below SAP Web Dispatcher listens at port 443 and transfers:

all requests which start with /sap/opu/odata/ to the Gateway system


all requests which start with /sap/public/bc or /sap/bc to the front-end system

Note
The example given is not complete and must be adapted according to your requirements.

For more information on SAP Web Dispatcher, see http://help.sap.com/nw_platform. Select


a release. Under Application Help, open Function-Oriented View and choose Application
Server Application Server Infrastructure SAP Web Dispatcher .

Configuration Settings for SAP Web Dispatcher

When configuring the SAP Web Dispatcher define the example values below according to
your requirements. To implement your configuration you can copy the source code below
and adapt it according to your business requirements.

#https settings
ssl/ssl_lib = <sapcrypto dll>
ssl/server_pse = <pse>
icm/HTTPS/verify_client = 0
ssl/client_pse = <pse>
wdisp/ssl_encrypt = 1
wdisp/ssl_auth = 2
wdisp/ssl_cred = <pse>
wdisp/ssl_certhost = <host name>
icm/HTTPS/forward_ccert_as_header = true

# SAP Web Dispatcher Ports


icm/server_port_0 = PROT=HTTPS,PORT=443,TIMEOUT=120

wdisp/system_conflict_resolution = 1
wdisp/add_clientprotocol_header = 1
wdisp/handle_webdisp_ap_header = 1
wdisp/add_xforwardedfor_header = true

# Configuration for Gateway Server(For example, SAP Business Suite


wdisp/system_0 = SID=<GW SID>, MSHOST=<GW MSHOST>, MSPORT=<GW MSPOR

# Configuration for Front-End Server:


wdisp/system_1 = SID=<FE SID>, MSHOST=<FE MSHOST>, MSPORT=<FE MSPOR

Note
If you want to use the Web GUI applications on the front end servers then you have to
append this additional path /sap/public/icmandir/ to the SRCURL of the frontend server.

The table explains the example values used in the source code above:

Table 1:
Variable Description Example Value

<sapcrypto dll> Installation path C:\sapwebdisp\sapcrypto.dll

<pse> Folder for PSE file C:\sapwebdisp\sec\PSE_UI2.pse

<host name> Fully qualified host name of mydispatcher.example.com


dispatcher
<GW SID> Gateway SID ABC

<GW MSHOST> Gateway message server host abc.example.com


name
<GW MSPORT> Gateway message server port 8120

<FE SID> Front-end SID DEF

<FE MSHOST> Front-end message server host def.example.com


name
<FE MSPORT Front-end message server port 8131

You might also like