URL redirect to ECC through web dispatcher

Hi,
     I need to forward the  link
http:// 85.89.237.93/zincontact?sap-client=200?opid=$(operatorid)?cli=$(cli)?qid=$(queueid)?dato=$(startcalldate)?  viderefort=$(forwarded)
to
http:// vindevde1:8020//zincontact?sap-client=200?opid=$(operatorid)?cli=$(cli)?qid=$(queueid)?dato=$(startcalldate)?viderefort=$(forwarded)
where vindevde1 is ECC box.
Here operatorid , queueid , startcalldate  will change in runtime.
I set the parameter icm/HTTP/redirect_0 as given below.
icm/HTTP/redirect_0 = PREFIX=/zincontact?sap-client=200?opid=$(operatorid)?cli=$(cli)?qid=$(queueid)?dato=$(startcalldate)?viderefort=$(forwarded) ,
TO=/zincontact?sap-client=200?opid=$(operatorid)?cli=$(cli)?qid=$(queueid)?dato=$(startcalldate)?
viderefort=$(forwarded),HOST=vindevde1,PROT=HTTP,PORT=8020
Please help me on this.
Sandip

Hi again,
>Now is it possible to access the service through url http://85.89.237.93 from internet or I have to use http://vinweb01:8101/ as >in web dispatcher server ?
Sorry but you are really difficult to understand.
If you want to access your ECC system from the internet through the web dispatcher, the web dispacher should be in a DMZ and have 2 IP address : 1 published on the internet and one to access the internal network.
Usually you would configure the web disptcher to listen on the standard ports 80 for HTTP and 443 for HTTPS.
If vinweb01 is the name of your web disptcher as published on internet DNS, you would access to ECC with the URL
http://vinweb01.
All of this is explained in detail in help.sap.com. You should really read the documentation...
Regards,
Olivier

Similar Messages

  • URL Load Balancing through Web Dispatcher

    Dears,
    We are facing heavy load on our portal server.
    We are planning to installed one J2ee Dialog instance for it.
    Please suggest how can we configure Url Load Balancing through Web Dispatcher.
    Regards,
    Shivam

    HI Shivam,
    While installing webdispatcher you provide Hostname and http message server port of j2ee of CI .
    So , webdispatcher communicate directly with message server, where message server check which application server is free and hence forward the request to that specify application server of j2ee instance.
    Pls find the below link for configuring webdispatcher
    http://help.sap.com/saphelp_nw04/helpdata/en/42/5cfd3b0e59774ee10000000a114084/content.htm
    Thanks
    Anil

  • Call EP and ERP through web dispatcher

    Hi,
    I have configure multiple system on Web dispatcher EP and ERP.
    My issue is our company do not want to publish EP and ERP over the internet but by the web dispatcher uses as a reverse proxy i want to publish the web dispatcher only now my EP called successfully over the internet but WDA application is not working cause it's redirects the directly to ERP so error occur's page not found.is there any way-out to call internally the ERP system.
    Regards:
    Akash Ahuja

    Hi Akash,
    As per my understanding from your message. If your EP system called successfully through internet , then your ERP system also should visible via internet. kindly check with your Network team that the ERP system there must be firewall settings to open. For internal call out you can use "redirect menthod" for portal using instead ofhttp://<host>:<port>/irj use http://<host>:<port>/redirect. To change the authentication for another application use:http://<host>:<port>/redirect?url=/customapp.
    Need more information about your issue.
    Thanks,
    Brindavan

  • URL Redirect in a Statefull WEB applciation

    I have a statefull web application.
    The web tier is organised using jsp, xsl, js
    After login when navigating through the application with each click server side load different data depending on the action.
    Now I would like after login to redirect the User to some specified page (not the first welcome one)
    When opening the URL of the screen I want to show to the user in the same window it displays the page but fails when trying to perform any operation on it, (like, cancel, save, show some data, etc) because the normal flow was not followed and not all data were loaded
    Is there are any documentation or common practices on how to redirect after login and have all data loaded like the user himself would open page by page to get there ?
    Thank You,
    Alex.

    common practice? It sounds like you have a big design flaw, nothing more, nothing less. The opening of pages should not be a trigger to get data loaded, unless we are talking about form submits.

  • Load Balancing through Web Dispatcher

    Dears,
    We are using ECC 6.04 with two application servers and EP 7.01 installed on AIX and database is oracle.
    We are using ESS in EP.
    In our current scenario when User login into EP to use ESS they get connected to only central instance of our ECC server.
    Now we want to do load balancing in EP so that users can connect to central and dialog instances of our ECC server according to available work load.
    Please suggest how can we configure it.
    Regards,
    Shivam Mittal

    Dear Mark,
    Thanks for the reply.
    Presently in our ECC server,We have three logon group everyone pointing to different instance.
    Please confirm how can we create logon group inclusive of all instances and In EP also where we need to maintain
    settings to connect to backend system via logon group.
    Please suggest.
    Regards,
    Shivam

  • SAP Web Dispatcher - Dynamic URL

    Hi All,
    We have a scenario where a URL coming to Web Dispatcher with be dynamic ,since each time the URL will hold a different phone number and a User ID as parameters in the URL and an external application would be requring to get some data from ERP based on that parameters in the URL through the request.
    We are using SAP Netweaver Portal 7.0 EHP 1 and as far as I am aware of dynamic URLs cannot be proceesed by Web Dispatcher.
    Is there any other way to manipulate the URL or otherwise to solve this issue.
    Appreciate an immediate response.
    Thanks,
    Priya

    Hi Oliver,
    The Web Dispatcher is connected to ERP and the one application will be accessing the ERP system to get the details of User based on a 'User ID' and 'TelephoneNumber' which will vary each time  and is part of the Request URL as Query String.
    The request URL will be like
    http://<host>:<port>/zincontact?sap-client=200?opid_=<User ID>?cli=<TelephoneNumber>?qid=XXXXX?dato=20091101143012?viderefort=false
    Now how to configure Web Dispatcher to accept a request URL which will be dyanamic for each new request and route the request to ERP System  and we are using NW 7.0 EHP 1
    Hope I am clear now...
    Regards,
    Priya
    Edited by: BISHNU PRIYA SAHOO on Feb 11, 2011 6:31 PM
    Edited by: BISHNU PRIYA SAHOO on Feb 11, 2011 6:33 PM

  • How to do auto URL redirect in sun web server ?

    Hi, i need to do auto url redirect in my sun web server. Currently i'm setup some rules for the reverse proxy in obj.conf file and the syntax looks like:
    <Object name="reverse-proxy-/test">
    <If $internal and $uri =~ "index.html">
    NameTrans fn="redirect" from="/" uri="/examples/abc.html"
    </If>
    Route fn="set-origin-server" server="http://localhost:8989"
    </Object>
    The situation is:
    1) When users browse "*http://localhost/examples/abc.html*" it will redirect to abc.html
    2) When users browse "*http://localhost/test*" it will redirect to the localhost admin GUI (http://localhost:8989/admingui/admingui/serverTaskGeneral)
    My desire output should be whenever users browse the "*http://localhost/test*" , it will redirect to abc.html page.
    the syntax might be wrong. So, anyone knows how to fix this? I'm keep trying but nothing worked. Please help me.

    Moderator action: Moved from Servers General Discussion.
    db

  • Customer creation through Web service portal in ECC

    Hi All,
    We have a requirement where we have to Create/ Change Customers (Tcode XD01/ XD02) in ECC through Web service portal linked with RFCu2019s.
    1.      There is standard FM for this SD_CUSTOMER_MAINTAIN_ALL, But SAP standard functionality/ notes recommend not to use this FM for such requirements.
    2.      Since we have periodic configuration changes for Customers, The option for using BDCu2019s is also ruled out.
    3.      Since we have to do the error handling and reporting back to web service portal end as well, Using IDocu2019s also looks tricky at this moment.
    Please suggest ways to accomplish this. Any input is welcomed.
    Thank you.

    Hi,
    SD_CUSTOMER_MAINTAIN_ALL is used in standard during the maintenance of a consumer using the standard customer master data transaction XD01 & XD02.
    It is not intended to be used out of the transaction and in no case it should be used out of its original context. Due to the specificity of the function module, out of the original context we may face limitations and data inconsistencies.
    This is precisely what you will face in your case.
    For the maintenance of customers, there is NO BAPI and NO direct function module.
    There are some functions modules like the one above where the name is looking nice. But these should not be used.
    Below ECC 2005 (6.00), the only solution was batch input and DEBMAS idocs. See [note 384462|https://service.sap.com/sap/support/notes/384462]
    Starting with ECC 2005 (6.00) and above: a synchronisation tool has been introduce. See class CMD_EI_API and VMD_EI_API
    Hope this helps
    BR
    Alain

  • Web Dispatcher - Page Cannot Be Displayed

    We have a Web Dispatcher in a DMZ (DMZ2) that is used for external (Internet) access to our E-Sourcing application. The E-Sourcing application is in another DMZ (DMZ1).
    When external (sell-side) users enter the url in their browser to connect through the Web Dispatcher over the Internet, the initial E-Sourcing screen is displayed very briefly in the browser and then the message 'Page cannot be displayed' comes up on the screen. If the browser screen is refreshed, the login screen is then displayed and the user is able to log in with no issues.
    This occurs only when trying to access the E-Sourcing application through the Web Dispatcher. It does not make any difference if the Web Dispatcher hostname is used in the url (internal access through Web Dispatcher) or if the url created specifically for the Web Dispatcher is used (external (Internet) access through the Web Dispatcher). The result is the same.
    If either http://WebDisp_Hostname (internal) or http://www.myESOapp.here.com (external Internet) is entered in the browser, both display the front-end ESO screen briefly and then display the 'Page cannot be displayed' message. Refreshing the browser screen then displays the login screen and users can log in OK.
    Can anyone point me in the right direction to solve this? I have reviewed the Web Dispatcher trace file and the E-Sourcing log file and can find no errors or anything that would indicate what might be going on. It appears to be a Web Dispatcher issue. Any help would be appreciated.
    WL

    Hi Wayne,
    When external (sell-side) users enter the url in their browser to connect through the Web Dispatcher over the Internet, the initial E-Sourcing screen is displayed very briefly in the browser and then the message 'Page cannot be displayed' comes up on the screen. If the browser screen is refreshed, the login screen is then displayed and the user is able to log in with no issues.
    When first time you call URL , do you the page of Esourcing or you directly get the error page.
    It better , install HTTP watch software on you dekstop and then activate the HTTP watch and start browsing the page and generate the problem which you are facing .
    Once it is done share the result of HTTP Watch  in the forum , depend upon that we can come to some solution.
    Thanks
    Anil

  • Web dispatcher URL redirect

    Hi ,
    We have web dispatcher which is used for accessing portal and fiori using public url as below .
    https://fiori.xyzcorp.com
    https://portal.xyzcorp.com
    But when they're trying to access via internet portal url goes to https://portal.xyzcorp.com/startPage by default it should route to irj/portal
    Same for Fiori also I'm using the  ICM redirect parameter still can't access
    icm/HTTP/redirect_0 = PREFIX=/, FOR=portal.xyzcorp.com:*, TO=/irj/portal,
    icm/HTTP/redirect_1 = PREFIX=/, FOR=Fiori.xyzcorp.com:*, TO=/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?sap-client=800&sap-language=EN,
    Could you please share you thoughts?

    Hi Krishna,
    Please go through below doc
    SAP webdispatcher and URL redirect?
    icm/HTTP/redirect_&lt;xx&gt; (SAP Library - SAP Web Dispatcher)
    BR
    Atul

  • Redirection in web dispatcher

    Dear Experts,
    I have ABAP backend system and I need to open it to internet. Doing so, I have implemented web dispatcher that is running in DMZ. Up to this point everything went on as desired, but one thing.
    When I call the URL http://teidom.com:60000 then it redirects to the target host with the local address http://<localhost>.teidom.local:8000/sap/bc/gui/sap/its/webgui. Hereby this is not possible to call the page from internet. This is working only in local network, not in internet. In order to call and view the page from internet, the address has to be intact with no address redirection.
    Just to get you closer to understand the situation, here below I wrote down the parameters which I defined for Web Dispatcher (sapwebdisp.pfl).
    SAPGLOBALHOST = WebServerRack
    SAPSYSTEM = 02
    INSTANCE_NAME = W02
    DIR_CT_RUN = C:\WebDisp\NTI3867
    DIR_EXECUTABLE = C:\WebDisp\NTI3867
    Accesssability of Message Server
    rdisp/mshost = backsvr.teidom.local
    ms/http_port = 8100
    Configuration for medium scenario
    icm/max_conn = 500
    icm/max_sockets = 1024
    icm/req_queue_len = 5003
    icm/min_threads = 10
    icm/max_threads = 50
    mpi/total_size_MB = 80
    SAP Web Dispatcher Ports
    #icm/server_port_0 = PROT=HTTP,PORT=81$$
    icm/server_port_0 = PROT=HTTP,PORT=60001
    icm/HTTP/redirect_0= PREFIX=/, PORT=8000, PROT=HTTP, TO=/sap/bc/gui/sap/its/webgui, HOST=backsvr.teidom.local
    Kind Regards,
    Taner Guler

    Hi Matt,
    It is very kind of you commenting on the subject.
    I just want to be sure of the problem that I am facing. My problem is when I call the URL http://teidom.com:60000 from the internet; it is supposed to view the page (information) from ABAP system. But it couldn't.
    Web dispatcher is running on the host named 'webdispsvr'
    In the firewall I set port 60000 open from internet to web dispatcher server
    And in the other firewall (at the back) I set port 8000 open to R3 ABAP system which supplies information to internet.
    After setting up the web dispatcher profile according to (thanks Olivier) instructions from help.sap.com
    At next stage I started to test
    First I tested it in local by URL http://webdispsvr:60000 it works and web browser views the ABAP login windows. From this point of the subject one thing that took my attention was, after pushing enter button for URL http://webdispsvr:60000 then it directly turns to address URL http://<localhost>.teidom.local:8000/sap/bc/gui/sap/its/webgui -- <localhost> is a host of where R3 ABAP system runs on (the address redirects to local address which is not wanted situation in the internet as long as it redirects to local URL address)
    Second test was in the internet
    Behaviour of the system is same nothing changed
    When I call URL http://teidom.com:60000, as it happens in local test, it redirects the URL to http://<localhost>.teidom.local:8000/sap/bc/gui/sap/its/webgui for this reason page could not be viewed when it is called from the internet.
    I hope above information is clear enough to get you understand how bad situation I am in.
    Isn’t there a way out of this struggle?
    Thanks all of you for your great contribution to the situation.
    Regards,
    Taner

  • Could not connect to backend system through portal via Web Dispatcher

    Web dispatcher redirecting problem
    Dear Experts,
    I have implemented a scenario which comprised of customizing that is developed in Portal EP7. What customizing does is getting report from backend system (ERP 6.0)
    According to the needs for reaching the portal from internet I configured the SAP Web Dispatcher in the environment as you may see its contents below.
    The problem is when I run the customizing in portal system then it requires connecting to backend system (ECC 6.0) to get the data (report). But from this point on web browser comes to a blank page, could not view the data that is from backend system via portal. Because in the time when it tries to retrieve data in backend system, on the left bottom of the explorer the indicator shows internet address that system uses connecting to the backend system as local network address of the backend system which is not known in internet therefore I get blank page.
    The question is how to configure the web dispatcher in a way that both portal and backend systems could be reachable from internet?
    Contents of profile file of Web Dispatcher as;
    SAPSYSTEMNAME = WDP
    SAPGLOBALHOST = portald
    SAPSYSTEM = 02
    INSTANCE_NAME = W02
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
    DIR_EXECUTABLE = $(DIR_CT_RUN)
    Accesssability of Message Server
    rdisp/mshost = portald
    ms/http_port = 8101
    Configuration for medium scenario
    icm/max_conn = 500
    icm/max_sockets = 1024
    icm/req_queue_len = 500
    icm/min_threads = 10
    icm/max_threads = 50
    mpi/total_size_MB = 80
    SAP Web Dispatcher Ports
    #icm/server_port_0 = PROT=HTTP,PORT=81$$
    SAP Web Dispatcher Ports
    icm/server_port_0 = PROT=HTTP,PORT=60000
    icm/HTTP/redirect_0 = PREFIX=/, TO=/irj/index.html
    icm/HTTP/redirect_0 = PORT=50000
    #maximum number of concurrent connections to one server
    wdisp/HTTP/max_pooled_con = 500
    wdisp/HTTPS/max_pooled_con = 500
    Configuration for medium scenario
    icm/max_conn = 500
    icm/max_sockets = 1024
    icm/req_queue_len = 500
    icm/min_threads = 10
    icm/max_threads = 50
    mpi/total_size_MB = 80
    Regards,
    Ali Taner

    Hi,
    To resovle this you must have registered FQDN for your backend system as well. When you call the report from Portal using internet it should call that FQDN of your backend system then DNS will resolve this & you will get the expected page. This way only you can resolve this issue.
    Thanks,
    Sachin Sable

  • Web dispatcher url Rewritting to several sap systems

    Hello SAP NW Community,
    we need a reverse Proxy to achieve   application of different SAP System via Internet. We desided to use web Dispatcher.
    The host names of sap systems should not be visible,  because of this we create the following URL Rewritting rules.
    For example:
    AAA, BBB and CCC are sap System SIDs;
    "wdisp.company.com" is the FQDN fron webdispatcher
    The "icm_filter" Looks like this:
    if% {HTTP_HOST} RegIMatch "wdisp.company.com"[and]
    If% {PATH} RegIMatch "AAA"
    RegIRewriteUrl ^/AAA/(.*)  /$1 [noescape]
    SetHeader x-sap-webDisp-target-sid AAA [break]
    the next rules are the same but for BBB and CCC.
    The idea is to rewrite in background all URLs such as:
    http(s)://wdisp.company.com/AAA/...
    to :
    http(s)://<FQDN from AAA>/...
    The result is always the same: the rewritting for AAA works fine but for BBB and CCC we get -http error 404.
    The results are independent from web browser(IE or Firefox).
    The http trace Tools- HttpWatch Basis or Firebug show also no rewritting  for BBB und CCC.
    According the documentation is web Dispatcher able to support  many "stateful" and "stateless"  connection to different backend sap System.
    Do you have any ideas why the rewritting works only for the first sap System?
    We tested with different browser and Browser sessions but the resul was the same.
    BR,
    Rumen

    Hi,
    Instead of PATH , use different pots like this, you can get the URL redirection,
    icm_filter.txt :
    if %{HTTP_HOST} regimatch wdhost.company.com* 
    SetHeader x-sap-webdisp-target-sid AAA [break]
    if %{HTTP_HOST} regimatch wdhost.company.com*
    SetHeader x-sap-webdisp-target-sid BBB [break]
    if %{HTTP_HOST} regimatch wdhost.company.com*
    SetHeader x-sap-webdisp-target-sid CCC [break]
    In Instance profile :
    wdisp/system_0 = SID=AAA,MSHOST= AAA.HostNane ,MSPORT=8111
    wdisp/system_1 = SID=BBB,MSHOST= BBB.Hostname ,MSPORT=8100
    wdisp/system_2 = SID=CCC,MSHOST= CCC.Hostname ,MSPORT=8101
    URL :
    http://wdhost.company.com:8111 --- goes to AAAhost and so on.
    regards
    Vagesan

  • Redirect web dispatcher to java nwa

    Hello all,
    Can you suggest me: how can I redirect from web dispatcher link host:port/ to  java link host:port/nwa
    I used:
    icm/HTTP/redirect_0 = PREFIX=/, TO=host:port/nwa
    icm/HTTP/admin_0 = PREFIX=/,DOCROOT=$(DIR_DATA)$(DIR_SEP)icmandir,AUTHFILE=$(icm/authfile),PORT=8100
    Thx
    Chris

    Hi Chris,
    Did you check this link?
    Examples
    Parameter Value
    Description
    icm/HTTP/redirect_0 = PREFIX=/, TO=/bc/bsp/demo/default.html
    Access attempts on "/" are redirected to "/bc/bsp/demo/default.html".
    icm/HTTP/redirect_0 = PREFIX=/, FROM=/mime/*,HOST=mimeserver, PORT=8080
    Only requests with specific URL patterns are redirected to HTTPS
    icm/HTTP/redirect_0 = PREFIX=/sap/bc/bex, FROMPROT=http, PROT=https, HOST=px155.sap.com
    Only requests with a specific URL are redirected to HTTPS
    icm/HTTP/redirect_0 = PREFIX=/, FROM=/sap*, FROMPROT=http, PROT=https, HOST=px155.sap.com
    Only specific HTTP requests are redirected to HTTPS
    icm/HTTP/redirect_0 = PREFIX=/, FROM=*, FROMPROT=http, PROT=https, HOST=px155.sap.com
    All HTTP requests are redirected to HTTPS
    icm/HTTP/redirect_0 = PREFIX=/, FROM=/mime/*,FOR=crm.sap.com*,HOST=crmserver, PORT=80
    Requests with the URL prefix /mime/ and the HTTP header field HOST that matches the pattern crm.sap.com:* are redirected to the server crmserver:80.
    icm/HTTP/redirect_&amp;lt;xx&amp;gt; - SAP Web Dispatcher - SAP Library
    THanks and Regards,
    Vimal

  • SAP Web Dispatcher URL /

    Can someone please explain how to get web dispatcher url for xi systerm. I am using production systerm px7 and want to if we can get web dispather url through some transaction.

    Hi,
    The answer is to use table HTTPURLLOC to tell your WAS that a Web dispatcher exists and that it should generate URLs using the web dispatcher host.
    The big problem is when some people need access from a remote place thru a web dispatcher and others are on site and can't use the web dispatcher which is in a DMZ.
    The web application lauched via sapgui will work either from the distant site or the local site but not from both sites together...
    Check the wiki   [Using Reverse proxies with SAP software|https://wiki.sdn.sap.com/wiki/display/BSP/Using+Proxies] for excellent information on HTTPURLLOC and your question.
    Regards,
    Olivier

Maybe you are looking for

  • QTpro no longer working with WMV3 video

    Has anything changed with QT that would prevent me from working with video that is WMV3 video and WMA2 stereo? I worked with several files of this format in October of 2008 and saved them to my MacBook only to find today that QTpro (v.7.6) tells me t

  • IPod shuffle cannot be read

    Hi! Major problems with my (now second) iPod shuffle. ITunes says it cannot read it (but it does detect it and shows it with my name). I have deinstalled iTunes a thousand times, deleted old iTunes fragments from my hard drive, reset my iPod a millio

  • Size of batch

    Dear experts Can we increase size of Batch,current size of Batch is 10chracters.I there any customisation setting for the same, Regards Sandeep

  • Offline Adobe Interactive Form Upload options - CRM 2007 sp4

    CRM 2007 sp 4 Adobe Interactive Forms requirement We intend to develop an Offline Adobe Interactive form which we are going to pass to Outlook through Groupware Integration to represent a customer visit to enable our sales people to record customer v

  • Update app transfer my data

    why my lumia 1520 cannot update this app transfer my data...pls help anyone what should i do, coz after download 3mb its turn attention required..