I need a simple explanation about cert authentication sample, please

Hi
Thank you for reading my post
I have tried to understand the cert sample which could be find in
JavaES5\identity\samples\authentication\api\CertI looked at the readme file and it mentiond two files name cert7.db and key3.db
But it does not talk about how we can use those kind of files from within a Java application, I mean how a client application can use these files to perform authentication with the access manager?
For example, a client must have the certification and then it can be able to authenticate againts the access manager.
What is/are the relation between cert7.db and key3. db with trust.jks and keys.jks ?
can we use those file here in this sample? if yes, how?
Thanks

I consider Time Capsule slow, mainly because it depends upon a wireless network for backing up.  I tried it, but went back to the plug and play FW800 wired backup.  Since this particular forum is for the MacBook Pro hardware, I'd suggest the following two forums to search for your answer (or ask questions):
Time Machine
Time Capsule
Since you want easy, the external hard drive is about as easy as it gets. Buy.  Unpack.  Plug into your Mac. Format (if you don't buy a Mac formatted one, which is unnecessary).  Go to System Preferences>Time Machine.  Choose the disk as the time machine.  Turn on. 

Similar Messages

  • I just need a simple answer about audio being outa sync with video!!!!

    I've been searching the forms but found no straight answer on how to make the audio in sync with the video when using videora to transfer movies. The movie plays fine until about 10 minutes, then it starts getting way off. I am tired so can someone come to my rescue?????????
    Windows XP   Windows XP Pro  

    The problem you are describing is a known issue with Videora. The author of the software even posted that problem on their website:
    Known Bugs
    Audio/Video sync
    Problem - Output files can be out-of-sync. While no set pattern has been established, it seems to be more frequent with input files of 23.976 fps, non-DVD rips, and WMV/MPG filetypes.
    Workaround solutions - Try the custom option '-async 1'. If the disconnect gradually increases over time, setting 29.97 fps sometimes gets rid of the problem regardless of the input fps. You can also use AviSynth to assume the FPS and have the audio sync to that. If it's a sudden disconnect, check your VOB Cell settings in DVD Decrypter settings per this thread. Otherwise, test with an AviSynth script per the DaProphecy's method in the FAQ. For non-DVD files, PSPVideo 9 may be a good short-term solution until the converter stabilizes some more or try something like AviDemux
    I would suggest that you do some more research and switch to a different converter.

  • I get this error when I try to go to Facebook: Error code: ssl_error_rx_record_too_long. I need a simple explanation of how to fix this please.

    This is the error I get when I go to Facebook - Error code: ssl_error_rx_record_too_long

    Okay ... so it's not one of the cases of bodged up ACLs on the Apple folder in Common Files. (That's been underlying a few of the recalcitrant E7W5s.
    Just in case, let's try the fixit from the following document:
    Fix problems with programs that can't be installed or uninstalled

  • I need a detailed explanation about this query!

    Hey Guys,
    I'm doing a course on distributed databases at uni. I have got this query but I am not 100% sure what is being executed first, the queries between brackets or outter ones.
    What is the difference between semi-join and join queries?
    what's meant by "WHERE EXISTS" clause?
    what's the union do with the results?
    SELECT C.COUNTRYNAME, C.CODE FROM "USER_HP_FULL"."COUNTRY" C
    WHERE EXISTS(
    SELECT 1 FROM (SELECT * FROM "USER1_HP_FULL"."ATHLETE1_REPLICA1"
    UNION SELECT * FROM "USER2_HP_FULL"."ATHLETE2_REPLICA1"
    UNION SELECT * FROM "USER3_HP_FULL"."ATHLETE3_REPLICA1") A
    WHERE A.CCODE = C.CODE)
    ORDER BY C.COUNTRYNAME;
    Thank you!

    >
    I'm doing a course on distributed databases at uni. I have got this query but I am not 100% sure what is being executed first, the queries between brackets or outter ones.
    >
    Then you should
    1. open a sql*plus command window
    2. log on as a user with the correct privileges
    3. set serveroutput on
    4. set autotrace traceonly
    5. execute the query
    Examine the execution plan - it will show you what is being executed first. If you have questions post the plan using \ tags.
    {quote}
    What is the difference between semi-join and join queries?
    {quote}
    The documentation is your friend.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/queries006.htm
    {quote}
    what's meant by "WHERE EXISTS" clause?
    {quote}
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/conditions012.htm#sthref2960
    {quote}
    EXISTS Condition An EXISTS condition tests for existence of rows in a subquery.
    {quote}
    {quote}
    what's the union do with the results?
    {quote}
    Eliminates duplicates in multiple query results
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/queries004.htm
    See 'The UNION [ALL], INTERSECT, MINUS Operators' in the SQL Language doc
    {quote}
    UNION Example The following statement combines the results of two queries with the UNION operator, which eliminates duplicate selected rows.
    {quote}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Simple question about sockets and streams - please answer it!

    Hi
    I have a server socket and a client socket. Both are up and runing. But I'm having problems to send a string from the client and read only the four first bytes on the server. Please read the code and some other comments below:
    socket client:
    DataOutputStream out =
    new DataOutputStream(socket.getOutputStream());
    // read from keyboard input
    BufferedReader myinput =
    new BufferedReader(new InputStreamReader(System.in));
    System.out.println("Type any 4 chars and [enter].");
    String any = myinput.readLine();
    out.writeBytes(any);
    out.flush();
    server socket:
    in = new DataInputStream(socket.getInputStream());
    byte[] id = new byte[4];
    in.read(id, 0, 4);
    System.out.print(new String(id));
    According to the code, it should read 4 bytes from the input stream (in.read(id, 0, 4)), but it displays only the first byte. For example, if I type "hello" on client, the serve should show "hell" but it shows just "h"
    Any ideias? Thanks!

    Hi,
    Check the Javadoc for 'in.read(id, 0, 4);' This reads up to 4 bytes and returns the number of bytes read. You need something along the lines of
    int count = 0;
    while (count < 4)
    count += in.read(id, count, 4-count);
    Roger

  • A simple question about DAQ data sampling

    Hi all:
    Now I meet a very basic question about DAQ sampling.  I am using NI PCI-6040E DAQ card, SCXI-1001 chasis, SCXI-1102, SCXI1300 terminal block, and SCXI1160 relay module.
    I am not sure , is it possible if I want to test a voltage (1 volt) on a resistor. Now I am connecting the Ch0+ to resistor+ (24 volt), and connecting Ch0- to resistor-(23 volt). So the voltage between resistor+ and resistor- should be 1volt.  Actually, It is working at the first, but after I want to test 9 channels based on this connection. The Measurement & Automation can't read data from the DAQ card. (when I test it by multimeter, I can get the voltage data on the Ch0+ and Ch0- of SCXI1300 terminal block).
    That's strange, does anybody know what' s wrong about it?/
    Thanks a lot

    Hi hanwei,
    According to the specifications of the PCI 6040E (page 3), the input signal and common mode voltage should never exceed 11V from ground.  I believe this is the reason you are able to measure the potential of a battery but not the 24V signal (even though the differential value is only 1V). 
    Best Regards
    Hani R.
    Applications Engineer
    National Instruments

  • Where in the help is the explanation about keying sample color and

    i am looking in the 'help' for explanation about working with sample color en edges but can 't find it.
    does anyone know?
    Thanks.
    this is what i mean:

    like this?
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver40b003bc

  • I am a novice - I need a simple, plug & go, external hard drive ... Have read various reports about Time Capsule ... Any opinions or alternatives? I am old, & need simple answers please - nothing complicated ... Thanks ...

    I am a novice - I need a simple, reliable, plug & go (U.K.) external hard drive (1-3 TB) Have read various reports (good & bad) about Time Capsules - opinions & alternatives please .. I am old, so please keep answers simple - anything containing 'stuff' I won't understand & I'll ignore it .... Thanks in anticipation ...

    I consider Time Capsule slow, mainly because it depends upon a wireless network for backing up.  I tried it, but went back to the plug and play FW800 wired backup.  Since this particular forum is for the MacBook Pro hardware, I'd suggest the following two forums to search for your answer (or ask questions):
    Time Machine
    Time Capsule
    Since you want easy, the external hard drive is about as easy as it gets. Buy.  Unpack.  Plug into your Mac. Format (if you don't buy a Mac formatted one, which is unnecessary).  Go to System Preferences>Time Machine.  Choose the disk as the time machine.  Turn on. 

  • Need explanation about adobe products for developers

    I need explanation about what products I need to use for developing dynamic adobe PDF forms..
    Currently I use only LiveCycle Designer ,but I in previous posts I found that I need to use additional products as Acrobat or Extension to designer.
    My question is if I need to devlop dynamic PDF form what exactly products I need that will be cover all developing issues?

    Hi,
    Covering all developer/developing issues is very broad.
    LC Designer is part of the LiveCycle suite. Which components you need from the suite will depend on your environment, your workflow, and how you want to process the data.
    More information here: http://www.adobe.com/products/livecycle/
    If you wanted to create forms and use Reader to interact with the form, then the minimum specification would be:
    LC Designer
    Adobe Reader
    However there would be restrictions in the functionality (eg you could not save the form in Reader as it would not be Reader enabled).
    If you want to Reader enabled the form in Acrobat Standard v9 or Acrobat Pro v8, then you will need Acrobat as well. This will unlock some of the features.
    If you want users with Reader to have full access to all features (as if the form was opened in Acrobat) then you will also need LC Reader Extensions ES2. You would use this to Reader enable the form before you deploy it.
    See summary here:
    Other components in the LC suite provide other functionality such as digital signatures, rights management, etc. You should talk directly with the Adobe sales rep in your geographical location.
    Good luck,
    Niall
    Assure Dynamics

  • About servletContext (i need a good explanation)

    Hi!
    what is the use of servlet context.
    what is the difference between request.GetRequestDispatcher and servletContext.gerRequestDispatcher .
    Friends,i need a clear explanation with some example code.

    Don't crosspost. Proceed here: http://forum.java.sun.com/thread.jspa?threadID=5173104

  • Explanation about Start ManagedServers by Console

    Hi there,
    I need an explanation about difference between a start ManagedServer by default script and a start ManagedServer by Admin Console :
    If I start any ManagedServer by default script "startManagedWeblogic.sh +myserver+", the script apply ${DOMAIN_HOME}/bin/setDomainEnv.sh
    in setDomainEnv.sh I can set more JAVA_OPTIONS than default.
    But if I start same ManagedServer by admin console, it seems that start process don't apply setDomainEnv.sh and I haven't my JAVA_OPTIONS.
    If it's possible, how can I excute setDomainEnv.sh when I start a ManagedServer by console ?
    That for your help.
    Bye.
    J Sourti

    Hi Sourti,
    Here is only one difference you will see when try to start Managed server through Admin console.
    Nodemanager will provide all the required parameter while start of the Managed server.
    It use startweblogic.sh or cmd file while startup from nodemanager.
    Check the Nodemanager.properties you will understand in more details.
    I know this is very simple explanation but if we start explaining this we will get more details about it.
    So start sharing your queries to get more information on this topic.
    Regards,
    Kal

  • CLIENT-CERT authentication in WL7

    Hi,
    I'm trying to enforce two-way authentication for clients (java applications) accessing
    a web service running on WL7.
    Web service is configured to accept requests over https only. With BASIC authentication
    it works. When I
    switch it to use CLIENT-CERT authentication I cannot connect to the web service.
    I've set the
    "javax.net.debug" directive to "ssl" and noticed that during the handshake procedure
    the server doesn't
    produce client certificate request. May it be the cause of the problem? If so,
    how can I make the server to
    generate client cert request?

    Exactly, it was the reason. Thanks.
    Marcin
    On 14 Nov 2003 10:29:39 -0700, Pavel <[email protected]> wrote:
    >
    You must have been accessing the server over one-way SSL. Make sure the
    two-way
    ssl server attribute is set to: Client Certificate Enforced, or Client
    Certificate
    Requested But Not Enforced.
    This should be all that is needed to make the server send the
    certificate request.
    With Client Certificate Enforced option you should be getting ssl
    handshake failure
    unless the client sends its certificate.
    Pavel.
    yazzva <[email protected]> wrote:
    Yes, I have. If I had not done it, I couldn't have accessed the service
    via https using basic authentication, and of course ssl debugging
    information and server configuration show that ssl is configured
    properly.
    The problem is that WL7 doesn't generate client cert request. Thanks
    for
    an attempt to help.
    Have you configured the server for two way ssl?
    See
    http://e-docs.bea.com/wls/docs70/security/SSL_client.html#1029705
    http://e-docs.bea.com/wls/docs70/secmanage/ssl.html#1168174
    for information on this.
    Pavel.
    "yazzva" <[email protected]> wrote:
    Hi,
    I'm trying to enforce two-way authentication for clients (java
    applications)
    accessing
    a web service running on WL7.
    Web service is configured to accept requests over https only. With
    BASIC
    authentication
    it works. When I
    switch it to use CLIENT-CERT authentication I cannot connect to theweb
    service.
    I've set the
    "javax.net.debug" directive to "ssl" and noticed that during the
    handshake
    procedure
    the server doesn't
    produce client certificate request. May it be the cause of the
    problem?
    If so,
    how can I make the server to
    generate client cert request?--
    Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

  • Simple question about mount and delay script

    Hello, I have a simple question about mounting volumes on start up.
    My computer wakes up auto - and then auto there are serveral applescript tasks (mount and start up programs)
    I use this script (daily) for serveral connections with external volumes I always need the connect to. ( In the script I use this code 3 times for other locations) I do this on start up.
    set Uname to "XXX"
    set Pword to "XXX"
    set someVolume to "afp://XXX.XXX.XXX.XXX/XXX/XXX
    mount volume someVolume as user name Uname with password Pword
    (same code for 2 other locations)
    When i do this on start up sometimes the script says there is no connection possible. I guess it's because on start up the connection isn't there. And 1 minute later when computer is total ready the connection is ok. When I run the script then It works. Just sometimes ( In the morning) 'It' want to connect but the script stops. When i do it manually(I run the script again) it works just fine.
    Is it possible that I need a delay? Can someone explain this?
    How would I make a delay handler for this script? Is that the best solution?
    Thanks in advance. This is something small i'm wondering about.
    Colin

    BTW, If you saved the script as an application +(and not as an application bundle)+ you could drop the script on to *Drop Script Backgrounder* (freeware).
    Then the script would run in the background, so, you wouldn't see it running in the Finder.
    <http://www.macupdate.com/info.php/id/7922/drop-script-backgrounder-x>
    Tom

  • Brief explanation about EVS

    Hi All,
    Give me Explanation about the EVS and  wat is the use of it

    Hi,
    Extended Value Selector
    Extended Value Selector (EVS). input help is used for selecting a key/display text pair of a simple data type. Because the SVS is not suitable for displaying large value sets (more than 50, for example), Web Dynpro provides the EVS. This input help displays a popup UI with a built-in function for browsing and filtering large value sets in a table. The EVS can be displayed for every Inputfield UI element with the value property bound to a context attribute of the type simple data type (at runtime).
    Pl go through this link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/391ee590-0201-0010-1c89-f1193a886421
    Regards
    Ayyapparaj

  • A simple question about combo box

    Dear All,
    Just got a simple question about combo box: I have one of these selectors with labels based on filtered rows from a table.
    Is it possible to have one more label that would select all options?
    Like:
    Product A
    Product B
    Product C
    All Product
    Many thanks for your help!
    Gilles

    Hi Gilles,
    The purpose of ComboBox itself to select single option out of many.
    For your purpose, you may have to use "List Builder" which can accomodate 1 or more  to select.
    Please revert for more clarification if you need.
    With best wishes
    BaaRaa.

Maybe you are looking for

  • Physical stndby doesn'1 apply redo or primary standby didn't transport redo

    I setup physical standby (OEL5.0, DB 11.2), every things seem right. But when i create table on primary DB, it does not appear on standby database. The Physical standby doesn'1 apply redo or primary standby didn't transport redo to standby Datadase P

  • Can 1 ASM Disk group serve multiple RAC DBs?

    DB version: 11gR2 Platform : Sun OS 5.10 Number of Nodes : 2 We currently have a 2 node RAC DB called PMDB1 running with a Disk group called DG1_DATA of 1 Tera Byte. We would like to add another Database in this cluster. Can this DB use the same Disk

  • How to create control dynamicall​y while front panel fly using Xcontrol or anyothere options but without scripting tools

    Hello friends            I have one doubt How to create control dynamically while front panel fly using Xcontrol or anyothere options but without scripting tools.I need to create the controls while vi is running.For example I need to create one Boole

  • Horizontal Scrollbar for af:selectOneListBox

    Hi Is there a way to fix the width of af:selectOneListbox such that for list values that are longer than stipulated width, a horizontal scrollbar can also be introduced to browse these values? I cannot pre-determine the longest item as values within

  • ITunes update horror!!!

    I need help now!!!!! like everyone else here I made the mistake of installing the latest version of ITunes, and since then ITunes doesn't recognize my IPod. My computer recognizes it and I can still play music through ITunes but I can't synch it with