Web URL case sensitive

I am using iPlanet as my app server & web server. My URLs are seems to be case sensitive. How could I eliminate this?. My OS is Windows.
The actual folder name in windows in "AA", which in in the doc folder of iPlanet.
while accessing
http://localhost:81/AA/index.jsp, its working but
http://localhost:81/aa/index.jsp is not working.
Whats the prob.? How could I eliminate this?

domain names are not case sensitive.
the path after can be. I believe this depends on the server's file system. Windows machines are not case sensitive, so the path for a server on a Windows PC is usually not, but Unix system are case sensitive in the file system, so the path for a server on Unix is as well.
However, the general rule is to always define domain names in all lower case (they are case insensitive anyway) and to assume case sensitivity for the path in the URL. Case insensitive servers/file systems won't care, and case senstive ones will be correct.

Similar Messages

  • URL case sensitive

    I am using iPlanet as my app server & web server. My URLs are seems to be case sensitive. How could I eliminate this?. My OS is Windows.
    The actual folder name in windows in "AA", which in in the doc folder of iPlanet.
    while accessing
    http://localhost:81/AA/index.jsp, its working but
    http://localhost:81/aa/index.jsp is not working.
    Whats the prob.? How could I eliminate this?

    I would think getting rid of the port number in the URL is more important.

  • Is the URL case sensitive??

    I published a website for a family reunion and when I mailed the URL to people I listed it in all lower case. For some reason you have to use a capital "W" when typing the URL in the address bar: /Welcome in order to get to the first page of the site. If you use a lowecase "w" then you get a "Page Not Found" Message. I didn't realize that URL's were case-sensitive. Anyone know how I can fix this? Note: I don't have emails for all of the reunion attendees and sent snail mail letters to Canada, Nova Scotia etc. and really want them to be able to use the lower case option as it was written in the letter. Thanks!

    The URL is case-sensitive. At least the sitename and pagenames are.
    HTTP://WEB.MAC.COM/DOTMACID/
    will work.
    Better send this:
    http://web.mac.com/dotmacid/
    Message was edited by: Wyodor

  • Web Dynpro & case sensitive selection of Adobe Forms

    Hi Community
    how can I solve this issue:
    I have a Web Dynpro View with a button. Clicking this button generates a Adobe form and displays it.
    So long everything's fine.
    Here's my problem:
    There are 4 different case sensitive forms in dependence of the user's selection. How can I solve this?
    The form is assigned to the view via layout, so do I have to create 4 views,related to the amount of forms? And additionally the pdf's are displayed in dialog windows, so do I have to create 4 windows additionally where I have to embed a view for each of them?
    Is there any other way to solve it? It looks for me like a not very nice solution.
    Thanks in advance,
    Tan

    Hi Tan,
    Solutions that i am proposing may not be the best solution but you need to take a call on the best one:
    Solution 1 :
    1. Try Creating only one view and one window for pop up ( in addition to your existing view with button )
    2. in the view add an interactive form and bind it to one of the form.
    3. in WDDOMODIFYVIEW method , depending on the situation try to change the mapping to this interactive form
    4. This embedded view in the pop up window is always called, only based on the conditions the adobe forms changes.
    Solution 2:
    1. in your view add 4 Interactive forms , bind them to different nodes as per its mapping requirement
    2. create 4 Visibility context attributes , bind them with each of the forms
    3. depending on the condition , hide or make visible the adobe forms.
    4. show this view in the pop up window.
    My suggestion would be to go with Solution 2 , since it does not involve dynamic modifications at runtime.
    Regards,
    Ashish Shah

  • FMS URL - Case Sensitive? (GUI & Cmd Line)

    I'm stuck. My FME 2.5 GUI runs fine, passes video & audio
    traffic just like its supposed to. However, when running FME via
    command line, FME connects to FMS alright, and uploads A/V to the
    server, but I can't view the output. The ONLY difference is that my
    FMS server side app name is ALL CAPS. In GUI mode, the app displays
    in CAPS.
    The Startup XML file displays CAPS, .......but......when
    running FMEcmd, the console window displays LWR CASE letters for
    the application.
    Example:
    GUI FMS URL = rtmp://xxxxx.server.com:80/BUS1/xxxxxxx
    FMECMD via CMD Line = rtmp://xxxxx.server.com:80/bus1/xxxxxxx
    Startup XML File = rtmp://xxxxx.server.com:80/BUS1/xxxxxx
    Is there someway that I can change that XML file in Notepad
    so that it forces ALL CAPS for that application name?

    I guess you will have this issue with FMEcmd anyways. I am
    hoping this issue will be fixed in next release of FME.

  • URL Case Insensitive

              Hi ALL,
              How to make URL case-insensitive, I registered my servlets on WLS on UNIX system.It's very very urgent to me.
              I am giving a example to similar to my problem.
              It should invoke the same servlet using:
              www.abc.com/XYZ/welcome
              www.AbC.com/xYZ/WELCOme
              www.ABc.com/XyZ/WelCoMe
              The same servelt should invoked with the possible combinations of both cases of letters.
              Thanks,
              Venkat
              

              Hi Sam,
              I think there is a another way to handled the url case-sensitive using defaultservlet. I already done with my problem, I handled successfully using defaultservlet. It's working fine, Anyway Thank you very much.
              Venkat Ponnala
              "WebLogic" <[email protected]> wrote:
              >I found the only way to get this to work perfectly is to have a web.xml with
              >these entries:
              >
              > <servlet>
              > <servlet-name>lowercasefilter</servlet-name>
              > <jsp-file>lowercase.jsp</jsp-file>
              > </servlet>
              > <servlet-mapping>
              > <servlet-name>lowercasefilter</servlet-name>
              > <url-pattern>/a/*</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>lowercasefilter</servlet-name>
              > <url-pattern>/A/*</url-pattern>
              > </servlet-mapping>
              >
              >with lowercase.jsp:
              ><jsp:forward page="<%=request.getPathInfo().toLowerCase()%>"/>
              >
              >Where you register it as the default webapp. All your URLs should then
              >be prepended with either A or a to get the correct behaviour. If you were
              >to simply filter everything you get an circular fowarding loop.
              >
              >Sam
              >
              >
              >"Cameron Purdy" <[email protected]> wrote in message
              >news:[email protected]...
              >> You must implement your own mapping by creating a front servlet mapped to
              >by
              >> '*'.
              >>
              >> --
              >>
              >> Cameron Purdy
              >> [email protected]
              >> http://www.tangosol.com
              >> Consulting Services Available
              >>
              >>
              >> "Venkat Ponnala" <[email protected]> wrote in message
              >> news:[email protected]...
              >> >
              >> > Hi ALL,
              >> >
              >> > How to make URL case-insensitive, I registered my servlets on WLS on
              >> UNIX system.It's very very urgent to me.
              >> >
              >> > I am giving a example to similar to my problem.
              >> >
              >> > It should invoke the same servlet using:
              >> > www.abc.com/XYZ/welcome
              >> > www.AbC.com/xYZ/WELCOme
              >> > www.ABc.com/XyZ/WelCoMe
              >> > ...................
              >> > .....................
              >> > ...................
              >> > ..................
              >> > The same servelt should invoked with the possible combinations of
              >> both cases of letters.
              >> >
              >> > Thanks,
              >> > Venkat
              >> >
              >> >
              >>
              >>
              >
              >
              

  • How to display case sensitive elements in an adobe interactive form

    Hi Experts,
    I'm not sure if this is the correct section for my problem or if I should post it in Web Dynpro section...
    Out of an Web Dynpro Component I'm starting an Adobe Interactive Forms and filling it's elements by Web Dynpro Context Nodes. So long everything's fine.
    Now I need to display some elements depending on cases of my Web Dynpro.
    In other words for example:
    if x = 1 show some elements in my interactive form,
    if x = 2 don't show them but show other elements
    and so on....
    Is there any function in interactive forms to realize that?
    I had a similar problem before, depending on Web Dynpro cases different Forms are executed and displayed as shown here
    [Re: Web Dynpro & case sensitive selection of Adobe Forms] but in this case I need to handle with the elements of my interactive forms.....
    Any ideas?
    Thanks in advance,
    Tan

    Hi,
    back again, had to handle other issues, sorry.
    Just to get a little more concrete. The condition depends on the context node attributes. So if an attribute is initial, it's field should not been shown, if it's not initial, it should ne shown. There are 6 context attributes and therefore 6 fields in the form. How can I get the attributes' value?
    And can I put them into the same subform or do I have to create 7 (6 conditions + blank-condition) subforms?
    I put the fields (textfield and context node value) that should be shown depending on conditions in a subform. So how can I adress this subform?
    I'm not so familiar with JavaScript, so please help me. I need something like:
    if (context_node_attribute X is initial) {
             subform_1.presence = "hidden" ;
    I tried it with
    if ( ARB_STUNDEN.rawValue != null) {
         Beratungsstunden.presence = "hidden" ;
    but it didn't work....
    Thanks,
    Tan

  • Case sensitive urls in sun java system applicatoin server 8.1 pe?

    I have installed the sun java system application server 8.1. Using netbeans 4.1 I have deployed a few web applications.
    The server is listening on port 8080 and it is serveing up my web pages fine....EXCEPT it looks like the url I type in the browser is case sensitive. Is that right? Is there a way I can specify that the url is not case sensitive?
    Please tell me that the sun developers did not make the appliation server case sensitive.

    I have installed the sun java system application server 8.1. Using netbeans 4.1 I have deployed a few web applications.
    The server is listening on port 8080 and it is serveing up my web pages fine....EXCEPT it looks like the url I type in the browser is case sensitive. Is that right? Is there a way I can specify that the url is not case sensitive?
    Please tell me that the sun developers did not make the appliation server case sensitive.

  • Why is default URL created by iWeb Case Sensitive

    I have posted a new website using iweb and it will only load if I use "Site" in the URL. If I type "site" Apple reports that no Website is available. Try it.
    http://web.mac.com/alan.fozzard/Site/Welcome.html
    http://web.mac.com/alan.fozzard/site/Welcome.html

    it will only load if I use "Site" in the URL
    No problem for me with just the short version, and that is how it should work for you too:
    http://web.mac.com/alan.fozzard
    Urls that include a file path are almost always case sensitive. Best get used to it.

  • When logging onto a web site with a log on name firefox is changing logon name from Kostas to kostas as the site is case sensitive it is not acceptable. how do I correct this? Thanks

    I registered with a web site and used the name Kostas as the log on name. Entered a question and recieved replies
    When I later tried to log onto the web site to say thankyou ,and enter Kostas in the log on box a reminder appears created by Firefox of kostas, I ignore this, move to the password box and firefox changes the log on name to kostas with small k. The register is case sensitive so for quite a while I could not understand what was going wrong? I eventually managed to log on by using a rival system
    My previous experience is that if you use a different log on name it is recorded and then you choose the correct one to use? But in this case I am given no choice
    How can I correct this please
    Probably no connection but
    I registerd with another site and recieved an e-mail in which I had to click on web address to confirm registration and came up with an error message, tried a few times and same thing happened?? The webmaster of this site had no record of my registration details?
    Finally I had a phone call from a company called NERD-I.com
    offering to solve various computor problems at a fee. I did not take up their offer, but hope they do not have anything to do with my current problems??
    Many thanks

    Hi Corel
    Thank you for your reply
    However I need the lower case version for some sites and the upper case version for the site in question? To make matters worse this site does not allow you to change your log on name unless it is in the form of an e-mail address
    So what I need is Kostas for this site and kostas saved for other sites and allow me to choose which one I want to use
    How do I do this please
    I have no bother with this on Win Internet Explorer but I like Firefox
    Mind it may be as simple as deleting The appropriate entry and resetting with Kostas instead of kostas?
    But I would appreciate knowing the correct solution from an expert

  • Mod_osso.conf - sso protected - case sensitive URL not working

    Greetings,
    I have modified my mod_osso.conf (see below) file to protect the following URL "http://host.domain.com:7777/test".
    If you enter the above URL - you are properly challenged for a user-name and password. HOWEVER, if you enter "http://host.domain.com:7777/TEST" or any other variation /Test, /tEst, /teSt etc. SSO does not get enabled.
    I'm missing something, what is it???
    Thanks,
    Bill G...
    mod_osso.conf file
    LoadModule osso_module modules/ApacheModuleOSSO.DLL
    <IfModule mod_osso.c>
    OssoIpCheck on
    OssoIdleTimeout off
    OssoConfigFile D:\oracle\903_j2ee\Apache\Apache\conf\osso\osso.conf
    # BG ADD
    <Location /test>
    AuthType Basic
    Require valid-user
    </Location>
    </IfModule>

    If you are on a UNIX-based server, URLs are always case-sensitive.
    Enter an directive for every possible combination, or create the alias/redirect for each combination in the httpd.conf (recommended)
    HTH
    LLB

  • Query Variable: F4 search by Text is case sensitive in Web Templates.

    Hello Guru's,
    I have a problem, when I am trying to search the variables in Web Templates the search by text is case sensitive.
    For example If I have the customer name as "King", I have to search the text as King or Ki*, But If I search as king I will not get any results.
    I need to have my text search as case insensitive.                                                                    
    When I checked in my BEx queries the search is case insensitive. I have the problem in my Web Templates only. Please let me know do I need to change any variable settings ing the web templates or let me know how do I fix this issue.
    Many Thanks,
    Vamshi Krishna

    Hi,
    So the only workaround for this would be to goto RSD1 -> enter info
    -object as xxxx, and press maintain, then goto master data/text
    tab and select the check box, 'with text', now save and activate the
    infoobject. After this regenerate the query using tcode rsrt.
    To regenerate goto rsrt enter query name and press 'generate report'
    button.
    Now the F4 help screen should show the options search by key and search
    by text. So that you can select serach by key to have a case insensitive
    search.
    Thanks,
    Venkat

  • Acquiring case sensitive URL info from browser

    In a Java filter am trying to acquire the case sensitive URL (hostname) from the app I'm filtering.
    Normally, to get the whole URL, one would do something like:
    String myurl = request.getServerName() + request.getRequestURI();getServerName returns an all lowercase server name from what I'm seeing...
    Is it possible to get the case sensitive server name from the requested url....
    For example:
    http://mysErVer.cOm/myApp/
    request.getServerName returns "*myserver.com*" whereas I want "*mysErVer.cOm*"
    Any ideas? Am I missing anything obvious?

    I may be wrong, but I'm pretty sure that when the request is sent by the browser, it's converted to lowercase, so if you want to know what the user typed into the address bar, you won't get it. Urls are defined as lowercase anyway, so what difference does it make how it's entered?
    http://en.wikipedia.org/wiki/URL_normalization

  • Case Sensitive OBI url

    Hello everyone,
    I hadn't noticed before but the URL of analytics in my installation is case sensitive.
    e.g
    http://localhost:9704/analytics - is ok but
    http://localhost:9704/Analytics - Cannot be found
    Does anyone know how i can change this?
    Kind Regards,
    Kostis

    The typical URL is : http://localhost:9704/analytics where “analytics” is the context root and deployable J2EE module. Its also called as Presentation Service instance.
    To create a new one you can go for deploying a new one with name 'Analytics'.
    Something like Deploying a new Presentation Service instance from http://debaatobiee.wordpress.com/2009/10/01/multiple-rpd-multiple-presentation-service-instance-on-single-bi-server/
    You can run two presentation service parallel..
    Hope this helps

  • Can Search help in Web Portal be made so that it is NOT case sensitive?

    We have a number of reports that users access via the web portal.  Most of these reports have a variable selection screen that appears so that users can pre-filter the report before executing it.  When the user selects search help on any of the variables and attempts to search the text values, the search is case-sensitive. But we have some data stored all caps and some data stored mixed case, so this isn't very convenient for the user.  I would like to be able to set up the search window so that the searches are not case sensitive.  Is there a global setting that can accomplish this, or can the search page be customized?  Any guidance would be appreciated.
    Thanks.

    I have the same issue. There was a fix in 3.5 using function module RSA_CHA_BUILD_QUERY however this doesn't exist in 7.
    Any thoughts would be much appreciated.

Maybe you are looking for

  • Seeburger AS2 Forbidden 403 message

    Colleagues, I was successful in implementing Seeburger's AS2 and BIC adapter for inbound and outbound EDI messages in our development PI environment.   But, I get " 403 Forbidden" messages when my trading partner sends a message to our test environme

  • How can i get magic voice changer on my nokia c6?

    hi just wondering how can i get magic voice changer on my nokia c6? please if anyone can help thanks!

  • Bus, level, clipping - I'm a bit confused.

    Hi Firstly, apologies if this has been mentioned before... I have done a search but didn't see exactly what I was looking for. Anyway... I use bus objects (though since reading the earlier post may start using AUXs) to submix different 'elements'. On

  • Block contact

    My I block unknown contact on my Nokia lumia 510??? Suggestions please...

  • Error 0 Statement Ignored

    I'm migrating from Reports 10.xxx to 11.1.2.0, and I run into something very strange. Any select statement on any trigger on Reports 11.xxx  returns Error 0 at line x, column x SQL statement ignored. The reports have been and are still running on Rep