Getting info from cert using SSL

Hello,
is there any way to get some info about cert. at the WS side?
Thanks

You can overwrite the forms login with your own to determine whith what privileges to login.
You can pass parameters to form when you invoke it on the command line.
So you can basically get the infoemation from the webseal and pass it to forms on the command line that invokes it.
To generate a dynamic command line in your html form that invoke forms you can use a servlet that will generate the html to invoke the forms.

Similar Messages

  • How to get info from a layer which is  applied  with styles  ?

    How to get info from a  layer  ?  such  as   (  apply  style  or  not , which  effect  have  applied  on  it  etc..)
    I  really  can't  solve  it , Who can hlep me..  By the way , I 'am  using  CS version.  

    xtools/xlib/Styles.js has a set of functions for working with layer styles. I do not know if it works with CS. I wrote it several years ago for either CS or CS2. If this doesn't work, then nothing will. The script retrieves a layer's style by saving it to disk then parsing the file for the desired ActionDescriptor.
    There is a function at the bottom of the file that tests the Styles.js API.
    Styles.test = function() {  var doc = app.activeDocument;
      var layer0 = doc.artLayers[0];
      var gdesc = Styles.getLayerStyleDescriptor(doc, layer0);
      if (!gdesc) {
        alert("There is no layer style associated with the layer");
        return;
    //   this will set the layer style to another layer.
    //   var layer1 = doc.artLayers[1];
    //   Styles.setLayerStyleDescriptor(doc, layer1, gdesc);
      if (!gdesc.hasKey(cTID('FrFX'))) {  // look for a stroke effect
        return;
      var frfx = gdesc.getObjectValue(cTID('FrFX'));
      if (!frfx.hasKey(cTID('Clr '))) {   // look for the color
        return;
      var clr = frfx.getObjectValue(cTID('Clr '));
      // we should really check that the objectType is RGBC
      var r = clr.getDouble(cTID('Rd  '));
      var g = clr.getDouble(cTID('Grn '));
      var b = clr.getDouble(cTID('Bl  '));
      if (r == 0 && g == 0xFF && b == 0xFF) {
        return;
      clr.putDouble(cTID('Rd  '), 0);
      clr.putDouble(cTID('Grn '), 0xFF);
      clr.putDouble(cTID('Bl  '), 0xFF);
      frfx.putObject(cTID('Clr '), cTID('RGBC'), clr);
      gdesc.putObject(cTID('FrFX'), cTID('FrFX'), frfx);
      Styles.setLayerStyleDescriptor(doc, layer0, gdesc);

  • It is possible to get info from the PDF

    Hi Everyone,
    I'm new baby to acrobat using javascript. It is possible to get info from the PDF.
    The Info contain like Color space, Trim size, which font  used depend on pages and which color is used for image & text.
    Thanks in advance.
    -yajiv

    Hi GKaiseril,
    Thanks for prompt response.
    Actually I'm a new baby to Acrobat script. Please explain briefly How do I write java script and execute.
    I'm familiar with Photoshop and Indesign Script. We are using ExtendedScript Toolkit editor for writing script.
    Thanks in advance.
    -yajiv

  • I have a new MacAir and don't know how to get info from my USB stick and my SD photo card.  Can anyone help me please?

    I have a new MacBook Air and don't know how to get info from my USB stick and get info from my SD card.  Can anyone help, please?

    Plug the stick and/or card into the appropriate slots on the side of your Air. Do you see icons for the devices appear on the desktop? Click into them to see what files are there.
    Matt

  • SWF-file not getting info from UI

    Hi All,
    I have a dialog that loads a flash-file. This swf-file gets info from my dialog and puts it in a datagrid.
    It works well, untill i try it the script on an other computer. The swf-file loads but is not receiving any information given through the UI.
    Is it a matter of installing extra options/software on the other pc?
    My computer (the script works) is a Windows XP with Adobe Design Premium.
    The other computer is also a Windows XP with indesign and flash player installed.
    Is there anyone who has an idea?
    THANKS
    Greetz,
    Glen

    Ok, i have the answer to my own question.
    I forgot that i had to change the settings in the settings manager of the flash player.

  • TS3771 Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    It may be because of your settings. You can modify that setting in System Preferences > Trackpad. Another way of making right-click is to click the app icon while holding the Control key

  • I got an android, turned off my imessage on my iphone and deactivated the iphone through apple support but I still don't get messages from people using iphones.  What's wrong?

    I got an android, turned off my imessage on my iphone and deactivated the iphone through apple support but I still don't get messages from people using iphones.  What's wrong?

    Go ahead and call AppleCare at 1-800-692-7753 and ask them to revoked your certificate

  • How do I get info from Active Directory and use it in my web-applications?

    I borrowed a nice piece of code for JNDI hits against Active Directory from this website: http://www.sbfsbo.com/mike/JndiTutorial/
    I have altered it and am trying to use it to retrieve info from our Active Directory Server.
    I altered it to point to my domain, and I want to retrieve a person's full name(CN), e-mail address and their work location.
    I've looked at lots of examples, I've tried lots of things, but I'm really missing something. I'm new to Java, new to JNDI, new to LDAP, new to AD and new to Tomcat. Any help would be so appreciated.
    Thanks,
    To show you the code, and the error message, I've changed the actual names I used for connection.
    What am I not coding right? I get an error message like this:
    javax.naming.NameNotFoundException[LDAP error code 32 - 0000208D: nameErr DSID:03101c9 problem 2001 (no Object), data 0,best match of DC=mycomp, DC=isd, remaining name dc=mycomp, dc=isd
    [code]
    import java.util.Hashtable;
    import java.util.Enumeration;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class JNDISearch2 {
    // initial context implementation
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String MY_HOST = "ldap://99.999.9.9:389/dc=mycomp,dc=isd";
    public static String MGR_DN = "CN=connectionID,OU=CO,dc=mycomp,dc=isd";
    public static String MGR_PW = "connectionPassword";
    public static String MY_SEARCHBASE = "dc=mycomp,dc=isd";
    public static String MY_FILTER =
    "(&(objectClass=user)(sAMAccountName=usersignonname))";
    // Specify which attributes we are looking for
    public static String MY_ATTRS[] =
    { "cn", "telephoneNumber", "postalAddress", "mail" };
    public static void main(String args[]) {
    try { //----------------------------------------------------------        
    // Binding
    // Hashtable for environmental information
    Hashtable env = new Hashtable();
    // Specify which class to use for our JNDI Provider
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    // Specify the host and port to use for directory service
    env.put(Context.PROVIDER_URL, MY_HOST);
    // Security Information
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS, MGR_PW);
    // Get a reference toa directory context
    DirContext ctx = new InitialDirContext(env);
    // Begin search
    // Specify the scope of the search
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    // Perform the actual search
    // We give it a searchbase, a filter and the constraints
    // containing the scope of the search
    NamingEnumeration results = ctx.search(MY_SEARCHBASE, MY_FILTER, constraints);
    // Now step through the search results
    while (results != null && results.hasMore()) {
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName() + ", " + MY_SEARCHBASE;
    System.out.println("Distinguished Name is " + dn);
    // Code for displaying attribute list
    Attributes ar = ctx.getAttributes(dn, MY_ATTRS);
    if (ar == null)
    // Has no attributes
    System.out.println("Entry " + dn);
    System.out.println(" has none of the specified attributes\n");
    else // Has some attributes
    // Determine the attributes in this record.
    for (int i = 0; i < MY_ATTRS.length; i++) {
    Attribute attr = ar.get(MY_ATTRS);
    if (attr != null) {
    System.out.println(MY_ATTRS[i] + ":");
    // Gather all values for the specified attribute.
    for (Enumeration vals = attr.getAll(); vals.hasMoreElements();) {
    System.out.println("\t" + vals.nextElement());
    // System.out.println ("\n");
    // End search
    } // end try
    catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    My JNDIRealm in Tomcat which actually does the initial authentication looks like this:(again, for security purposes, I've changed the access names and passwords, etc.)
    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://99.999.9.9:389"
    connectionName="CN=connectionId,OU=CO,dc=mycomp,dc=isd"
    connectionPassword="connectionPassword"
    referrals="follow"
    userBase="dc=mycomp,dc=isd"
    userSearch="(&(sAMAccountName={0})(objectClass=user))"
    userSubtree="true"
    roleBase="dc=mycomp, dc=isd"
    roleSearch="(uniqueMember={0})"
    rolename="cn"
    />
    I'd be so grateful for any help.
    Any suggestions about using the data from Active directory in web-application.
    Thanks.
    R.Vaughn

    By this time you probably have already solved this, but I think the problem is that the Search Base is relative to the attachment point specified with the PROVIDER_URL. Since you already specified "DC=mycomp,DC=isd" in that location, you merely want to set the search base to "". The error message is trying to tell you that it could only find half of the "DC=mycomp, DC=isd, DC=mycomp, DC=isd" that you specified for the search base.
    Hope that helps someone.
    Ken Gartner
    Quadrasis, Inc (We Unify Security, www -dot- quadrasis -dot- com)

  • TS4345 Can I use Migration Assistant to get info from a Macbook Pro that has a dead screen?

    I have a MacBook Pro 17 that the screen died on. I have a new MacBook Pro coming tomorrow and need to try to find a way to get the info from the old one to the new one. From the online info I saw on Migration Assist you need both screens to work to get a authentification code. Is there any work around? I don't know what system the old one is and have no idea what type of sharing may have been on or off.

    AFAIK, you can use the Setup Assistant on first boot w/o any authentication code or sharing stuff. See Pondini's Setup New Mac guide for details.

  • I set up the firefox sync from my computer to my ipad. can I use this acct somehow to get info from my ipad that i lost?

    i lost my ipad. i have a sync acct with firefox from my desktop to my ipad 2. how do i retrieve info from my ipad using the firefox sync that i set up

    Hi!
    Unfortunately the communication with iOS devices (iPhone and iPad) is only in one direction: data from your computers will go to your iPad but not the other way around.
    That's a limitation of Firefox Home.

  • WCF WSDL has no security info, but service uses SSL

    We need urgent help.
    Basically I am developing a Web Service client app. The service is written in .Net and uses SSL, but the WSDL does not contain any security info. We got one .pfx file and three .cer files. I followed [Importing PFX files into Java keystores|http://i-proving.ca/space/Technologies/JCE/Importing+PFX+files+into+Java+keystores] to convert the certificates to X509 format. Then I imported the PFX certificate into the keystore of my glassfish v3 (alias is s1as), the other three into the truststore. After passing the handshaking, our application gets "javax.xml.ws.soap.SOAPFaultException: No credentials found by which to authorize the user Missing authentication credentials [cert]". The serer side log shows that they received our HTTP requests and the HTTP header was good, however the SOAP envelope was not decrypted. How can I manually modify the WSDL file so that the NetBeans IDE will guide me to configure the security issue? I use NetBeans 6.8 and Glassfish v3.
    Thank you for your help in advance.
    Daniel

    have you try going into iTunes store on your computer and try download app there?
    it may say something.
    i got the same "Security Info Required" too but on iphone4S, so , now i cannot download any app too
    https://discussions.apple.com/thread/3922351

  • How to get info from a .class file at run time? thanks for help

    I need to get methods and properties (variables) from a .class file at run time.
    as u know, javap.exe can do that in an independent way. but i need to get info at run time once the .class or packeges have been changed, javap is not suitable in the case.
    i try to read data directly from .class file but it's hard to know the file format.
    e.g. a class looks like (java file):
    class MyClass extends Frame
    int i0;
    String s0;
    public String getName()
    if the file is compiled to .class file, how to get properties (variables: i0,s0) and methods String getName() from the .class file by an applicaton at run time?
    Doclet is not suitable for speed reason, it is too slow to get right info in right format.
    Thanks for any help, please write a little bit more in detail if you know.

    Use the Java Reflection API. Have a look at the Reflection section of the Java Tutorial located at http://java.sun.com/docs/books/tutorial/reflect/index.html

  • HT1349 My itunes account has been hacked? I can't access my account or any support thru itunes. I have reset my password but I need to get info from support about my account

    Why can't I get help from support???
    Apple has my account with over $100 in the account and now it's gone and no one will talk to me???
    What do I do???
    and..this is an itunes problem,
    I have 2 iphones, 4 ipods...but it's ITUNES!!! It's been hacked and apple acts like it's so incapable of being hacked!!!
    I NEED HELP....where's my money in my account???
    this is the best apple can do, i'm sorry but this aint no support service!!!
    goodbye

    I can login to my account, after that I see message 
    Your account has been closed
    It looks like the Terms of Use may have been violated. To have our support team look into this, please click the support link below.
    <input class="UiButton default" style="line-height:19px;color:#ffffff;font-family:'Segoe UI Web Semibold', 'Segoe UI Web Regular', 'Segoe UI', 'Segoe UI Symbol', HelveticaNeue-Medium, 'Helvetica Neue', Arial, sans-serif;height:2.142em;padding:4px 12px
    5px;margin:0px 0.5em 0px 0px;cursor:pointer;min-width:6em;background-color:#0072c6;border:0px;" type="button" value="More info" />
    So How Can go to my mail box? I already changed my password 3 time in this week.
    What can I do or What I have to do?
    When I go to Security info I'll got this massage but my email er*****@live.com
    have been closed also (Can't login to that mail).
    We're not ready for you yet
    Your 30 day waiting period ends on 1/15/2014. Please continue to wait and we'll send you an email when you can sign back in.
    If you've regained access to your old security info listed before, click "I found my security info" to get back in to your account and cancel any changes.
    Your old security info
    er*****@live.com

  • Broke my iphone i need to get info from it

    s there a way to get all of my apps and info from my iphone 5c to be installed on a new one

    You can download any purchases made via iTunes to a new device:
    Download past purchases
    If you have an iCloud backup of the old device, you can restore the new device from that backup when you set it up:
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Cheers,
    GB

  • Help needed with variable - trying to get data from Oracle using linked svr

    Sorry if I posted this in the wrong forum - I just didn't know where to post it.
    I'm trying to write a simple stored procedure to get data from an oracle database via a linked server in SQL Enterprise manager. I have no idea how to pass a variable to oracle.
    Here's how I would get the variable in SQL:
    declare @maxkey INTEGER
    select @maxkey= MAX(keyfield) from [server].Data_Warehouse.dbo.mytable
    select * from [server].Data_Warehouse.dbo.mydetailtable where keyfield=@maxkey
    the select statement I need to do in oracle would use that variable like this:
    select * from OPENQUERY(OracleLinkedServer,'select
    * from ORACLEDB.TABLE where keyfield > @maxkey')
    and I get this message: OLE DB provider "OraOLEDB.Oracle" for linked server "OracleLinkedServer" returned message "ORA-00936: missing expression".
    I realize that I can't pass the @maxkey variable to oracle - so how do I accomplish this?

    Please refer the example in this link which deals with Oracle date format.
    You can finnd a command DECODE which is used for date formats. If you have a look at whole theory then you will get an idea.
    Link:[Bulk insert SQL command to transfer data from SAP to Oracle|http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bulk-insert-sql-command-to-transfer-data-from-sap-to-oracle-cl_sql_connection-3780804]

Maybe you are looking for

  • ITunes won't open! Error -42404

    I was recently upgrading my computer with upgrades that my mac came up with for me and my computer shut down in the middle of it. When I turned it back on again the upgrade window was gone and when I tried to open my iTunes I got this error message:

  • User settings lost on startup

    I got a call this morning from a friend saying she started her computer this morning (G5 PPC tower running 10.4.8) and although she was logged in as usual (her user name is correct) all her settings were gone, i.e. mail wanted to be set up, desktop w

  • Adobe Document Services add-on  download  location  for CE 7.1 SP1

    Hi All,      Recently i downloaded the CE 7.1 SP1 and installed successfully, now i want enable the Adobe document service in CE 7.1. I found some forums we have to install the Add-on for Adobe document service, where can i get this add-on and how to

  • Bapi or Func for T-code LT0G

    Hi, everybody, Is there any bapi or function module for t-code: LT0G?  or anyone can show me how to do it using BDC?(we must generate a TO for every item, one item one TO)

  • Making A Xterm Use All Of The Screen In RatPoison

    After asking for some suggestions, I just gave RatPoison a try and I really like it. I do have a quick question that I hope someone will be able to help me with. When I run an Xterm, I can still see some of the background on the right and the bottom,