Multiple names or ip addreses in Standalone CA server web enrollment page

hello
is it possible to define multiple names or ip addresses in the name field of the certificate web request in
Standalone CA web enrollment page?
if yes, how can we separate them? i tested with comma but didn't work:
www.mycompany.lab,websrv.company.lab,10.1.1.1
i searched Google but didn't find solution.
thanks

Do not use the Web pages for that request.
Instead, use the certificates MMC focused on the local computer. The dialog box allows you to input multiple names. 
Brian
hi. as i mentioned my CA server is standalone. can we obtain certificate from standalone CA from MMC certificates snap-in?
according to technet:
request a certificate :
You can use this procedure to request certificates from an enterprise
CA only. To request certificates from a stand-alone CA, you need to request certificates by using Web pages. The Web page for a Windows-based CA is located at http://servername/certsrv,
where servername is
the name of the server hosting the CA.

Similar Messages

  • Associate Multiple Names with Alias addresses

    Hi all,
    I've done a lot of searching here and on the web in general to try and figure out how to associate different names with aliases. Can't seem to find anything that works with leopard mail.
    Basically, I want to be able to have, say, my main email account and one alias. The alias can be set up easily in the preferences area by adding the aliases after the initial email separated by commas. This doesn't seem possible with the "Full Name" section. The problem it creates is that the full name of the main account is always displayed with all aliases. I want a unique name for each alias.
    Any ideas on how to do this?
    Thanks,
    Remo

    Do not use the Web pages for that request.
    Instead, use the certificates MMC focused on the local computer. The dialog box allows you to input multiple names. 
    Brian
    hi. as i mentioned my CA server is standalone. can we obtain certificate from standalone CA from MMC certificates snap-in?
    according to technet:
    request a certificate :
    You can use this procedure to request certificates from an enterprise
    CA only. To request certificates from a stand-alone CA, you need to request certificates by using Web pages. The Web page for a Windows-based CA is located at http://servername/certsrv,
    where servername is
    the name of the server hosting the CA.

  • Multiple Names for sender account?

    Is it possible to have multiple sender 'names' on a single account.
    For example:
    I would like to have a personal 'name' for emailing friends...
    johnsy <[email protected]>
    and for emailing clients etc...
    a.johns <[email protected]>
    I've figured out how to add multiple addresses to one account, but not multiple names.
    Can this be done?

    Guess not.

  • Address book-multiple names in 1 entry

    How do I add multiple names to one address card? For example, if a married couple has different last names, like John Smith and Jane Doe, when I try to enter in the name field it only lets me enter 1 last name and 1 first name.

    Welcome to Apple Discussions.
    You don't. The public schema for the Address Book application was intended to support one record per individual identity. You should create separate records for each significant other individual.
    You can 'relate' records in a fashion by selecting the relationship field below birthday—usually with presets for friend and assistant set by default, as I recall—insert the name of the related party, and choose an appropriate indicator: father, mother, parent, brother, sister, child, friend, spouse, partner, assistant, manager, other or some custom field label you enter. When searching for all related parties, you can search for the last name, if you have included that information in the relationship data field, and all related records will be shown in a list.

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • Report 11gR1: multiple standalone Reports Server for one domain

    Hi all,
    In Oracle Froms, Report (11.1.1.6.0) environment is necessary to create more than one standalon Reports Server (iAS instances).
    1- How can we create multiple Reports Server (insatances) in same domain?
    2- How can use pro Reportsserver multiple engines (e.g. more than 3 engines)?
    Regards,
    Moh

    Hi Moh,
    Out of the box in 11g you get 1 standalone reports server (you can see this one via opmnctl status) and 1 in-process reports server than runs inside WLS_REPORTS managed server.
    You can create more standalone reports servers for your instance. Please follow the following support note
    Reference
    How Do You Create And Start Up A Standalone Reports Server In 11g R1 & R2? (Doc ID 961174.1)
    Regarding how to increase reports engines for each of your reports server you need to go to the Enterprise Manager console and select each of the reports servers you have and go to Reports --> Administration --> Basic menu and
    change " Maximum Engines" property for the value you need. You will need to re-start your Reports server after this.
    Hope this helps, Roberto

  • On my contact list I have multiple names for one person

    On my contact list I have multiple names for one person.

    The Account Owner can see the call/text logs for all lines on the account, but each line needs its own My Verizon account for messaging and backups.  Those lines will be listed as Account Members and will have limited info. available to them regarding the account.

  • Change standalone instance server name in EM Console.

    I am looking for a way to change the standalone instance name in OEM. The standalone instances are found under the farm. I need to change the servername to servername.domainname. I looked at the targets.xml file, it is for changing opmn components not the servernames as they display in the farm. I am using EM 10.1.2 on Windows 2003. I did change the hosts file but how does EM pick up the changes? Any ideas? Thanks.

    Hi,
    How To Change a Standalone Type OracleAS 10gR2 Mid Tier from one Database Based Metadata Repository To Another
    if are you doing above one then follow below metalink doc stesps
    Doc ID: 368419.1
    Thanks,
    Raja
    Edited by: Raja Marmam on Oct 15, 2009 10:35 AM
    Edited by: Raja Marmam on Oct 15, 2009 10:51 AM

  • Multiple names for sender account "Aaron Johns"

    I couldn't reply to your original message because you marked it answered!
    But to do what you asked, since you all ready have multiple names when you click on open "New" compose message you'll find at top under header's list,
    Account you should see highlighted up & down arrows.
    Click on them this should then bring your list of names.
    OS-X 10.4.8 "silly they haven't updated the OS tab!

    I couldn't reply to your original message because you
    marked it answered!
    But to do what you asked, since you all ready have
    multiple names when you click on open "New" compose
    message you'll find at top under header's list,
    Account you should see highlighted up & down arrows.
    Click on them this should then bring your list of
    names.
    Slight grammar oddities aside (no offense intended!), this may have just saved me from abandoning Mail.app. I've been using Entourage for years but decided it was time to switch. I waited patiently for about 8 hours as Mail imported all my messages and folders (mailboxes). Then came the fun part of manually duplicating my various accounts. In Entourage, I have about 7 or 8 different accounts for the very purpose of being able to have a different name or reply address. Many of these accounts us the same incoming server info (POP).
    The first time I tried to create a new account in Mail with a duplicate POP server and password, it stopped me and informed me this could not be done.
    I figured this to be a limitation of Mail - and one that could not live with. But if you're saying I can have multiple names to choose from when sending a message, this may solve the problem. A couple of questions:
    Precisely where do I add my list of optional sender names?
    Can I attribute a different reply to address as well as a different name to an outgoing message?
    Ooh... thought of one more...
    Can I have certain "from" addresses linked to certain names and vise-versa?
    I'll play with Mail a bit and see if I come with anything. In the meantime, any help is much appreciated.
    Now... when is Mail going to allow me to apply "labels" to messages much like Entourage's categories?
    Thanks!
    Darin
    Your humble crooner
    PowerMac G5 DP 2.7   Mac OS X (10.4.7)   Once you go three-way (monitors, that is), you never go back.

  • Multiple names of Customer in CMR

    Hi Friends,
    Where to enter multiple names and multiple address of Customer in Customer Master Record.
    with regards

    International version located in the general data tab not only in customer master data but also vendor master data,just clicked it then it will be popped up the window for you to select which version to be maintained,e.g.you double clicked the Arabic tab,then you could be continued to maintain the customer name and address in Arabic,please try it in your testing environment.

  • Multiple Names on My Ipod

    I have multiple names on my ipod for the same artist. For instance I have three 50 Cent all with different songs in them how can i consolidate all the songs

    Highlight all the tracks in question, then do a batch edit.
    Ctrl-I will bring up the Info window, put the artist/album name in the proper field as you want it to appear. This may help.
    I had a similar problem. For example, some of my tracks were labeled as "Beastie Boys" and some were labeled "The Beastie Boys" which caused my iPod to have two different listings. Removing the "The" consolidated them into one list.

  • How to Create A standalone Report Server and replce by in process server

    Hi all,
    I am new to oracle reports 10g, I have installed oracle applicaction server 10.1.2.0.2 on RHEL4 now i want to create a standalone report server and replace it by the in-process report server . I searched the net to get a proper step by step guide to do the above but dint got the same can anybody guide to step by step process to do the same and also file which are to be edited i user sh rwserver.sh -install server name bath=yes command and sh rwserver.sh server name bath=yes & commad to start it but i am not able to see the same in the enterprise manager . Thanks in advance...
    Also please tell me if it is recommeded by oracle to replace the standalone by inprocess server.

    Hi do i need to fire the following the command then
    sh rwserver.sh -install server name bath=yes
    sh rwserver.sh server name bath=yes &
    are these correct
    and then fire the following command to register it to enterprize manager
    ORACLE_HOME/bin/addNewServerTarget.sh reports_server_name
    Please correnct me if i am wrong
    ANd i already fired (sh rwserver.sh server name bath=yes & ) command which in turn create a fine name server name.conf in th ORACLE_HOME/report/conf
    now can i fire ( sh rwserver.sh -install server name bath=yes ) this command or there is some issues in that.
    what should be sequence of firing these commands
    and to test it after completing the activity
    Edited by: Mohammed Afzal on Jun 30, 2011 4:26 PM
    Edited by: Mohammed Afzal on Jun 30, 2011 4:28 PM

  • Error while installing standalone weblogic server.

    Hi,
    I tried to create standalone weblogic server instance from one of the ADE views. [http://www-apps.us.oracle.com:1100/~lymiller/Drop8StandaloneWLS.html#sample_install|http://www-apps.us.oracle.com:1100/~lymiller/Drop8StandaloneWLS.html#sample_install] .
    After running the command ./wlsconfig.sh in $ADE_VIEW_ROOT/fatools/tools/wlsconfig directory, I got the following error.
    AdminServer only cleanup ...
    ESS runtime not required. Delete ESS runtime bits
    Error: delete() failed. Do dumpStack() to see details.
    Problem invoking WLST - Traceback (innermost last):
    File "/ade/cpalanim_novthu30/fatools/tools/wlsconfig/fusion_apps_domain.py", line 2304, in ?
    File "/ade/cpalanim_novthu30/fatools/tools/wlsconfig/fusion_apps_domain.py", line 2290, in runIt
    File "/ade/cpalanim_novthu30/fatools/tools/wlsconfig/fusion_apps_domain.py", line 2220, in cleanUpDomain
    File "/tmp/WLSTOfflineIni20330.py", line 59, in delete
    at com.bea.plateng.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    at com.bea.plateng.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1490)
    at com.bea.plateng.domain.script.jython.WLScriptContext.delete(WLScriptContext.java:1285)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: No AppDeployment object with name ESSJobTypesAPP
    Anyone faced this issue ?

    The link that you posted is not working, saying page not found. Did you install WLS from oracle downloads site. Or did you install fusion/webcenter suite that installs the WLS also. I have installed Web Center Suite 11g that installed WLS also. I could create new Domains using config.sh without any errors using this WLS installer.
    Ravi Jegga

  • How can one use one specific security realm per application ? The realm-name attribute of the login-config tag of web.xml does not make any difference

    Hi,
    I have different sets of users coming from different databases and using different
    roles mapping for each of my web applications. I would like to configure a specific
    security realm per application in my weblogic server 7.0 . Is it possible ?
    I try to specify the realm-name of the login-config tag from the web-xml deployement
    descriptor but it doesn't make any difference. The default realm is always used.
    I also would like to tell the Weblogic server to use the default realm in case
    the realm isn't specified or isn't found. For example, the default would contains
    my admin users.
    Thanks a lot for your answer.
    Iz

    I thik this is a common mistake the ralm-name tag in the deployment descriptor is used
    just by the browser for display purposes (when it opens the basic auth dialog box) so as
    of now there is only 1 active realm which can have multiple providers as Kevin pointed
    out
    Kevin Lewis wrote:
    WebLogic 7 now ignores the realm-name tag (I found that out yesterday).
    My understanding is that there is only one realm active at a time for a domain
    (I would be interested in being contradicted in this).
    However, you can have multiple providers in each category of a realm: authentication,
    authorization, etc. Therefore, what you can do is key authentication, et al,
    off of some other information. We have our users enter their company, for example,
    and use the TextInputCallback to get it. You could also encode something in the
    initial page, based on the URL they hit, or whatever, and get that back in your
    callback.
    You can store that information in your own Principal implementation, and key off
    of that in your authorization provider, going to a different database as appropriate,
    or abstaining when a specific provider doesn’t have anything to say about a subject.
    Anyway, there should be a way to do it, even if it's more complex than you would
    have hoped.
    --Kevin

Maybe you are looking for

  • How can I use a weblogic server's root path in an XML?

    Hi all, I hope I posted this to the correct newsgroup... Anyway, I have a question about getting a Weblogic (9.2) server's root directory in an XML config file. I'm trying to use a log4j.xml file to set up a logger for my application, but when I use

  • Public variables in javascript

    how i can use public variables in javascript along with ADF. I am declaring a variable at the top of list but when an event is generated by ADF and i tries to access that variable, it gives me an error of undefined. Kindly help me

  • Should have thought of this before I bought new mac!!

    Have just taken delivery of a beautiful new mac but hadn't given any thought to the fact that all my music is on itunes on the old mac. How do I get my library,purchases ,playlists etc transferred across ? Thanks for any help

  • Report Export option on the top

    Hi In Oracle Apex reports, Can we have Report Export option on top and bottom simultaneously? Thanks,

  • String is too small.

    Hi. I want to concatenate html tags string so my real string getting big. vText := vText || HTF.tabledata(REC.OWNER,'CENTER') || chr(100); Then i want to write vText to html page. Firstly, i must create string that includes all of html codes. vText m