Removing the "irj" part

Hi,
We have changed our portal start URL (running SSL) from "https://host.domain.com:50003/irj" to "https://xyz.domain.com/irj", via firewall/certificate/etc. settings and now we want to get rid of the "irj" part in the URL, so the final URL starting the portal should be "https://xyz.domain.com".
We tried to enter "irj" in the "Start Page" parameter for the http service (tab "Runtime") in the J2EE engine admin tool, but this did not help.
Do you have any ideas on how to be able to start the portal without having to enter "irj" at the end of the URL?
Thanks in advance!
David

Hi David,
please check those two threads:
How to map www.webadd.com/irj to www.webadd.com
and
Re: alias in the portal
Best regards,
Robert

Similar Messages

  • How to crop a photo to remove the middle part

    How do I crop a photo so that I can keep the sides of the photo but remove the middle part.

    You do not want to crop.  Sound more like you want to cut and paste and move areas.
    crop (krp)
    n.
    1.
    a. Cultivated plants or agricultural produce, such as grain, vegetables, or fruit, considered as a group: Wheat is a common crop. 
    b. The total yield of such produce in a particular season or place: an orchard that produced a huge crop of apples last year.
    2. A group, quantity, or supply appearing at one time: a crop of new ideas.
    3. A short haircut.
    4. An earmark on an animal.
    5.
    a. A short whip used in horseback riding, with a loop serving as a lash. 
    b. The stock of a whip.
    6. Zoology
    a. A pouchlike enlargement of a bird's gullet in which food is partially digested or stored for regurgitation to nestlings. 
    b. A similar enlargement in the digestive tract of annelids and insects.
    v. cropped, crop·ping, crops
    v.tr.
    1.
    a. To cut or bite off the tops or ends of: crop a hedge; sheep cropping grass. 
    b. To cut (hair, for example) very short.
    c. To clip (an animal's ears, for example).
    d. To trim (a photograph or picture, for example).
    2.
    a. To harvest: crop salmon. 
    b. To cause to grow or yield a crop.
    v.intr.
    1. To feed on growing grasses and herbage. 
    2. To plant, grow, or yield a crop.
    Phrasal Verb:
    crop up
    To appear unexpectedly or occasionally: "one of the many theories that keep cropping up in his story" (Christopher Lehmann-Haupt). 

  • My adapter got broken. How do I remove the broken part that is stuck in the AC port?

    My laptop is HP Pavilion DV 6700

    So the barrel part that plugs in the hole broke off down inside? The only way I know to get that is with very fine needle nose pliers. You have got to get a grip on the edge of the barrel. The ac adapter jack in the laptop can be replaced separate from the motherboard if all else fails.

  • Removing the .local part of my host name.

    I can figure out how to remove .local from my servers host name. I am running a simple personal server so I don't have a domain of my own.
    It hasn't been an issue, but recently I have started trying to run the SlimDevice Server on my OSX Server.
    Anyhelp would be greatly appreciated. I'm hoping I don't have to restart.
    -Hays

    Not having or creating a DNS presence resorts to the use of .local domains for simplified network discovery. I you do not want to use .local domains, configure DNS on the server. You do not need to use a valid domain unless you are hosting mail (assuming you are not based on description of .local use). Simply create something that will not conflict with existing TLDs such as myserver.int or myserver.osx. Basically you will need to create a zone and an A record (with PTR auto-create checked). Test name and number resolution with nslookup and then configure your server to query itself.
    You will likely need to use the changeip command but if your services are few then you can probably ignore the two errors every few minutes in system log.
    Hope this helps

  • Can I remove the Faces part of iPhoto in Lion 10.7.2?

    I have been transfering phots using DVD disks to a new iMac.
    Regrettably there are some 22,000 photos and the iMac has made 1000s of individual faces that I do not want.
    Can I remove or block Faces from creating faces?
    Many thanks.

    Thanks very much for your reply and the link.
    If I understand the link correctly it is telling me to get my corkboard on the screen. This shows 5 faces in line.
    Then to highlight a face - a small circled x appears in the top LH corner.
    Then press together Command and delete.
    Sadly nothing happens!
    More advice would be greatly appreciated!?
    Many thanks

  • Viewing and Removing the Time part of the Date field

    Hi,
    I have Date field in a table.
    but in SQL plus when I do
    select date from table
    this gives me only the Date values and not the timestamps in the date.
    I believe Oracle stores 'Date' and 'Time' in fields with Data Type 'Date'.
    How do I print the timestamps also in the SQL query?
    Moreover, if I have to extract the date field, reset the timestamp to 00:00:00, and store back the date field (with 00 time), how do I do that?
    Thanks in advance
    - Manu

    Hi,
    If you want to retry date and time you can:
    SELECT TO_CHAR(DATE,'YYYY/MM/DD HH24:MI:SS') FROM TABLE;
    If you want truncate time when inserting in a table simply use TRUNC function
    INSERT INTO TABLE (DATE) VALUES (TRUNC(YOUR_DATE));
    To extract and insert with time 00:00:00
    INSERT INTO TABLE1 (SELECT TRUNC(DATE) FROM TABLE2);
    I hope this help you.

  • How do I remove the grouping headings in my list view web part?

    I don't have access to SharePoint Designer and so far, that is all I can find that people are saying to use.  I understand and know how to edit the HTML in SharePoint, just don't know what code to put in and where exactly to put it so that the Document
    Library List View web part is grouped how I want, but doesn't actually show the group titles.  Any help would be greatly appreciated.  Thank you!

    Hi,
    I understand that you want to hide list view group headers, based on your description, I can suggest as follow:
    Add this code to a Content Editor Web Part (CEWP) in the list view. Adding a CEWP in a SharePoint 2010 list view will unfortunately remove the list view selector.
    <script type="text/javascript" language="javascript">
    _spBodyOnLoadFunctionNames.push("HideHeaders");
    function HideHeaders()
    var elements = getElementsByClassName(document, "td", "ms-gb");
    var elem;
    for(var i=0;i<elements.length;i++)
    elem = elements[i];
    elem.childNodes[3].style.display = "none";
    elem.removeChild(elem.childNodes[4]);
    elements = getElementsByClassName(document, "td", "ms-gb2");
    for(var i=0;i<elements.length;i++)
    elem = elements[i];
    elem.childNodes[3].style.display = "none";
    elem.removeChild(elem.childNodes[4]);
    elements = getElementsByClassName(document, "tr", "ms-viewheadertr");
    for(var i=0;i<elements.length;i++)
    elem = elements[i];
    elem.style.display = "none";
    Written by Jonathan Snook, http://www.snook.ca/jonathan
    Add-ons by Robert Nyman, http://www.robertnyman.com
    function getElementsByClassName(oElm, strTagName, strClassName){
    var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
    var arrReturnElements = new Array();
    strClassName = strClassName.replace(/\-/g, "\\-");
    var oRegExp = new RegExp("(^|\\s)" + strClassName + "(\\s|$)");
    var oElement;
    for(var i=0; i<arrElements.length; i++){
    oElement = arrElements[i];
    if(oRegExp.test(oElement.className)){
    arrReturnElements.push(oElement);
    return (arrReturnElements)
    </script>
    More information:
    http://edinkapic.blogspot.in/2008/06/hiding-list-view-group-headers.html
    http://spjsblog.com/2011/08/30/remove-group-label-in-grouped-list-view/
    If you have any questions, please reply me.
    Thanks,
    Qiao Wei
    TechNet Community Support

  • [svn] 1418: Remove the optimization that was added as part of the fix for BLZ-133.

    Revision: 1418
    Author: [email protected]
    Date: 2008-04-25 11:16:16 -0700 (Fri, 25 Apr 2008)
    Log Message:
    Remove the optimization that was added as part of the fix for BLZ-133. We cannot depend on isRequestedSessionIdFromCookie reliably, instead we should rely on the fact that encodeURL returns the same url when cookies are enabled.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-133
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/amf/SessionFilter.j ava

    This indicates corrupt files.  A restore should resolve.

  • Remove the scroll bar of excel sheet in excel web access web part sharepoint 2010

    Hi All,
    i am using excel web access in sharepoint 2010. but when i insert excel file in this its showing me 2 scroll bar. one for sharepoint page which is easy to remove and second in excel file.
    so i want to remove the excel sheets scroll bar not for pages scroll bar.
    i have tried all things like adjust height width and all things but unable to remove scroll bar for
    excel file.
    Please give some soln or steps for this. Please reply ASAP.
    Thanks
    Vivek

    Hi Vivek,
    You tried almost all possible ootb way to achive your goal, but contact inside excel file and browser compatibility restrict you to adjust height and width using web part properties.
    You can try below article and include that script to fix this 
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/jquery-for-everyone-dynamically-sizing-excel-web-parts.aspx
    Let us know if this helps, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • How do I remove the tempature readings on my calendar? They fill up each day crowding out the view of scheduled events for the most part.

    How do I remove the tempature readings on my calendar? They fill up each day crowding out the view of scheduled events for the most part.
    Thank you
    Terry

    Disable or remoce the Calendar, that is creating these events, Terry.
    To find out, which calendar is creating these events, ctrl-click on one of the events and select "Get Info".
    In the Info panel click the color icon in the upper right corner to find out the calendar, that created this event.
    Then reveal the "Calendars" Sidebar (press the "Calendars" button in the toolbar) and select the Calendar, ctrl-click it and delete the calendar or disable it.
    -- Léonie

  • What is the name of the small part that comes lose when you are removing the two battery screws on the left side of the battery, the small part is under the top screw when removing the iPhone 4s battery?

    What is the name of the small part that comes lose when you are removing the two battery screws on the left side of the battery, the small part is under the top screw when removing the iPhone 4s battery?

    It's the part that means you've voided your warranty and the right to get an out-of-warranty replacement from Apple.

  • After Build Application, how to remove the NI directory Part?

    Hello,
    I want to remove the NI directory part of my setup application. Do you know how to do it?
    This part appears when to install the application to the computer.
    Yasemin Barutçu
    Electrical And Electronics Engineer

    As it has been said before the directory is required for installing other NI software needed for your application.
    That being said if you don't want the user to know about this you can try to just install the application silently.  This would use all the default settings for the installer, as if you just kept pressing next.  The easiest way to do this is with a batch file that just runs the installer silently, but you can also get creative and create an installer that installs your installer (a little complicated sure), but the result is a single EXE you run that installs all the software silently.  In the past I've used Inno Setup paired with ISTool.
    As for the batch file method I'm not certain but I believe the command would be something like this
    .\setup.exe /qb /AcceptLicenses yes /r /disableNotificationCheck /confirmCriticalWarnings
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • I have an iphone 5. It has a "no sim" in upper left corner. I removed it, placed it back, restored the phone and now I can't get past the "activation" part. It's telling me to insert a SIM w/out a PIN lock. HELP!!!!!

    I have an iphone 5. It has a "no sim" in upper left corner. I removed it, placed it back, restored the phone and now I can't get past the "activation" part. It's telling me to insert a SIM w/out a PIN lock. HELP!!!!!

    Hi Michellebone,
    I'm sorry to hear you are having this issue with your iPad. Given your description of the issue and the symptoms you are seeing, it sounds like you may need to have your iPad evaluated or serviced. You may find the following page helpful:
    Apple - Support - Service Answer Center
    Sincerely,
    - Brenden

  • Analysing: How to remove the analysed silence parts?

    There are two archived (unanswered) threads on that topic:
    http://discussions.apple.com/thread.jspa?messageID=8811091
    Same question: How can I remove the analysed silence parts in Soundtrack Pro 2.0.2?
    The "Fix" button is disabled, the status column shows "-". This is driving me nuts.

    If I understand what you're looking for: it's to find all the areas of "silence" in a track or a sound file and then delete them all? Is this so you can remove these pieces and "pull them up" in the timeline so they're butted up against each other? Or is it to replace the silence with yet another silence or some other sound?
    If it is the former, then STP may not be what you're looking for. In it's multitrack mode it's a sound for picture editing and mixing environment. Hence the name "soundtrack." In normal circumstances one labors to keep the track in sync with the picture. An operation pulling all "silence" out of the track would throw it wildly out of sync. Not usually a good think in sound for picture.
    I just haven't seen any indication of it doing this sort of thing. Sorry.

  • How do you remove the annoying bottom part of the home screen?

    I hate the bottom part of the home screen and is there any way to get rid of it?

    You are referring to multitasking in iOS 6.
    You cannot hide the dock in iOS 6 (or any other version for that matter).
    It just looks different. In iOS 7 it is flat:

Maybe you are looking for