Patch for native LDAP and non-password authentication

Hi
I was just wondering whether there was a patch for Solaris 10 for the following bug:
4909247: Solaris 8 Client has broken .rhosts authentication with patch 108993-21
(Contrary to the bug description it affects all versions of Solaris)
There are patches for Solaris 8 (118993) and Solaris 9 (112960) that fix this issue but I can't find one for Solaris 10.
Regards
Tom

The issue is fixed in 10.0 MP1 with this patch CR347434
-Faisal
http://www.weblogic-wonders.com

Similar Messages

  • Park document approach for all PO and Non u2013 PO based vendor Invvoices

    Hello Experts,
    I want to use park document approach for all PO and Non u2013 PO based vendor Invoices.SAP
    Allows park document facility for FB60 ( Non-Po Based vendor Invoice)but doesnt allow the
    Same functionality for MIRO ( Logistics Invoice Verfication).Can anyone suggest a wayout for Park
    Document functionality for MIRO
    Thanks and Regards
    Urmila

    Hi,
    Transaction MIR7 can be used to park PO-based invoice. The same can be posted through MIRO.
    Regards,

  • Cisco ISE IPEP and Non Radius Authenticator

    Is it possible for a Juniper FW or Aruba Wireless or anything else that does native AD authentication can use an IPEP for policy enforcement without converting the authenticator (juniper / aruba etc…) to a Radius request to a PDP for the IPEP to build the session from?
    Does the IPEP simply "sniff" the packets and build a session from that or does it require RADIUS authentication to pass through for the IPEP to function?
    I believe RADIUS is required but the client said he was told it is not and the authenticator can pass the traffic through the IPEP even if it authenticates clients by Native AD.
    Anyone have any exmaples or traffic flows if this is possible?
    Thanks,
    Michael Wynston

    Got my answer and it is as I thought. The iPEP only works if it sees RADIUS requests to a PDP that then provides the iPEP with the policy to enforce.
    Have a client migrating from CCA which will natively check AD inline based on seen authentication requests. They were told (not by me) ISE can do that too.
    Guess not
    Sent from Cisco Technical Support iPhone App

  • So I made a new account on my computer for my sister, and none of the music that I put on the computer from CD's i no longer have aren't on there, The purchansed ones are on there.

    So I made a new account on my computer for my sister, she had a lot of music on her ipod, i opened itunes for her and none of the music that I put on the computer from CD's, That I no longer have, are on there, The purchansed ones are on there though. But when i go back and log onto my account all of the music's there. Please help me.

    For music that you've purchased from Apple that are on your iPhone you should be able to copy to your computer's iTunes via File > Transfer Purchases. Also if you are in the US then you should be able to re-download past music purchases for free : http://support.apple.com/kb/HT2519
    For your own music that you've copied, then if you haven't got a backup on, for example, external drives or CDs/DVDs then you could see if any of the utilities mentioned in this old post still exist and work

  • Table for Purchase Order and Non Purchase order history

    Hi,
    Could you please share me the table name for getting the Purchase order history and Non purchase order history because this is a client requirent.
    I have gone through this tables but not getting exact data i.e. EKPO,EKKO,EKNE...
    please share with me the exact Table name to get all the Purchase order history and not purchase order history..
    Thanks in advance

    Hi Mallikarjun,
    Where did you find the non po info?
    Thanks,
    Neha

  • Set seperate handling charges for perishable's and non-perishables at checkout

    I've run into a problem trying to set up some appropiate handling charges on two different types of products: Perishables and non perishables.
    I've tried setting it up through categories in the shipping options, which works great up until I try to purchase both a non perishable and a perishable product at the same time. When I have both these items in my cart, no valid shipping option is given. (probably because I set the categories handling charges to exclude the other category as I dont want it as a shipping option if customers only purchase perishables or non-perishables, and it is shown to customers as an option when its set up in this manner!)
    Example:
    Perishables hold a $12.00 handing charge per order, non perishables hold a $6.00 handing charge per order. If I set up shippng options for only Non-parishables by excluding any Parishable category, and do the same for Parishables by excluding any Non-parishable category, im not given any valid shipping option when my cart contains both of these. My question is, how can I set it up so when my cart contains both of these types, there is a desired shipping option (while at the same time not including this option if the customer only purchases all perishables OR all non perishables)
    My apologizes if this comes off as confusing, I've been up for a while now trying to get this to work! Any help or direction would be appreciated.

    I noticed a somewhat similar question just now which contains no workable answer, argh! Ill leave this open for a little while but will move it to the code section if no answers are submitted as the only workable theory I have come to involves javascript.

  • Planned cost for int labour and non stockable material not visible

    Hey gurus,
    While creating an order with a material, ext service, non stock material, I am able to see the planned cost for materials in stock and ext services procured. But i'm not able to see the planned cost for non stock material and int labour. However i'm able to see the actual cost for all the items. I think I have missed some config. Please help.
    Regards,
    Abhishek

    Hi,
    As said by Pithan there is a problem in costing variant for planned cost which you have assigned to prder type at plant level.
    Problem underlies within valuation variant assigned to costing variant.PM01 is your costing variant here.Check diiferent heads within valuation variant for this costing variant.There under activities tab what is calculation parameter you have selected.If it is blank you will not get any internal activity cost.You need to select at least one from dropdown like cost from previous period or avaerage cost etc.Then you will get planned cost for internal activities.SAmething applies to non stock material.
    Check in OKP6 for all these and make sure that you have selected at least one cost calculation schema there for activities and material and external.
    Regds,
    atul

  • Validation for Unique Name and Non-AlphaNumeric Characters

    Hi All,
    How to do Unique name and Non-Alpha Numeric Characters Validation?
    Name should be unique and only allow alphanumeric characters.
    Where all validations must be done? In EOImpl or any other file?
    Plz help
    Thanks,
    Sk

    SK
    Here are the steps you need to perform to check duplicate Employee Names need not entered by user.
    First create a VVO in your schema.server package(that of EO) with the following query.Generate both VVOImpl and VVORowImpl file.
    select full_name
    from fwk_tbx_employees
    where full_name =:1Now add this VVO to your VAM means give instance to it.
    Now open the VVOImpl and write below code to execute query based on new name entered by user
        public void initQuery(String name)
          setWhereClauseParams(null); // Always reset
          setWhereClauseParam(0, name);
          executeQuery();
        }Now open Your Entity Expert class and add below method in it
       public boolean isEmployeeNameExists(String name)
         boolean isExists = false;
               // Note that we want to use a cached, declaratively defined VO instead of creating
               // one from a SQL statement which is far less performant.
         EmployeeNameVVOImpl employeeNameVVO =
           (EmployeeNameVVOImpl)findValidationViewObject("EmployeeNameVVO1");
         employeeNameVVO.initQuery(name);
         // We're just doing a simple existance check.  If we don't find a match, return false.
         if (employeeNameVVO.hasNext())
           isExists = true;
         return isExists;
       }Now you need to call this expert class method from setter method of EOImpl for name.so Open your EOImpl file and go to setter method of name
          if ((value != null) || (!("".equals(value.trim()))))
            EmployeeEntityExpert expert = getEmployeeEntityExpert(getOADBTransaction());
            if (!(expert.isEmployeeNameExists(value)))
                throw new OAException("Duplicate Employee Name", OAException.ERROR);
          }Remember to write code above setAttributeInternal.
    Hope it helps!!!!
    Let me know if you have queries in it.
    Thanks
    AJ

  • When I updated iTunes last week, it asked me for an email and new password.  I misspelled my email.  How do I delete that account and is that what I need to do?

    Before I installed IOS last week, I had to update iTunes.  It asked me to give an email and new password.  I misspelled my email and now I have two iTunes accounts.  Do I need to delete the wrongly spelled one and will that delete the IOS on my phone or just ignore it?

    You should have your stuff separate from your mom's. Delete all the apps downloaded or purchased with your mom's Apple ID and download or purchase them with your own Apple ID. Back up files and data first if possible.

  • I want to change my password but can not get passed verification even though the answers are correct, so I have asked for an email and none has come.Can some one help?

    I have tried to change my password and get to the part where you need to verify by answering the questions, and I get can not get any further, as it tells me the answers aren't the ones they have but I know it is correct, so I have asked for an email to be sent, but no email comes.I receive other emails from iTunes but not the one helping me to change the password. Has any one got any idea why?

    Contact iTunes customer support, no one in these user to user support forums can assist  you.

  • Essbase 9.3.1 fails login the first time for both LDAP and Native users

    Hi,
    Whenever I try to login into Essbase server using AAS or Maxl, it fails for the first time but when I try the second time it works.
    Essbase Logs at the time of the error shows:
    Local ESSBASE0 Info (1051001) Received client request: Get Log File (from user hadmin )
    Local ESSBASE0 Info (1051001) Received client request: Get Server Locale Description (from user hadmin )
    Local ESSBASE0 Info (1051164) Received login request from xxx.xxx.xxx.x
    Local ESSBASE0 Error (1051293) Login fails due to invalid login credentials
    Local ESSBASE0 Warning (1051003) Error 1051293 ~processing request Login - disconnecting
    SharedServices9\SystemErr.log
    SystemErr R com.hyperion.interop.AuthenticationException: Could not authenticate user 'CSSToken'. Please ensure the username and password is correct.
    SystemErr R at com.hyperion.interop.webservices.Security.slideAuthenticate(Unknown Source)
    SystemErr R Caused by: java.lang.Exception: Interop Security: Unauthorized
    SystemErr R at com.hyperion.interop.webservices.Security.authenticate(Unknown Source)
    SystemErr R 1282785593 [WebContainer : 0] WARN security.SecurityFacade - Error Executing cssAuthenticate()
    Error Code: -1
    com.hyperion.css.CSSTokenNotAcceptedException: Token is invalid. Error Code: 11
    And we are using SSL? Help please... Thanks.

    I know this wont help but we had the same issue in 9.3.1 and decide to reinstall without SSL as we could not get to the bottom of it.
    I suspect there s something wrong with the SSL config but not sure what it is...
    Seb

  • I downloaded the firefox but when i Run it to install , it asks me for a username and a password .. what can i do ??

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/929802]]</blockquote>
    i uninstalled the firefox cause youtube doesn't work on it and i download it again so every time i try to run the program .. and then it asks me for a password and a username when i choose Run it with the current user The message window just disappear and it stops running .. don't know what to do

    From this article:
    iTunes: About iOS backups
    Here's the answer:
    Warning: If you encrypt an iPhone backup in iTunes and then forget your password, you will not be able to restore from backup and your data will be unrecoverable. If you forget the password, you can continue to back up and use the device, however you will not be able to restore the encrypted backup to any device without the password. You do not need to enter the password for your backup each time you back up or sync.
    If you cannot remember the password and want to start again, you must perform a full software restore and when iTunes prompts you to select the backup from which to restore, choose set up as a new device.

  • Installed the Java patch for MAC yesterday and immediately could not get adobe reader to show pdf files...have troubleshot and can't seem to remedy ...ideas?

    I have used the Firefox troubleshooting guides, no good. The Java patch is enabled and shows when I check applications. However when I run Firefox plugins it still shows the java plug in is outdated and need to be updated immediately.

    OK, I went to the Firefox knowledge base article you cited and followed the directions with the exception that in the drop down menu I choose Adobe Reader for PDF files rather than the plug in default that apparently was set by the Java patch. Problem solved !!!!!!! Thank you so much for taking the time to get me back to the basic place I needed to be to correct this issue. YOU ROCK!!!!

  • HT1420 I've not used my iMac for some time and the password has been forgotten.  How do I re-start?

    I bought the iMac some 18 months ago and it was set up be a system administrator who has since left the company.  I want to start using it again, but no-one knows the password.
    I've tried inserting the Install DVD but the system immediately asks for the original password.
    How do I overcome this?

    Hi Paulfromhkg,
    Welcome to the Support Communities!
    Your post indicates you are using Snow Leopard on your iMac.
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    Mac OS X 10.6: If you forget your administrator password
    http://support.apple.com/kb/PH6317
    Cheers,
    - Judy

  • When Patch for embedded fonts and Lion OSX to be released?

    Was reading through the thread about the problem with embedded fonts and Lion OSX and a patch being released the 3rd week of August. Does anyone know about the patch being released?

    This patch was released as 11.5.9 a couple of weeks ago. See this thread:
    http://forums.adobe.com/thread/895280?tstart=0
    You should be able to get it through the Help / Check for Updates menu - but I would definitely be aware that it seems to have created a couple of new issues for some users (documented in other forum posts at forums.adobe.com).

Maybe you are looking for

  • What is this symbol on my BB - please help

    I apologize for this, but it's driving me nuts trying to figure this out.  There's a symbol that occassionally shows up on the top of my BB's LCD screen (where all the other info is listed like the time, new message alerts, etc...) that I can't figur

  • Mac freezes, shows grey screen then starts back up

    For the past two weeks I have had the issue of my iMac suddenly freezing for a few seconds and then it turns to a grey screen for a few more seconds before it starts back up on my user area. All programs get shut down (which is annoying as I do graph

  • HR toolbox payroll/Time management step by step

    Hi Experts,               Can you please tell me the PU12 Payroll/Time management step by step process?. Thanks.

  • Enumerated types help

    Hi guys. I am working on a project that requires using an enumerated type Coins to make an application that allows a user to enter an amount of change between 1 and 99 cents and then calculates the fewest coins required for that amount. The possible

  • HID USB Writepipe failing in 64 bit Lion

    Hi, I'm using writepipe for data transfer to my custom HID device on USB.  When I build the app in Xcodeon OSX Lion and boot my Mac in 32 bit mode then the HID data transfer with writepipe works fine.  But when I boot my Mac in 64 bit mode and run my