SiteMinder authentication methods other than AD

Hi everyone,
Is there a way for eTrust's SiteMinder to authenticate in a way other than via ActiveDirectory?  Some of our SAP user names don't match our network login IDs, so using AD may prove to be difficult.
Thanks!
Mandy

Since you disabled "clear", you will need to configure SquirrelMail to use Cram-MD5.
To do so run:
sudo /etc/squirrelmail/config/conf.pl
and adjust your IMAP and SMTP settings

Similar Messages

  • Is there any other method other than se78 to upload a graphic into SAP R/3?

    Hi,
      Is there any other method other than se78 to upload a graphic into SAP R/3?
    Anita Jeyan

    hi ,
    just use  OAER or RSTXLDMC program
    it will definately help you
    regards
    rahul

  • Finder Methods other than by Primary key

    How should the Finder methods other than by Primary
    key in Container MB be implemented? In Bean class?
    I did some search in archives to no avail.
    Thanks!!
    Sriram

    I think it might be different on different app servers, at least until EJB 2.0 is implemented everywhere. I found a bit of info on the matter:
    http://www.jboss.org/documentation/HTML/ch06s07.html

  • Looking for a method other than portable EHDs to backing up photos and videos from iPhoto.

    (MacBook Pro 15in Mid-2009, iPhoto '11)
    I currently have my iPhoto library (approx 250GB and growing) backed up to 2 1TB external hard drives. I also have my entire photo library on Shutterfly. My computer backs up to CrashPlan regularly, but I need to delete the original library from my computer to free up space and the library will no longer be in storage there. Therefore my library would be stored on 1 EHD and backed up on 1 more EHD that is exactly the same.
    I would like to have all of it backed up 3 times, so the photos are taken care of but I am in a quandary on what I should do about my videos. I would like to have an alternate method such as USB or SD card (worried that the EHDs will conk out or I will drop one), but I don't know if this is realistic or not (I realize that I would need multiple USBs or SD cards to back up this size of library). Flickr doesn't allow videos longer than 1:30 in length, and iPhoto keeps crashing on me when I try to upload videos to Flickr in any case.
    Is using a USB drive realistic? Is using an SD card even possible?
    Thanks for your advice!

    LarryHN, you said "YOu need one more trifitional hardvdrive". Do you mean I need one more external hard drive? Right now I have 2 1TB Other World Computing Mercury Elite Pros. I am open to buying one more external drive but I was thinking it should be a different kind/brand in case the ones I have turn into duds for some reason.
    Thank you for your point about Crash Plan. In any case it will be a moot point once I delete the library from my computer so I wasn't figuring that into my backup scenario.
    Please forgive me for my lack of education on this, but why won't USB thumb drive or SD card work? Can't I split the photos and videos up among several memory sticks?

  • Can members of a family group use their own credit card or payment method other than the Family Organizer's credit card?

    In Family Sharing, is the Family Organizer's credit card the only method of payment for all family members? Or can family members also pay with their own credit card?

    Hello Trisa295,
    Family sharing payments are all managed by the Organizer, and only the billing information on that account can be used to pay for an iTunes purchase. Take a look at this info from the following article:
    Family purchases and payments
    With Family Sharing, one adult in the family—the family organizer—agrees to pay for any iTunes, iBooks, and App Store purchases that other family members initiate while they're part of the family group. This also includes ongoing subscription purchases initiated by family members, such as iCloud storage, iTunes Match, and Newsstand subscriptions.
    If the members of the Family have credits or have iTunes Gift cards redeemed, that balance gets used first so an option you all have is to apply iTunes credit in some way to these member accounts:
    After you set up your family, any time a family member initiates a new purchase it will be billed directly to your account unless that family member has gift or store credit. First, their store credit will be used to pay the partial or total bill. The remainder will bill to the family organizer's card. 
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Can substitution methods other than the Global be used in a procedure ?

    Hi All,
    I am very much new to ODI .Apologies if the question seems silly.
    As part of an exercise I am working with ODI variables and substitution methods.
    My question is substitution methods like odiRef.getColList,odiRef.getFrom,getTargetColList() used in KM's for Code Generation while executing an interface,
    can they be used in a ODI procedure giving the necessary parameters as they require .
    Eg : Command on source :
    select     
         <%=odiRef.getColList("", "[COL_NAME]", ",\n\t", "", "")%>
    from <%=odiRef.getObjectName( "TABLE_NAME" )%>
    Command on target :
    insert into <%=odiRef.getTable("L", "TABLE_NAME", "D")%>
         <%=odiRef.getColList("", "[CX_COL_NAME]", ",\n\t", "","")%>
    values
         <%=odiRef.getColList("", ":[CX_COL_NAME]", ",\n\t", "","")%>
    Ofcourse ,this is what an interface does but my requirement is to pass table name as variables and run this code iteratively to load targets,which again will be passed as variable.
    Will this run as a ODI procedure ?I tried and am getting exception errors.The getobjectName being global works fine with the proper table name generated in the code,but the getCollist does not work .Hence wanted to know if this standalone procedure is possible or will this code run only as part of KM over a interface?
    Thanks,

    Hi ,
    I had gone through this document,and from other sources also got a same answer that it cant be used.But is there a way it can be done?
    Actually we have many number of the small tables with just 10 records to be brought into the warehouse.The idea is to instead of doing it via an interface , why not try with a control table with an just the relevant entries and a procedure as above posted code.
    Some ideas would help.
    Thanks,

  • Printing from methods other than doGet()

    Hi,
    I want to send back a "result" string to the client side browser. Now, the problem is that it should be sent back from a method different from doGet(). Iam doing something like this................
    public class A extends HttpServlet
    PrintWriter out;
    public void doGet() throws......................
    out = response.getWriter();
    public void someOtherMethod()
    out.println(result);
    The call in someOtherMethod() is not working. What should be done for this ?
    Thank you.

    Hi,
    Thank you for the reply. I have tried it. The problem is Iam using a Timer class. Have a look at the code Iam using.......
    public class event extends HttpServlet
    private Timer t;
    private static int count = 1;
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException
    String eve;
    String res;
    eve=request.getParameter("opt");
    EventAgent de=new EventAgent();
    res=de.sendEventToEventAgent(eve);
    PrintWriter out = response.getWriter();
    out.println(res);
    t = new Timer();
    t.schedule(new GenerateRegNo(request,response),2,12000);
    class GenerateRegNo extends TimerTask
    private Random r;
    private int no;
    private String result;
    private PrintWriter out;
    public GenerateRegNo(HttpServletRequest req,HttpServletResponse
    res) throws IOException
    r = new Random();
    out = res.getWriter();
    public void run()
    if(count <= 20)
    DispReg();
    count++;
    else
    t.cancel();
    public void DispReg()
    no = r.nextInt(3);
    if(no == 0)
    no = no + 11;
    else
    no = no + 10;
    EventAgent de=new EventAgent();
    result=de.sendEventToEventAgent(String.valueOf(no));
    out.println(result);
    Still not getting the desired result..........
    Thank you once again.

  • All Languages with "Input Method" Other Than "Keyboard" Inaccessible

    Sometime earlier today, I lost the ability to type in both Simplified and Traditional Chinese (and in Tamil, Korean and Japanese, essentially those listed to have their input methods as "Input Method" under the "International" pane in "System Preferences"). I have no idea what happened, as I didn't install any updates or do anything with my Mac. I had left it alone for a couple of hours as I went to do some other stuff; before that, I had been able to type in the said languages without problem.
    I've tried a lot of things. Googling gave some solutions such as creating a new user account and copying its com.apple.systempreferences.plist from /Users/Library/Preferences (the said languages also work fine in the new user account). Tried that; no luck. I've fiddled around with the preferences under the "International" pane so much that I think I can memorise them by heart, and yet nothing has worked. The languages just don't show up on the language/input bar. All other languages that are listed to have input method as "keyboard" under the "International" pane are fine.
    Any ideas what might have gone wrong? Help is much appreciated.

    Hi Tom,
    Thanks for the prompt reply! I've just tried that, but unfortunately it doesn't work. I got rid of all the com.apple.---.plist in the folder and rebooted; didn't work. I even copied all the .plist from the new user account to the old user account, but that didn't work either. I'm beginning to wonder whether or not it's some other problem somewhere in the machine that I'm overlooking.
    Thanks.

  • Can i use imac's internal CD/DVD drive to install windows 8.1 pro on macbook via ethernet or firewire or other than purchasing an external drive??

    can i use imac's internal CD/DVD drive to install windows 8.1 pro on macbook via ethernet or firewire or any method other than purchasing an external drive??

    Note: These types of discs or activities are not supported by DVD or CD sharing:
    DVD movies.
    Audio CDs.
    Copy protected discs such as game discs.
    Install discs for an operating system such as Microsoft Windows (for use with Boot Camp), or Mac OS X.
    Burn a CD or DVD

  • How to invoke AM method that accepts parameter other than string

    Hi
    I need to pass 2 date parameters to my AM method.
    I checked the jdev doc and found the below method that can be used for any of the parameter other than String
    public Serializable invokeMethod(String methodName,
    Serializable[] methodParams,
    Class[] methodParamTypes)
    one thing i am not able to understand is how to pass multiple dates in a single Class parameter.
    can anyone tell me the invoke method syntax for passing 2 dates.

    Hi,
    Suppose you have a string and two date parameters
    String test;
    Date date1;
    Date date2;
    then pass it like this
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable parameters[] = {test,date1,date2};
    Class paramTypes[] = {String.class,Date.class,Date.class};
    am.invokeMethod("initSummary", parameters, paramTypes);
    Thanks,
    Gaurav

  • Clear VS Plain and other authentication methods

    I tried this setup, Jeff... gets me to the login page fine... but doesn't seem to recognize any of my email logins (all which are virtual).
    I have a website setup as MAIL.MYDOMAIN.COM... port 80...performance cache OFF... and pointing to /usr/share/squirrelmail. I tried these settings with OPTIONS-->WebMail both checked and unchecked. Doesn't seem to make any difference.
    However, I had disabled CLEAR in Advanced->Security->Authentication after reading another poster's comments regarding his server becoming a spam relay. Enabling CLEAR again made your SM setup work.
    So, now.. what do I do to make this setup work with an AUTH scheme other than "Clear"? And how does "Plain" differ from "Clear"?
    Thanks for the education.
    As Alex mentioned, turn off the performance cache.
    You can change the port in ServerAdmin to something
    else (you mentioned 8010, which is fine).
    You may need to create a seperate Site for Webmail if
    you don't have one already.
    To take this a step further....
    My preferred (non-SSL) setup is this:
    - Assuming you already have DNS of mail.domain.com
    - Create a site for mail.domain.com (port 80)
    - In Sites/General, port 80
    - In Sites/General Web Folder
    "/usr/share/squirrelmail"
    - In Sites/Options, turn off Perf Cache.
    If you do the above, when you hit
    http://mail.domain.com
    You will go straight to Squirrelmail without having
    to add a /webmail to your url and without having to
    use a different port #.
    Jeff

    Since you disabled "clear", you will need to configure SquirrelMail to use Cram-MD5.
    To do so run:
    sudo /etc/squirrelmail/config/conf.pl
    and adjust your IMAP and SMTP settings

  • VDI and other authentication methods

    hello,
    I want to set VDI 3 and i know you need AD/LDAP for a production environment.
    I was wondering if in any way there is/(will be) an open framework for other authentication methods,
    for instance like HESIOD?
    thanks
    Michael.

    Since you disabled "clear", you will need to configure SquirrelMail to use Cram-MD5.
    To do so run:
    sudo /etc/squirrelmail/config/conf.pl
    and adjust your IMAP and SMTP settings

  • Changing Payment Method Form iTunes Gift Card To Credit Card In Another Country other than US iTunes Store

    My iTounes account orignaly US iTountes Store adn i Redeemed an iTounes Gift Card and it has a $ 0.78 and I want to change to another payment method to a credit card in antoher country than US and the system asks me to spend the $ 0.78 first to change to another payment method before changing the countyr of iTounes store, therefore I cant change to a new payment method before spending the $ 0.78 and there is nothing with this rate and I cant cahnge payment mehod to a credit card becose I live now in other than US with credit card info of my present location and doesnt match US iTones infomation.
    What to do?

    You need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Cannot get Toolbar with FF4 other than by pressing Alt button, have tried all methods suggested, also cannot get it to open in Safe Mode.

    Since downloading FF4 to replace 3.1.6 I cannot get the Toolbar other than by pressing the Alt button and whilst this shows the toolbar it will not stay. I have followed the Firefox instructions, other than opening in Safe Mode which it will not do either ,none of which have cured the problem. I am using Vista, with Trend Anti Virus and also have IE8 which is working OK.

    Hi collizz, welcome to the forum,
    if you have access to another computer I suggest you download Kaspersky Rescue Disc and create a bootable cd, below is a link to a knowledgebase article where you can download it and also find out how to use it.
    http://support.kaspersky.com/faq/?qid=208282173
    Good luck.
    p.s. moving to Security and Malware board.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Issue with SharePoint foundation 2010 to use Claims Based Auth with Certificate authentication method with ADFS 2.0

    I would love some help with this issue.  I have configured my SharePoint foundation 2010 site to use Claims Based Auth with Certificate authentication method with ADFS 2.0  I have a test account set up with lab.acme.com to use the ACS.
    When I log into my site using Windows Auth, everything is great.  However when I log in and select my ACS token issuer, I get sent, to the logon page of the ADFS, after selected the ADFS method. My browser prompt me which Certificate identity I want
    to use to log in   and after 3-5 second
     and return me the logon page with error message “Authentication failed” 
    I base my setup on the technet article
    http://blogs.technet.com/b/speschka/archive/2010/07/30/configuring-sharepoint-2010-and-adfs-v2-end-to-end.aspx
    I validated than all my certificate are valid and able to retrieve the crl
    I got in eventlog id 300
    The Federation Service failed to issue a token as a result of an error during processing of the WS-Trust request.
    Request type: http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue
    Additional Data
    Exception details:
    Microsoft.IdentityModel.SecurityTokenService.FailedAuthenticationException: MSIS3019: Authentication failed. ---> System.IdentityModel.Tokens.SecurityTokenValidationException:
    ID4070: The X.509 certificate 'CN=Me, OU=People, O=Acme., C=COM' chain building failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. 'A certification chain processed
    correctly, but one of the CA certificates is not trusted by the policy provider.
    at Microsoft.IdentityModel.X509CertificateChain.Build(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509NTAuthChainTrustValidator.Validate(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509SecurityTokenHandler.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Tokens.SecurityTokenElement.GetSubject()
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    --- End of inner exception stack trace ---
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.BeginGetScope(IClaimsPrincipal principal, RequestSecurityToken request, AsyncCallback callback, Object state)
    at Microsoft.IdentityModel.SecurityTokenService.SecurityTokenService.BeginIssue(IClaimsPrincipal principal, RequestSecurityToken request, AsyncCallback callback, Object state)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.DispatchRequestAsyncResult..ctor(DispatchContext dispatchContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.BeginDispatchRequest(DispatchContext dispatchContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.ProcessCoreAsyncResult..ctor(WSTrustServiceContract contract, DispatchContext dispatchContext, MessageVersion messageVersion, WSTrustResponseSerializer responseSerializer, WSTrustSerializationContext
    serializationContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.BeginProcessCore(Message requestMessage, WSTrustRequestSerializer requestSerializer, WSTrustResponseSerializer responseSerializer, String requestAction, String responseAction, String
    trustNamespace, AsyncCallback callback, Object state)
    System.IdentityModel.Tokens.SecurityTokenValidationException: ID4070: The X.509 certificate 'CN=Me, OU=People, O=acme., C=com' chain building
    failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. 'A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.
    at Microsoft.IdentityModel.X509CertificateChain.Build(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509NTAuthChainTrustValidator.Validate(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509SecurityTokenHandler.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Tokens.SecurityTokenElement.GetSubject()
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    thx
    Stef71

    This is perfectly correct on my case I was not adding the root properly you must add the CA and the ADFS as well, which is twice you can see below my results.
    on my case was :
    PS C:\Users\administrator.domain> $root = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\
    cer\SP2K10\ad0001.cer")
    PS C:\Users\administrator.domain> New-SPTrustedRootAuthority -Name "domain.ad0001" -Certificate $root
    Certificate                 : [Subject]
                                    CN=domain.AD0001CA, DC=domain, DC=com
                                  [Issuer]
                                    CN=domain.AD0001CA, DC=portal, DC=com
                                  [Serial Number]
                                    blablabla
                                  [Not Before]
                                    22/07/2014 11:32:05
                                  [Not After]
                                    22/07/2024 11:42:00
                                  [Thumbprint]
                                    blablabla
    Name                        : domain.ad0001
    TypeName                    : Microsoft.SharePoint.Administration.SPTrustedRootAuthority
    DisplayName                 : domain.ad0001
    Id                          : blablabla
    Status                      : Online
    Parent                      : SPTrustedRootAuthorityManager
    Version                     : 17164
    Properties                  : {}
    Farm                        : SPFarm Name=SharePoint_Config
    UpgradedPersistedProperties : {}
    PS C:\Users\administrator.domain> $cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\
    cer\SP2K10\ADFS_Signing.cer")
    PS C:\Users\administrator.domain> New-SPTrustedRootAuthority -Name "Token Signing Cert" -Certificate $cert
    Certificate                 : [Subject]
                                    CN=ADFS Signing - adfs.domain
                                  [Issuer]
                                    CN=ADFS Signing - adfs.domain
                                  [Serial Number]
                                    blablabla
                                  [Not Before]
                                    23/07/2014 07:14:03
                                  [Not After]
                                    23/07/2015 07:14:03
                                  [Thumbprint]
                                    blablabla
    Name                        : Token Signing Cert
    TypeName                    : Microsoft.SharePoint.Administration.SPTrustedRootAuthority
    DisplayName                 : Token Signing Cert
    Id                          : blablabla
    Status                      : Online
    Parent                      : SPTrustedRootAuthorityManager
    Version                     : 17184
    Properties                  : {}
    Farm                        : SPFarm Name=SharePoint_Config
    UpgradedPersistedProperties : {}
    PS C:\Users\administrator.PORTAL>

Maybe you are looking for

  • Email Invoices to customer as a PDF attachment

    Hi, I have a requirement as follows:- SAP will get multiple invoice numbers from an external system. I need to send all the invoices(for a given customer) in one pdf and email it to the customer  as an attachment. Please provide your expert and detai

  • How do I select an alarm song without it playing?

    First off I live in a dorm with two other people. Occasionally when I go to set my morning alarm I find myself needing to choose a new song (once I've gotten used to a song I can sometimes sleep through it). However upon selecting the song my phone c

  • Converting from the windows date format

    Folks, I have no doubt this has been answered before somewhere in deep dark recesses of these forums, but I'm having trouble finding a solution... I have a csv file that contains a date and time field that has been stored in what I gather is a Micros

  • Is BaseLining mandatory for Tracking Gantt in Project Server ?

    Hello all, I am new to Project Sever and I am feeling a bit uncomfortable with the usage of baselines. I just want a simple implementation where I will have my own custom defined Actual Task Start and Actual Task Finish to track the tasks. But is it

  • Can I share photos to facebook on the message center (ios6)?

    I would post a picture on facebook over the message center.. I can post a text, but a photo..??