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

Similar Messages

  • After having SSO user password through url not working

    Hi guys,
    We have an Institutional portal and BW portal to publish reports. Before the SSO was configured we had some UrlIViews where we fixed a user and password through the url, ie:
      http://myportal.net:50400/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?TEMPLATE=TMP01&sap-client=200&j_user=user1&j_password=pwd1
    It worked fine.
    Recently SSO (with SapLogonTickets) has been configured between the two portals.
    I have my same user on both servers and SSO its working, even though the URL sends another user, I log on to the bw portal as my own user.
    Some people do not have a BW user, so when they click the url, a login is presented with a default user (user1) and password in blank ready for input. I guess because it couldnt do a SSO.  The problem is that if they introduce the password(pwd1), or even if they change for another valid username and password, the portal rejects all attempts to log in.  Such as if tried to log in with an non existing user (using the SSO). 
    Is there a way override SSO when there is no user, such as it is working in the same portal but with BW R3?
    Thanks,
    help will be aprecciated
    DGF
    Edited by: David Guerra Farias on Apr 8, 2008 7:30 PM
    Edited by: David Guerra Farias on Apr 8, 2008 7:31 PM

    Hi Benjamin,
    I have not solved it yet as I'm delving into Flash Remoting to BC4J issues. ARRRRGGGGG!
    However, I'm thinking that there may be a solution using "mod-rewrite processing" within the httpd.conf file. If I can use Regular Expressions to change the "case" in mod-rewrite then I can probably fix it. Have to dust-off my Apache Docs.
    http://httpd.apache.org/docs/misc/rewriteguide.html
    BG...

  • HFS File system with case sensitive is not accepted to install creative cloud? Is there any other way but install the whole MacOS again after formatting the drive. I cannot belief that Adobe is so bad to it's Mac customers..

    After many hours setting up OS10.10 from he scratch the last step should be installing m Adobe apps again.
    trying this I always get the error message that creative cloud does not accept case sensitive file systems and I shall use another drive.
    This means I have to set up the whole machine again after formatting without case sensitive but then having copy problems with my NAS?
    I cannot belief that Adobe is really demanding this. If so this would show how urgent this market need alternatives and some more competition...

    Hi,
    You can refer below link for more information.
    Error "Case-sensitive drives not supported" or similar install error | Mac OS

  • 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

  • Installing Creative Cloud, case-sensitive volume not supported, error?

    I am trying to install adobe creative cloud so that i can install PS CC on my mac and i am getting this error message and i have no idea what it mean or how to correct it.
    Message reads
    We've encountered the following issues:
    installation on case-sensitive volume not supported.
    Please choose a different volume for installation (error code:22)

    Hi Rosefire314,
    Refer to the below mentioned link:
    Error "Case-sensitive drives not supported" or similar install error | Mac OS
    Let us know if this was helpful,
    Regards,
    Gurleen

  • CASE Statement is not working Derived table

    Hi All,
    in the bello SQL Statement case statement is not working in derived table. I am new to creation of derived table if any body knows plz kinldy help me out on this.
    SELECT x.market, x.droprate as med1
    FROM
    (select upper(market_name) as market, fulldate as date_value,
         (sum([Dy_LOT_DROPS_N][Dy_OB_HO_DROPS][Dy_NonRF_Drop]))/
              nullif(sum(CASE WHEN (month(BBHDLY.FullDate)}>= 6 and { year(BBHDLY.FullDate)} = 2011) or {fn year(IDENSLABBHDLY.FullDate)} > 2011
    THEN  BBHDLY.Dy_Calls - BBHDLY.Dy_HO_CHAN_ALLOC ELSE BBHDLY.Dy_Calls END),0)*100 as droprate
    from BBHDLY sla
    inner join Dim mkt
         on sla.bts_name = mkt.bts_name and sla.SectorID = mkt.Sector_Id
                   where fulldate >= GETDATE()-46
                   group by market_name, fulldate) x,
    (select market_name as market, fulldate as date_value,
    (sum([Dy_LOT_DROPS_N][Dy_OB_HO_DROPS][Dy_NonRF_Drop]))/
              nullif(sum(CASE WHEN ({fn month(BBHDLY.FullDate)}>= 6 and {fn year(BBHDLY.FullDate)} = 2011) or {fn year(BBHDLY.FullDate)} >
    2011 THEN  BBHDLY.Dy_Calls - BBHDLY.Dy_HO_CHAN_ALLOC ELSE BBHDLY.Dy_Calls END),0)*100 as droprate
    from BBHDLY sla
    inner join Dim mkt
         on sla.bts_name = mkt.bts_name and sla.SectorID = mkt.Sector_Id
                   where fulldate >=GETDATE()-46
                   group by market_name, fulldate) y
    where x.market = y.market
    GROUP BY x.droprate, x.market
    HAVING
       SUM(CASE WHEN y.droprate <= x.droprate
          THEN 1 ELSE 0 END)>=(COUNT(*)+1)/2 AND
       SUM(CASE WHEN y.droprate >= x.droprate
          THEN 1 ELSE 0 END)>=(COUNT(*)/2)+1
    Thanks

    It looks like SQL Server or Sybase given that you're using getdate().
    As such, Vinesh's comment to use decode is wrong - decode is  Oracle syntax.
    Looking at your statement again, I've noticed the following:
    you have no { to match the first } - not sure why you're using them anyway.
    you haven't given x.market a name - use x.market as market instead
    use coalesce instead of nullif if you're on SQL Server.

  • Upper case "s" does not work in most programs

    Upper case "s" does not work in a number of programs, lower case is fine. It is the only letter that is missing in both cases.
    Any ideas. Do I need to reinstall driver for keyboard? If so any idea where to get it.

    Open the Speech pane of System Preferences and check whether either the listening key or the speech key has become set to that keystroke; if so, change the setting.
    (41135)

  • Exchange Online Protection (standalone) permissions are not working as expected

    Exchange Online Protection (standalone)  permissions are not working as expected.
    we provided access to Hygiene Management to some members and they not able to access EOP site.
    This is standalone EOP.
    ksrugi

    Hi,
    what roles did you have assigned to them and what error message do you get?
    Greetings
    Christian
    Christian Groebner MVP Forefront

  • 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.

  • Is a Full Text Index search case sensitive or not in SQL Server 2012?

    I setup full text index on my contact table and am attempting to run a search on it using the following query:
    SELECT *
    FROM sysdba.Contact C
    WHERE CONTAINS(C.FirstName, 'Test')
    OR CONTAINS(C.LastName, 'Test')
    The problem is it's clearly running a case sensitive search. I did a quick search to find out how to change it to be case in-sensitive and found two pages (both for SQL Server 2012) with conflicting answers:
    1 - MSDN - "Query with Full-Text Search" - http://msdn.microsoft.com/en-us/library/ms142583(v=sql.110).aspx
    Case sensitivity
    Full-text search queries are case-insensitive. However, in Japanese, there are multiple phonetic orthographies in which the concept of orthographic normalization is akin to case insensitivity (for example, kana = insensitivity). This type of orthographic normalization
    is not supported.
    1 - TechNet - "Full-Text Search (SQL Server)" - http://technet.microsoft.com/en-us/library/ms142571(v=sql.110).aspx
    Full-text queries are
    not case-sensitive. For example, searching for "Aluminum" or "aluminum" returns the same results.
    Can someone please explain this? Is it possible to do it without it being case sensitive? If yes, how?
    (Sorry, I couldn't make those links b/c TechNet hasn't verified my account)
    Thank you for your time and help,
    Hanan

    Whats the collation setting for the columns? try using a case insensitive collation as below
    SELECT *
    FROM sysdba.Contact C
    WHERE CONTAINS(C.FirstName COLLATE SQL_Latin1_General_CP1_CI_AS, 'Test')
    OR CONTAINS(C.LastName COLLATE SQL_Latin1_General_CP1_CI_AS, 'Test')
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • User Login - go to previous URL not working

    Hi
    I have a user login set up using the DW server behaviour.
    The problem I have is that the redirect to the previous url doesnt work and always directs a successful login to the default successful login page.
    The problem seems to revolve around this part of the code:
                    if (isset($_SESSION['PrevUrl']) && FALSE) {
                        $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
                    header("Location: " . $MM_redirectLoginSuccess);
    and in particular the use of the && FALSE check.  I can see from my debugger that the value of $_SESSION['PrevUrl'] is properly set to the previous url.  If I remove the && FALSE check the login works as I would expect and redirects to the previous URL.  However, as this is 'out of the box' DW code I am concerned in case removing the && FALSE check may be doing some harm.  I have to admit I dont understand the logic of what the && FALSE part of the IF statement is actually checking for.
    Any advice and/or reassurance that by removing the && FALSE is not doing any harm or exposing me to any risks would be appreciated.
    Thanks

    session_start() is set
    As I step through the code and watch the variables I can see that the value of $_SESSION['PrevUrl'] is equal to the previous url but $MM_redirectLoginSuccess remains as the default success page.
    If I remove the && FALSE element from the IF statement, the value of MM_redirectLoginSuccess is changed to the the value of $_SESSION['PrevUrl'], which is what I want.
    So my question is, what is the && FALSE bit doing and why is it there and do I need it?

  • First 2010 CAS server OWA not working

    I have an exchange 2007 organization that we're migrating to 2010. We installed our first 2010 CAS server. When trying to access OWA on this new 2010 CAS server, I see the following error in a browser:
    A server configuration change is temporarily preventing access to your account.  Please close all Internet Explorer windows and try again in a few minutes.  If the problem continues, contract your helpdesk.
    Can someone explain to me why this is not working?
    Thanks,
    Ryan

    Hi,
    Based on the description, Exchange 2007 user could not access OWA on Exchange 2010 CAS server. Please check if you could open OWA page using the local host url on the Exchange 2010 server.
    https://localhost/owa
    Please check the external url and internal url settings on both the Exchange 2007 and Exchange 2010 server to see if they are configured correctly. For more details about Internal URL and External URL for OWA, you can refer to the following article.
    View or Configure Outlook Web App Virtual Directories
    http://technet.microsoft.com/en-us/library/dd298140(v=exchg.141).aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Australian care protection plan / warrenty is not working in Germany

    Hi,
    I am a couple of month in Germany with my 4S, for which I bought a care protection plan. The iPhone is 4 month old. Now the battery is empty after 3 to 4 hours and I called the apple support hotline in Germany and also ask in an Apple store. Both told me, that they can't help me and replace it, because I bought my 4S in Australia.
    I bought the care protection plan to have a cover just for this cases somewhere in the world and know its not working. Both, friendly, apple people told me, that I have to go back to Austalia to have the iPhone replace. They have been serious about that. That mean, I have to fly around the world, just to get a problem fixed?
    Apple you are serious about that???
    Does anyone has a solution for my problem?

    The EU is treated like a single country for warranty and AppleCare purposes. That's the only place where it is so, and is forced on Apple by EU regulations. For all other countries, the iPhone is covered only in the country of original sale. Sorry, but there is no other option.
    If you wish to buy something else, by all means you're free to do so. I don't care what you own. But you should confirm that "international warranty" on the Galaxy. Samsung's web site says differently, at least in the UK.
    "Samsung Electronics (UK) Ltd support a product purchased in Europe if it has an EU Bloc Warranty. This warranty is present where the top of the product warranty card clearly states 'European Bloc'. If the product is purchased in another part of the globe then Samsung may attempt a repair. Samsung Electronics (UK) Ltd cannot guarantee the outcome.
    so it suggests that the warranty is actually not international. I'd suggest you verify in writing that your Galaxy would indeed have an international warranty before you buy. Having a warranty on a smartphone valid only in the country of original sale is quite common, since the carriers are different in each country and hence different models of phone are often required for each.
    Regards.

  • Norton free software given along with pendrive product code MM-USPDHP-​106 url not working

    Purchased HP USB Flah sdirve HP 16GB V100/105W
    Product code MM -USPDH-106  
    The free norton software given with " Redemption and Activation" URL  https : // nortonactivate.com/compaign/fm1301 
    not working., 
    Sent me the details to [email protected]

    Purchased HP USB Flah sdirve HP 16GB V100/105W
    Product code MM -USPDH-106  
    The free norton software given with " Redemption and Activation" URL  https : // nortonactivate.com/compaign/fm1301 
    not working., 
    Sent me the details to [email protected]

  • Application URL not working properly

    We have a custom application hosted on weblogic8.1 cluster. And this is in production environment.
    What we observed was, I am using FireFox browser and works fine for me. And I noticed it did not work a few days ago only once. However, most of the other users use IE6.0 and seems not able to access this URL. So some tried using IE 7.0 and worked fine for some time. But, the problem persisted very often as few can and others cannot.
    Can anybody tell me what could be the problem or should I be modifying any files in weblogic server.
    This is working pretty fine in testing environement.

    Thank you very much for the hint, though I have not tried your suggestion. I tried a little more and found the following way might be simpler - using "java.url.*" and "java.io.*". Just a simple test:
    ============================
    URL url=new URL("ftp://usrname:password@hostname/localDirectory/filename.txt");
    InputStream is=url.openStream();
    BufferedReader in=new BufferedReader(new InputStreamReader(is));
    String line;
    while((line=in.readLine()) !=null) { System.out.println(line);
    ==========================================
    Of course, other data format would work in a similar way.
    Cheers,
    ljiang001

Maybe you are looking for

  • Can't delete file from iPod

    I have a podcast episode on my iPod that iTunes doesn't think is Music, Podcast, or Audiobook, so the only place it appears is in a playlist. So I can't delete this podcast from my iPod at all. When I delete it from the playlist, there is no way to l

  • Is there a "bot" in my mail?

    For about a week now, I've been getting dozens of emails with the subject lines "Delivery Status Notification (Failure)", "Returned mail: see transcript for details", "failure notice" and even one "Undeliverable: bandit thump". These messages have no

  • XHTML Server side includes (SSI)

    I relized that Contribute CS4 does not render include virtual (SSI) calls when the files are .xhtml. If I change the includes to .html it will render the includes in the Edit view. Is there anyway (like maybe a extentions.txt,) to get contribute to t

  • How can I have Safari save my opened web pages when I quit so that when I open next time they will be there?

    How can I have Safari save my opened web pages when I quit so that when I open next time they will be there? I can do that in Firefox automatically, but can't seem to find how to do it in Safari.  I'm thinking maybe it's just now possible yet?

  • LiveCycle Server Facility

    Hi, I have LiveCycle ES4 (just the Adobe Form module) and I would like to run some of my forms in HTML 5, this clearly requires Adobe Server. What is less obvious (to me!) is how the server can be obtained, costing etc. It only needs to run documents