Configuring VirtualHost (or) ReWrite rule for Tomcat

Dear All,
I am facing issue while configuring VirtualHost (or) ReWrite rule for below requirement in Tomcat.
Please Advise.,
We are configuring F5 in front of GRC controls so that if we accessed http://grc.company_name.com it should redirect to http://<server_name>:port/grc
We are able to configure F5 URL successfully with Tomcat (i.e.,)
Accessing https://grc.company_name.com is redirecting to aapche tomcat page of GRC & we need the URL https://grc.company_name.com should redirect to https://grc.company_name.com/grc
Thanks All,
Sunil.

Sunil,
Have a look at My Oracle Support Note ID: 881362.1 - AACG 8.x: Is HTTPS supported for AACG UI and PEA Component?(Prod 4527 Comp Install)
I hope that helps.

Similar Messages

  • Apache Rewrite rule for all backend systems?

    Dear all,
    Could anyone, write and give me the extact working rewrite rule in apache 2.0 for backend systems like R/3 and BW, ICH.
    Paths for bakend systems are as follows.
    R/3= http://r3server.compny.domain.com:r3port/sap/bc/gui/sap/its
    BW= http://bwserver.compny.domain.com:bwport/sap/bw/BEx
    (SSL configured in ICH)
    ICH=http://ichserver.compny.domain.com:ichport/sap/bc/bsp
    Kindly provide the above rules
    Rgds
    PRadeep

    Dear all,
    Could anyone, write and give me the extact working rewrite rule in apache 2.0 for backend systems like R/3 and BW, ICH.
    Paths for bakend systems are as follows.
    R/3= http://r3server.compny.domain.com:r3port/sap/bc/gui/sap/its
    BW= http://bwserver.compny.domain.com:bwport/sap/bw/BEx
    (SSL configured in ICH)
    ICH=http://ichserver.compny.domain.com:ichport/sap/bc/bsp
    Kindly provide the above rules
    Rgds
    PRadeep

  • Rewrite Rules for Active X

    I would like write rewriting ruleset for an ActiveX application... this the html
    <object width=100% height=100% classid="CLSID:1EE104B2-B32A-43d2-8DF1-2FD84BD00B14"
    codebase="/wi/ActiveX/WIPanelXIT.cab#Version=5,1,4,33">
    <param name=Cookie value="ITwGzbHZkSQT0">
    <param name=CacheKey value="c0">
    <param name=RepositoryID value="13">
    <param name=UniverseName value="Extracom">
    <param name=UniverseID value="70">
    <param name=HostURL value="/wi/bin/iswi.dll">
    <param name=ResultsPageURL value="http://mydomain/docViewFrameTop.asp">
    <param name=AllowRefresh value="-1">
    <param name=AllowLOVRefresh value="-1">
    <param name=AllowViewSQL value="-1">
    <param name=AllowDrill value="-1">
    </object>
    I need that the gateway rewrites only the parameters ResultsPageURL and HostURL. The rewrite is applied only to the tag codebase.
    With Portal Sun 3.0 I have implemented the rules but the ActiveX application doesn't work. Someone have a similar problem with ActiveX? Any suggestion?
    Thank you in advance.
    Best Regards
    Fausto

    Thanks a lot Jay. Everything is working fine.
    I managed to make things work following your advice but without calling tech support.
    I am using mailEquivalentAddress attributes for users with domain.nl addresses. In our case, some users have domain.com AND domain.nl addresses while others only have the domain.com.
    All rewriting works like a charm. I have set up noreverse on channels to forbid rewriting of "from" addresses, and the mailEquivalentAddress attributes deny rewriting of the "to" when mail is sent to these particular users.
    Could you explain why the noreverse is discouraged? Would there be a rewriting rule that would do the same?
    I can see reasons why not having rewriting would be an issue. If I find a solution to not having something as "strict" as the noreverse, I will indeed go in that direction.
    Thanks again for your help.
    Hyde

  • URL Rewrite Rule: HTTP to HTTPS Not Working

    Here is my problem. I cannot get HTTP to HTTPS redirect to work using the URL Rewrite module. I am using version 2, by the way, which I understand is the latest version. I've also enabled the "Proxy Server" and Application Request Routing"
    features.
    I've trolled through the Internet for 2 days now for solutions to my problem, including the ones provided by the TechNet forums and by MVP Scott Forsyth. I've tried over 30 solutions, and none have resolved my issue. Granted some of the solutions I've tried
    may have been repeats of others. After trying so many, I have had a hard time discerning the differences. Does it really matter, for instance if the pattern match for the {HTTPS} input is specified as
    "^off$" or just "off"? I see this discrepancy (among others) everywhere. It seems like there are so many variations out there. It is quite confusing for the uninitiated and the newbies like myself to the
    URL Rewrite technology. I have enabled and consulted my "Failed Request Tracing Rules" logs but cannot make any sense of the cryptic information it is providing.
    I just cannot get my reverse proxy server to redirect http requests from the Internet to https to my internal web server. When a user specifies "https://server1.xxxxx.com". he is able to access the internal server via the reverse proxy (IIS) server.
    But when he specifies "http://server1.xxxxx.com" he receives "Server Error 500 - Internal server error.There is a problem with the resource you are looking for, and it cannot be displayed."
    At this point I am at my wits end, and am even considering configuring the protocol translation on our firewall. But this not my preference as it presents another layer of complexity, and device to troubleshoot later on. Below I've pasted my entire web.config
    file with my most current version of the rule in question (in bold) for your review. I started to paste just the specific rule, but thought you might need to see the entire file in case something else may be conflicting with the rule.
    Thank you in advance for your help.
    Dave Robinson
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <rewrite>
                  <rules>
                    <clear />
    <rule name="HTTP to HTTPS Redirect" enabled="true" stopProcessing="true">
                    <match url="(.*)" />
                   <conditions>
                      <add input="{HTTPS}" pattern="off" />
                    </conditions>
                      <action type="Redirect" url="https://{HTTP_HOST}/{REQUEST_URI}" redirectType="Found" />
                    </rule>
    <rule name="ReverseProxyInboundRule1" stopProcessing="true">
                        <match url="(.*)" />
                        <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                            <add input="{CACHE_URL}" pattern="^(https?)://" />
                        </conditions>
                        <serverVariables>
                            <set name="HTTP_X_ORIGINAL_ACCEPT_ENCODING" value="{HTTP_ACCEPT_ENCODING}" />
                            <set name="HTTP_ACCEPT_ENCODING" value="" />
                    </serverVariables>
                        <action type="Rewrite" url="{C:1}://server1.xxxxx.com/{R:1}" />
                    </rule>
                </rules>
                <outboundRules>
                    <rule name="RestoreAcceptEncoding" preCondition="NeedsRestoringAcceptEncoding">
                    <match serverVariable="HTTP_ACCEPT_ENCODING" pattern="^(.*)" />
                    <action type="Rewrite" value="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" />
                    </rule>
                    <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
                        <match filterByTags="A, Form, Img" pattern="^http(s)?://server1.xxxxx.com/(.*)" />
                        <action type="Rewrite" value="http{R:1}://server1.xxxxx.local/{R:2}" />
                    </rule>
                    <preConditions>
                        <preCondition name="ResponseIsHtml1">
                            <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                        </preCondition>
                        <preCondition name="NeedsRestoringAcceptEncoding">
                            <add input="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" pattern=".+" />
                        </preCondition>
                    </preConditions>
                </outboundRules>
            </rewrite>
            <tracing>
                <traceFailedRequests>
                    <add path="*">
                        <traceAreas>
                            <add provider="ASP" verbosity="Verbose" />
                            <add provider="ISAPI Extension" verbosity="Verbose" />
                            <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,WebSocket"
    verbosity="Verbose" />
                        </traceAreas>
    <failureDefinitions timeTaken="00:00:00" statusCodes="404" />
                    </add>
                </traceFailedRequests>
            </tracing>
            <httpErrors errorMode="Custom" />
            <httpRedirect enabled="false" destination="" exactDestination="false" childOnly="false" httpResponseStatus="Permanent" />
        </system.webServer>
    </configuration>

    On Wed, 28 Jan 2015 17:53:41 +0000, dwrobins2000 wrote:
    Here is my problem. I cannot get HTTP to HTTPS redirect to work using the URL Rewrite module. I am using version 2, by the way, which I understand is the latest version. I've also enabled the "Proxy Server" and Application Request Routing"
    features.
    Web/IIS related issues are better posted where the IIS experts are:
    http://forums.iis.net
    Paul Adare - FIM CM MVP
    "The equivalent of treating dandruff by decapitation"
    -- Frank Zappa on the Parents Music Resource Center' censorship plans

  • How to create rewrite rule to accept only mail pass from antivirus server

    I want to set JES messaging 6.0 to accept only mail that scaned from antivirus server. If clients send direct to messaging server it will forward that mail to antivirus server. After mail was scaned it is sent to messaging server and messaging server accept it.
    How to create rewrite rule for this case?

    Please read this technical note, for setting up such a configuration:
    http://ims.balius.com/downloads/AlternateConversion.pdf
    Please note, this site contains some other very useful information for Messaging Server, but IE browsers are NOT supported. You must use some other browser.

  • Changing sender email address via rewriting rules

    My objective is to change my sender email address. For example, suppose my OCS email address is [email protected] and I would to send an email to [email protected]
    John logs into yahoo mail and would see my mail. Upon opening my email, I would like John to see that the sender email address to be [email protected] so that whenever John replies my mail, the replied mail would go to [email protected] and not to [email protected]
    I read the email admin guide and I configure the Sender rewriting rules within SMTP_OUT. I have key in the following within the Sender rewriting rules: $*@test.abc.com.my,$[email protected]
    I restart the SMTP_OUT services and I check the log files in MIDTIER_HOME/oes/log/um_system/SMTP_OUT/12345
    I found out that the rewriting rules have take effect on one of the lines.
    Then I log into OCS as user Andrew with test.abc.com.my domain and send an email to yahoo.
    I open my yahoo mail, which I receive the email.
    However the sender email address remains unchanged which is [email protected]
    How can I change the sender email domain?
    thanks;
    andrew

    Your observation is very correct in terms of symptoms, not of behaviour. We have numerous ER's there enabling header rewriting, too. Obviously for you, envelope rewriting works well, without to achieve the target you want to address. Please forward your request to Support Services with an Enhancement Request for native header rewriting.
    Otherwise 3 ways:
    1 Milter C-SDK
    2 Milter general
    3 relay accomplishing this task.
    On 2,3 we have samples ready, for 3 in particular for postfix.

  • Rewrite rule and dinamic group

    I have put the rewrite rule
    domain.com $A$E$F$[email protected]
    In Java Enterprise System.
    This way, mails send to or from [email protected] are routed to mailhost and that is ok, but when I send a mail to a dinamic group, the message is not sent.
    the command imsimta test -rewrite [email protected] reports this at the end:
    Address list error -- 5.1.1 unknown or illegal alias: [email protected]
    What could be happening?
    Thanks,

    Your original rule is not the best way to go about routing to "domain.com"
    I would start by removing that rule.
    Then I would look at what you're really trying to do, here.
    If you're trying to route mails to users that are in your ldap server, then they should be automatically routed, based on the value of "mailhost" you're put in for them.
    If you're trying to route users that are not in your ldap, then you need to create a
    domain smarthost
    documentation in our provisioning guide, here:
    http://docs.sun.com/source/816-6018-10/domains.htm#29147
    Using rewrite rules for routing outside the MTA is a Bad Idea, as you've found.

  • Oracle Forms  rewrite rules

    Any one know if/how you can create rewrite rules for forms. Here is what i have: https://xxxx.xxxx.edu/forms/frmservlet?config=demo --- here is what i would like to type in to get it. https://xxxx.xxxx.edu/demo
    Thanks for the help.

    sounds like you just want a plain old rewrite rule. The fact that the destination is a forms servlet doesn't matter
    RewriteCond %{REQUEST_URI} ^/demo
    RewriteRule ^/forms/frmservelt?config=demo [L,R]
    or you could rewrite to a page & in the page have a redirect. That would let you have extra parameters. I can't remember if ? or & are a valid characters in httpd.conf

  • Warning: No patterns found. Skipping rewrite rules creation for Meet simple URLs.

    Hi 
    It feels like a have tested the most that I can Google, but im new on Lync..
    I have a lync multitennant 2013 server.
    But when I run enable-cscomputer I get the following
    WARNING: No patterns found. Skipping rewrite rules creation for Meet simple URLs.
    WARNING: No patterns found. Skipping rewrite rule creation for dial-in conferencing.
    WARNING: No patterns found. Skipping rewrite rule creation for Web Scheduler.
    WARNING: No patterns found. Skipping rewrite rule creation for dial-in conferencing.
    WARNING: No patterns found. Skipping rewrite rule creation for Web Scheduler.
    WARNING: "Enable-CsComputer" processing has completed with warnings. "5" warnings were recorded during this run.
    WARNING: Detailed results can be found at "C:\Users\xxx\AppData\Local\Temp\Enable-CsComputer-26374787-f6b5-4a07-b8f4-7bd819d3ffc3.html".
    Im not sure what to test? And what to do to verify that the settings is correct. Im new on Lync.. So all tips are greatly appreciated.

    To set the DNS name for the simple URL for multitenant Lync Server, run the following cmdlets:
    $BaseURL = "https://meet.litwareinc.com/"
    set-CsProvisionServiceConfiguration -SimpleUrlDnsName $BaseURL
    To verify that the DNS name was set, run the following cmdlet:
    (Get-CsProvisionServiceConfiguration).SimpleUrlDNSName
    The following is a similar thread you can refer to:
    http://social.technet.microsoft.com/Forums/lync/en-US/dfa064d8-5c53-4a69-aecd-ffe487a353d1/lync-meet-now-not-working
    Lisa Zheng
    TechNet Community Support

  • Configuring reconciliation rule for AD

    Hello everyone,
    I have to configure Reconciliation rule for AD where i have to match user login at OIM side to Manager value at AD side. As manager is dn on AD side, how can i compare both the values. Is there any way to spilit the dn to find out the cn value before reconciliation rule will run? How does the tranform feature provided under rule element will work? If anybody came across this scenerio and got any resolution please share.
    TIA

    I have a doubt here..please clear if i am able to sucessfully explain...in reconcilliation action we wrote that "No Match Found" --> "create User". it is working fine (for me it is Sun LDAP on other side)..but issue is that when it create a user in OIM...under resource profile no resource is coming as attached...then how can one knows that this user already had a profile in LDAP and need not created a new one and also we cannot provision the same user to LDAP as it is already there...means we cannot link these two user profiles (OIM and LDAP one)....but for feasible scenerion it should be...can anyone tell me where i am wrong and what other configuration needs to be done if it is a feasible scenerion..

  • Apache Reverse rule for BSP applicaiton to run in Portal

    Dear Expert,
    In my portal lanscape we are using reverse proxy and have written some re-write rule in conf file.
    All my application other than BSP's are working fine..i am not able to figure it out as what went wrong in my reverse proxy rule
    for BSP applicaiton...can any one help me please..?
    My reverse proxy rule is as follows -
    <VirtualHost XX.XX.XX.XX:443>
        ServerAdmin webmaster@MDCLINUXHYPERV
        ServerName etenderqua.harmony.co.in
        DocumentRoot /var/www/html/ssl/irj
        ProxyRequests Off
        ProxyPreserveHost On
        ProxyVia on
        ProxyTimeout 900
        RequestHeader set ClientProtocol https
        RewriteEngine On
        RewriteLogLevel 9
    Portal Rewrite Rules -
        RewriteRule ^/(irj\(.*) http://mdcqa7.hardev.com:50000/irj/$1 [P,L]
        RewriteRule ^/(webdynpro\(.*) http://mdcqa7.hardev.com:50000/webdynpro/$1 [P,L]
        RewriteRule ^/(logon\(.*) http://mdcqa7.hardev.com:50000/logon/$1 [P,L]
        RewriteRule ^/(rtmfCommunicator\(.*) http://mdcqa7.hardev.com:50000/rtmfCommunicator/$1 [P,L]
    SRM Rewrite Rules -
        RewriteRule ^/(cfol1\(.*) http://mdcqa3.hardev.com:8000/cfol1/$1 [P,L]
        RewriteRule ^/(sap\(.*) http://mdcqa3.hardev.com:8000/sap/$1 [P,L]
        RewriteRule ^/(webdynpro\(.*) http://mdcqa3.hardev.com:8000/webdynpro/$1 [P,L]
        RewriteRule ^/(rtmfCommunicator\(.*) http://mdcqa3.hardev.com:8000/rtmfCommunicator/$1 [P,L]
      RewriteRule ^/(srm7\(.*) http://mdcqa3.hardev.com:8000/srm7/$1 [P,L]
      RewriteRule ^/(zbidder\(.*) http://mdcqa3.hardev.com:8000/zbidder/$1 [P,L]
    ECC Rewrite Rules -
        RewriteRule ^/(ecc\(.*) http://mdcqa1.hardev.com:8000/ecc/$1 [P,L]
        RewriteRule ^/(sap\(.*) http://mdcqa1.hardev.com:8000/sap/$1 [P,L]
        RewriteRule ^/(webdynpro\(.*) http://mdcqa1.hardev.com:8000/webdynpro/$1 [P,L]
        RewriteRule ^/(rtmfCommunicator\(.*) http://mdcqa1.hardev.com:8000/rtmfCommunicator/$1 [P,L]
    BI Rewrite Rules -
        RewriteRule ^/(bi\(.*) http://mdcqa5.hardev.com:8000/bi/$1 [P,L]
        RewriteRule ^/(sap\(.*) http://mdcqa5.hardev.com:8000/sap/$1 [P,L]
        RewriteRule ^/(webdynpro\(.*) http://mdcqa5.hardev.com:8000/webdynpro/$1 [P,L]
        RewriteRule ^/(rtmfCommunicator\(.*) http://mdcqa5.hardev.com:8000/rtmfCommunicator/$1 [P,L]
    SSL Configuration -
        SSLEngine on
        SSLCipherSuite ALL:!ADH:!EXPORT56:RC4RSA:HIGH:MEDIUM:LOW:SSLv2:EXP:+eNULL
        SSLCertificateFile /etc/pki/tls/certs/etender.crt
        SSLCertificateKeyFile /etc/pki/tls/certs/etender.key
    Portal Proxy Pass Rules -
    ProxyPass /irj http://mdcqa7.hardev.com:50000/irj
        ProxyPassReverse /irj http://mdcqa7.hardev.com:50000/irj
        ProxyPass /webdynpro http://mdcqa7.hardev.com:50000/webdynpro
        ProxyPassReverse /webdynpro http://mdcqa7.hardev.com:50000/webdynpro
        ProxyPass /logon http://mdcqa7.hardev.com:50000/logon
        ProxyPassReverse /logon http://mdcqa7.hardev.com:50000/logon
        ProxyPass /rtmfCommunicator http://mdcqa7.hardev.com:50000/rtmfCommunicator
        ProxyPassReverse /rtmfCommunicator http://mdcqa7.hardev.com:50000/rtmfCommunicator
    SRM Proxy Pass Rules -
        ProxyPass /sap http://mdcqa3.hardev.com:8000/sap
        ProxyPassReverse /sap http://mdcqa3.hardev.com:8000/sap
        ProxyPass /cfol1 http://mdcqa3.hardev.com:8000/cfol1
        ProxyPassReverse /cfol1 http://mdcqa3.hardev.com:8000/cfol1
       ProxyPass /srm7 http://mdcqa3.hardev.com:8000/srm7
       ProxyPassReverse /srm7 http://mdcqa3.hardev.com:8000/srm7
       ProxyPass /zbidder http://mdcqa3.hardev.com:8000/zbidder
       ProxyPassReverse /zbidder http://mdcqa3.hardev.com:8000/zbidder
        ProxyPass /webdynpro http://mdcqa3.hardev.com:8000/webdynpro
        ProxyPassReverse /webdynpro http://mdcqa3.hardev.com:8000/webdynpro
        ProxyPass /rtmfCommunicator http://mdcqa3.hardev.com:8000/rtmfCommunicator
        ProxyPassReverse /rtmfCommunicator http://mdcqa3.hardev.com:8000/rtmfCommunicator
    ECC Proxy Pass Rules -
        ProxyPass /ecc http://mdcqa1.hardev.com:8000/ecc
        ProxyPassReverse /ecc http://mdcqa1.hardev.com:8000/ecc
        ProxyPass /sap http://mdcqa1.hardev.com:8000/sap
        ProxyPassReverse /sap http://mdcqa1.hardev.com:8000/sap
        ProxyPass /webdynpro http://mdcqa1.hardev.com:8000/webdynpro
        ProxyPassReverse /webdynpro http://mdcqa1.hardev.com:8000/webdynpro
        ProxyPass /rtmfCommunicator http://mdcqa1.hardev.com:8000/rtmfCommunicator
        ProxyPassReverse /rtmfCommunicator http://mdcqa1.hardev.com:8000/rtmfCommunicator
    BI Proxy Pass Rules -
        ProxyPass /bi http://mdcqa5.hardev.com:8000/bi
        ProxyPassReverse /bi http://mdcqa5.hardev.com:8000/bi
        ProxyPass /sap http://mdcqa5.hardev.com:8000/sap
        ProxyPassReverse /sap http://mdcqa5.hardev.com:8000/sap
        ProxyPass /webdynpro http://mdcqa5.hardev.com:8000/webdynpro
        ProxyPassReverse /webdynpro http://mdcqa5.hardev.com:8000/webdynpro
        ProxyPass /rtmfCommunicator http://mdcqa5.hardev.com:8000/rtmfCommunicator
        ProxyPassReverse /rtmfCommunicator http://mdcqa5.hardev.com:8000/rtmfCommunicator
    Error Logs -
        ErrorLog logs/qua.portal.domain.com-error_log
        CustomLog logs/qua.portal.domain.com-access_log common
        RewriteLog logs/qua.portal.domain_unsecured_rewrite.log
    </VirtualHost>

    Dear Keseli,
    Now..i am facing one more issue...
    My rules are as follows : -
    SRM Rewrite rule -
    RewriteRule ^/(sap\(.*) http://mdcqa5.hardev.com:8000/sap/$1 P,L
    ProxyPass /sap http://mdcqa5.hardev.com:8000/sap
    ProxyPassReverse /sap http://mdcqa5.hardev.com:8000/sap
    BI Rewrite Rule -
    RewriteRule ^/(sap\(.*) http://mdcqa7.hardev.com:8000/sap/$1 P,L
    ProxyPass /sap http://mdcqa7.hardev.com:8000/sap
    ProxyPassReverse /sap http://mdcqa7.hardev.com:8000/sap
    these rules are written under the same Virtual Host, we are using only one virtual host .From our analysis we knew that the reverse proxy read this file from the starting as as soon as it find the pattern at the left side of the rule it simply directs the request to URL right hand side.
    My issue is, since we have created BSP services in SRM and BI...it always directs the request to the matching pattern given in the first occrences.
    In the above example it always directs the call to the SRM bsp..never reaches to BI.
    Can you suggest us any way out..?

  • URL Rewrite Rules in 10.1.4

    Hi,
    I am having some trouble rewriting the urls, I can't make it work ...
    What I want is to change the url:
    http://www.mycompany.com/portal/page/portal/portal_sverige/
    to
    http://www.mycompany.com/sverige
    Where "portal_sverige" is the page group.
    What I did was:
    Configure the properties in the page group:
    Search pattern: /portal/page/portal/portal_sweden/
    Replace pattern: /sweden/
    And I went to enterprise manager, MT, http server, administration, advanced server properties, httpd.conf, and put in the lines:
    RewriteEngine On
    RewriteRule ^/sweden/(.*)$/portal/page/portal/portal_sweden/$1 [PT]
    However, when I try to use navigator to edit a page in that group, I get:
    http://www.mycompany.com/sweden/pagename?_mode=16
    Returns:
    Object not found. (WWC-50003)
    And just typing in www.mycompany.com/sweden returns 404 error instead of the root page as I would have liked.
    Any ideas about what to do? I can't really find any information ... is the change made in the MT ? IM ? Do I have to do it in some specific order? Is the syntax wrong?
    Appreciate any help, thanks

    Hello Sayeeas,
    I posted an answer to this question a couple months back... check out the thread
    Re: Portal URL Rewrite
    Here is the answer:
    In this example the name of the page group is "www":
    Our rewrite rule is also set up in a virtual host section of the httpd.conf file as well so some of the options may not be required for your set up:
    RewriteEngine on
    RewriteOptions inherit
    RewriteCond %{REQUEST_URI} !^/(portal|pls|images).*$
    RewriteRule ^(.+) /portal/page/portal/www$1 [PT]
    The rewrite condition allows us to ignore the rewrite for certain items in the path. This allows the portal navigator to work. There may be a couple more items that need to be added to the condition because I recently noticed that the help pages dont function properly.
    In the portal configuration for the rewrite rule we specify:
    Search pattern: /portal/page/portal/www
    Replace pattern:
    Thats right, the replace pattern is blank.
    To see it in action check out http://www.sagelogix.com
    -sean
    Solutions Architect
    http://www.sagelogix.com

  • Delivery Rules for Publications (Bo XI 3.1)

    HI,
    I have a report and would like to send it to recipients only when a condition is true( Report variable > 1). So i have used publications and set a Document delivery rule on a Report Variable.
    For Example  Condition: <Report variable> > 1
    Is it  a correct Syntax ? Because when i set this rule, publication gets succes but Log says publication delivery rule failed and can't distrubute the document.
    If i give some irrelevant syntax in delivery rule, still publications get succes and log says publication delivery rule failed and can't distrubute the document
    So iam confused,
    what is correct syntax ??
    Do we need to use only universe Objects in Document Delivery rules section ?
    2009-07-24 17:17:04,296 INFO  [pool-4-thread-8] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - Running publication instance.
    2009-07-24 17:17:04,390 INFO  [pool-4-thread-8] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - The global delivery rule for this publication was met; publication processing will now begin.
    2009-07-24 17:18:00,860 WARN  [PublishingService:HandlerPool-47] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - Unable to find any distributable documents in scope batch with ID 6,205.  Please check your publication configuration and ensure that the CMS is running. (FBE60016)
    2009-07-24 17:18:00,891 INFO  [PublishingService:HandlerPool-47] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - Publication delivery rule failed on document with ID 6,049 for scope 1 in scope batch with ID 6,205.  Artifacts generated from this document will not be distributed to user Administrator with ID 12.
    2009-07-24 17:18:00,907 WARN  [PublishingService:HandlerPool-47] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - Unable to find any distributable documents in scope batch with ID 6,205, scope 1. (FBE60034)
    2009-07-24 17:18:01,032 INFO  [pool-4-thread-8] BusinessObjects_PublicationAdminLog_Instance_6200 - [Publication ID # 6200] - Publication scheduling complete.
    Thanks
    -Satish
    Edited by: satish_chikla on Jul 27, 2009 9:36 AM
    Edited by: satish_chikla on Jul 27, 2009 9:41 AM

    Your questions indicate that you are not familiar with XI3.1 architecture and Servers/services involved.
    Do you have an administrator who is familiar with the Product ?
    Otherwise you need to review Admin guide for XI3.1 to get familiar with the concepts and architecture of the product.
    All patching of XI3.x products on the server should be done by windows Administrator or user with Admin priveledges, preferably same user that was used to install the product.
    Inst guide says we need to stop all the services except CMS...what does that mean ?
    This means that you have to go to CCM and click on Manage servers, login into system and stop all servers except CMS (Central Management Service).
    Except Tomcat service in CCM ?
    Tomcat is an Application server, it host/serves Web applications used by our product, like Infoview or CMC.
    Should i stop SIA as well ?
    If you stop SIA, then all XI services will be stopped. Including CMS.
    Let me ask you a question - is your XI3.1 installation functioning ? (Can you login into Infoview or CMC ? Run sample reports ?)

  • Rewrite rules: how to forward all mails to the specific channel?

    I have written an anti-virus plugin using the MTA SDK. Now I want to forward all the incoming messages to the channel, which is 'guarded' by my program (so my program is the channel's master).
    I've added following to the end of imta.cnf, according to MTA SDK example:
    ! kav
    x-kav master_debug logging
    x-kav-daemon
    And at the beginning of imta.cnf:
    avp.ru $U%avp.ru@x-kav-daemon$Nx-kav
    avp.ru $[email protected]
    In this configuration, any incoming mail just miss my channel completely.
    I changed it to this one:
    $* $U%avp.ru@x-kav-daemon$Nx-kav
    <2nd line removed>
    in this case, mail is sent to our channel, but has host part '$*', and the message is failed to enqueue.
    Also, it seems like this reqrite entry conflicts with ours:
    ! Rules to select local users
    $* $A$E$F$U%$H$V$[email protected]
    ultra5.avp.ru $U%$[email protected]
    avp.ru $U%$[email protected]
    As I understand, according to these rules, everything goes to @avp.ru or @ultra5.avp.ru goes to the local delivery channel ultra5.avp.ru. This is not what I want.
    So, the questions are:
    1. How to move all the messages (or just messages. which matched the specific domain) into my channel?
    2. How to configure rewrite rules, so the message can leave the channel after processing, and continue the routing?

    Still doesn't work.
    We've downloaded and installed patch 116568-52, and configured the channels:
    tcp_local aliasdetourhost tcp_scan smtp mx single_sys remotehost inner switchchannel identnonenumeric subdirs 20 maxjobs 7 pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel tcp_auth missingrecipientpolicy 0
    tcp-daemon
    ! tcp_intranet
    tcp_intranet aliasdetourhost tcp_scan smtp mx single_sys subdirs 20 dequeue_removeroute maxjobs 7 pool SMTP_POOL maytlsserver allowswitchchannel saslswitchchannel tcp_auth missingrecipientpolicy 4 tcp_intranet-daemon
    tcp_scan smtp mx single_sys subdirs 20 noreverse maxjobs 7 pool SMTP_POOL dequeue_removeroute
    tcp_scan
    After sending the message, it silently goes to tcp_scan channel, and handled by channel master program. After that the message stays in tcp_scan queue forever, with HELD extension.
    Our channel master enqueues the processed message into the channel where it dequeues it, so the message seems to be looped. Here is the message:
    t;1093881341
    p;3
    *;4
    u;mailsrv
    c;tcp_scan
    s;tcp_scan.ultra5.avp.ru
    n;f
    h;<[email protected]>
    m;[email protected]
    d;20
    j;rfc822
    f;[email protected]
    @tcp_scan:[email protected]
    ..Boundary_(ID_+ko348xG8vRKcadifuDhJg)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:41 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from tcp_scan.ultra5.avp.ru by ultra5.avp.ru
    (Sun Java System Messaging Server 6.1 HotFix 0.01 (built Jun 24 2004))
    id <[email protected]> for [email protected] (ORCPT [email protected]
    30 Aug 2004 19:55:40 +0400 (MSD)
    Received: from localhost.localdomain ([172.16.0.35])
    by ultra5.avp.ru (Sun Java System Messaging Server 6.1 HotFix 0.01 (bu
    24 2004)) with ESMTP id <[email protected]> for test@avp.
    (ORCPT [email protected]); Mon, 30 Aug 2004 19:55:39 +0400 (MSD)
    Content-return: allowed
    Date: Mon, 30 Aug 2004 19:55:39 +0400 (MSD)
    Date-warning: Date header was inserted by ultra5.avp.ru
    From: [email protected]
    Subject: sent on Mon Aug 30 19:58:29 2004
    To: Undisclosed recipients: ;
    Message-id: <[email protected]>
    ..Boundary_(ID_+ko348xG8vRKcadifuDhJg)
    How to avoid this loop? Should our master enqueue the processed messages into another channel? If yes, what channel should we enqueue to? If no, how to avoid this loop?

  • IP-specific MTA rewrite rule

    Hello,
    I'm having a lot trouble understanding how to configure the iMS 6.2 MTA to do my will. I've read the MTA sections in the Messaging Server Administration Guide and still it seems that when I try to implement a rewrite rule, it doesn't work the way I thought it would.
    So with that preface, I'd like to ask:
    1) What would an imta.cnf rule look like that would route all incoming messages from a server at an IP (say 1.2.3.4) to a specific channel (say tcp_scan)?
    2) Does anyone know of any good (or even marginal) books or other resources for learning how to program the iMS MTA?
    Thank you,

    Yes, there's a book on iMS. You can get it on amazon.com.
    check out the unofficial page at:
    http://ims.balius.com
    as well.
    No, you can't use a rewrite rule to route based on source ip.
    You can use mapping file and channels for much of that. Far better to help me understand what your goal is, rather than for you to try to solve your problem by the wrong route....

Maybe you are looking for