<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2439</id>
	<title>Nabble - EjbCA</title>
	<updated>2009-12-23T16:45:40Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/EjbCA-f2439.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EjbCA-f2439.html" />
	<subtitle type="html">EJBCA is a fully functional Certificate Authority using J2EE technology. EJBCA builds on the J2EE platform to create a robust, high performance, platform independent, flexible, and component based CA to be used standalone or integrated in any J2EE app. EjbCA home is &lt;a href=&quot;http://sourceforge.net/projects/ejbca/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26909304</id>
	<title>Re: Can I parse an certificate request using cert-cvc CertificateParser?</title>
	<published>2009-12-23T16:45:40Z</published>
	<updated>2009-12-23T16:45:40Z</updated>
	<author>
		<name>stupidtss</name>
	</author>
	<content type="html">Thanks very much. &amp;nbsp;Merry Christmas again.
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;stupidtss wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;In my web service project, I have a CVC certificate request in byte[] and I try to parse it into an CVCertificate using cert-cvc CertificateParser, I got the message
&lt;br&gt;java.lang.IllegalArgumentException: Expected first tag CV_CERTIFICATE but found REQ_AUTHENTICATION
&lt;br&gt;&lt;br&gt;Am I doing anything wrong? &amp;nbsp;Is the class CVCertificate appropriate to hold a cvc cert request? &amp;nbsp;Is there any way to &amp;quot;read&amp;quot; the byte[] cert request into one of the cert-cvc class for further manipulation?
&lt;br&gt;&lt;br&gt;Merry Christmas to everyone!
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can-I-parse-an-certificate-request-using-cert-cvc-CertificateParser--tp26885925p26909304.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26899636</id>
	<title>Re: Can I parse an certificate request using cert-cvc CertificateParser?</title>
	<published>2009-12-23T01:09:52Z</published>
	<updated>2009-12-23T01:09:52Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;the certificate parser has two methods that can be used. (see
&lt;br&gt;EjbcaWS.cvcRequest for examples).
&lt;br&gt;&lt;br&gt;If you don't know wich type of object, use parseCVCObject.
&lt;br&gt;-----
&lt;br&gt;CVCObject parsedObject =
&lt;br&gt;CertificateParser.parseCVCObject(Base64.decode(cvcreq.getBytes()));
&lt;br&gt;if (parsedObject instanceof CVCAuthenticatedRequest) {
&lt;br&gt;...
&lt;br&gt;-----
&lt;br&gt;&lt;br&gt;If you know it's a certificate, use parseCertificate.
&lt;br&gt;-----
&lt;br&gt;CVCertificate certObject =
&lt;br&gt;CertificateParser.parseCertificate(Base64.decode(b64cert));
&lt;br&gt;java.security.cert.Certificate iscert = new
&lt;br&gt;CardVerifiableCertificate(certObject);
&lt;br&gt;-----
&lt;br&gt;&lt;br&gt;Merry christmas,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26899636&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;stupidtss wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; In my web service project, I have a CVC certificate request in byte[] and I
&lt;br&gt;&amp;gt; try to parse it into an CVCertificate using cert-cvc CertificateParser, I
&lt;br&gt;&amp;gt; got the message
&lt;br&gt;&amp;gt; java.lang.IllegalArgumentException: Expected first tag CV_CERTIFICATE but
&lt;br&gt;&amp;gt; found REQ_AUTHENTICATION
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Am I doing anything wrong? &amp;nbsp;Is the class CVCertificate appropriate to hold a
&lt;br&gt;&amp;gt; cvc cert request? &amp;nbsp;Is there any way to &amp;quot;read&amp;quot; the byte[] cert request into
&lt;br&gt;&amp;gt; one of the cert-cvc class for further manipulation?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Merry Christmas to everyone!
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26899636&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can-I-parse-an-certificate-request-using-cert-cvc-CertificateParser--tp26885925p26899636.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26899358</id>
	<title>Re: External CRLs ingestion</title>
	<published>2009-12-23T00:36:57Z</published>
	<updated>2009-12-23T00:36:57Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Hi Leonard,
&lt;br&gt;&lt;br&gt;There is no way to import a CRL in EJBCA. It would not be used for anything.
&lt;br&gt;&lt;br&gt;We are planning to create tools to import CRLs in the external OCSP
&lt;br&gt;responder, it's rather easy. It's not developed yet though.
&lt;br&gt;If you have development skills you can o it yourself though, all
&lt;br&gt;information is open.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26899358&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;le0nard wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On my EJBCA PKI, I have a CA signed by an external CA.
&lt;br&gt;&amp;gt; By now I didn't find the way to ingest CRLs coming from this external CA.
&lt;br&gt;&amp;gt; These CRLs should inform is my Ca or a CA in ots hierarchy has been revoked.
&lt;br&gt;&amp;gt; Someone can help ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I also tried to use OCSP responder, but a responder can only ingest
&lt;br&gt;&amp;gt; revokation lists by editing its database. Can It ingest CRLs also ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; Leonard
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26899358&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/External-CRLs-ingestion-for-validation-tp26897632p26899358.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26897632</id>
	<title>External CRLs ingestion for validation</title>
	<published>2009-12-23T00:22:13Z</published>
	<updated>2009-12-23T02:20:47Z</updated>
	<author>
		<name>le0nard</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;On my EJBCA PKI, I have a CA signed by an external CA.
&lt;br&gt;By now I didn't find the way to ingest CRLs coming from this external CA in order to validate certificate. These CRLs should inform is my CA or a CA in its hierarchy has been revoked. Someone can help ?
&lt;br&gt;&lt;br&gt;I also tried to use OCSP responder, but a responder can only ingest revokation lists by editing its database. Can It ingest CRLs also ?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Leonard&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/External-CRLs-ingestion-for-validation-tp26897632p26897632.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26885925</id>
	<title>Can I parse an certificate request using cert-cvc CertificateParser?</title>
	<published>2009-12-22T01:48:24Z</published>
	<updated>2009-12-22T01:48:24Z</updated>
	<author>
		<name>stupidtss</name>
	</author>
	<content type="html">In my web service project, I have a CVC certificate request in byte[] and I try to parse it into an CVCertificate using cert-cvc CertificateParser, I got the message
&lt;br&gt;java.lang.IllegalArgumentException: Expected first tag CV_CERTIFICATE but found REQ_AUTHENTICATION
&lt;br&gt;&lt;br&gt;Am I doing anything wrong? &amp;nbsp;Is the class CVCertificate appropriate to hold a cvc cert request? &amp;nbsp;Is there any way to &amp;quot;read&amp;quot; the byte[] cert request into one of the cert-cvc class for further manipulation?
&lt;br&gt;&lt;br&gt;Merry Christmas to everyone!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can-I-parse-an-certificate-request-using-cert-cvc-CertificateParser--tp26885925p26885925.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26881056</id>
	<title>eBuppies.com - Offers New Online Dating Site for Black Urban Professionals</title>
	<published>2009-12-21T14:26:35Z</published>
	<updated>2009-12-21T14:26:35Z</updated>
	<author>
		<name>ebuppies admin</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/tellafriend.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/tellafriend.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;December 18, 2009
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Dear Friend, &amp;lt;&lt;a href=&quot;http://www.ebuppies.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;eBuppies.com (www.ebuppies.com &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;) is a new online dating site that is dedicated to providing singles
&lt;br&gt;from all over with the opportunity to connect with other buppy singles
&lt;br&gt;in their local area or anywhere of their choice. 
&lt;br&gt;&lt;br&gt;&amp;nbsp;More and more buppy singles are going online to connect with others
&lt;br&gt;because going out week after week to nightclubs and bars can be
&lt;br&gt;tiresome, as well as expensive. eBuppies.com makes dating easy by
&lt;br&gt;hosting hundreds of profiles of different singles looking for love.
&lt;br&gt;Buppies can join on a monthly basis for less than they would probably
&lt;br&gt;pay for one night at a nightclub or bar.
&lt;br&gt;&lt;br&gt;&amp;nbsp;Buppies who are looking for love, romance or just friendship now have
&lt;br&gt;a unique resource that can help them discover their future soul mate:
&lt;br&gt;eBuppies.com. 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Although high technology drives eBuppies.com, the online dating site
&lt;br&gt;is simple and easy for buppies to navigate. Buppies can register,
&lt;br&gt;browse, search and contact other singles
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;at no charge. There is also no charge for buppies to upload a photo
&lt;br&gt;with their profile. A control panel enables buppies to customize
&lt;br&gt;preferences based on their individual requirements. The control panel
&lt;br&gt;also blocks undesired contacts for buppies' convenience.
&lt;br&gt;&lt;br&gt;&amp;nbsp;The pricing for membership is quite cost effective especially for the
&lt;br&gt;average buppy. By January 31 2010 visitors can sign up for 1 Month and
&lt;br&gt;get 30 Days extra membership exclusively through our THIRTYPLUS
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;promo code.
&lt;br&gt;&lt;br&gt;&amp;nbsp;For more information, visit www.ebuppies.com.
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;About eBuppies.com:
&lt;br&gt;&lt;br&gt;&amp;nbsp;eBuppies.com is a new online dating service based in San Francisco.
&lt;br&gt;Its goal is to provide easy and affordable online dating to Black
&lt;br&gt;Urban Professionals by using state of the art chat systems, instant
&lt;br&gt;messaging, and forum technology to satisfy today's evolving online
&lt;br&gt;community demands.
&lt;br&gt;&lt;br&gt;&amp;nbsp;Terms of use &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/index.php?page=terms_of_use&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/index.php?page=terms_of_use&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Contact Info:
&lt;br&gt;&lt;br&gt;&amp;nbsp;Name: Mr. F. Jackson
&lt;br&gt;&lt;br&gt;&amp;nbsp;Address: 1230 Market Street, #252
&lt;br&gt;&lt;br&gt;&amp;nbsp;City: San Francisco
&lt;br&gt;&lt;br&gt;&amp;nbsp;State: California
&lt;br&gt;&lt;br&gt;&amp;nbsp;Country: United States
&lt;br&gt;&lt;br&gt;&amp;nbsp;Zip: 94102
&lt;br&gt;&lt;br&gt;&amp;nbsp;Web Address: www.ebuppies.com &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Phone: 510-575-4124
&lt;br&gt;&lt;br&gt;&amp;nbsp;/
&lt;br&gt;&lt;br&gt;&amp;nbsp;/
&lt;br&gt;&lt;br&gt;&amp;nbsp;/ / &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Site Statistics
&lt;br&gt;&lt;br&gt;&amp;nbsp;Special Offer!
&lt;br&gt;&lt;br&gt;&amp;nbsp;			Members in Last Week: 		
&lt;br&gt;&amp;nbsp;			1 		
&lt;br&gt;&lt;br&gt;&amp;nbsp;Total Male eBuppies:
&lt;br&gt;&amp;nbsp;			10 		
&lt;br&gt;&lt;br&gt;&amp;nbsp;			Total Female eBuppies: 		
&lt;br&gt;&amp;nbsp;15 		
&lt;br&gt;&lt;br&gt;&amp;nbsp;Pictures in Last Week: 		
&lt;br&gt;&amp;nbsp;0 		
&lt;br&gt;&lt;br&gt;&amp;nbsp;Members online: 		
&lt;br&gt;&amp;nbsp;0
&lt;br&gt;&lt;br&gt;&amp;nbsp;News
&lt;br&gt;&lt;br&gt;&amp;nbsp;Women More Likely to Snoop Than Men
&lt;br&gt;&lt;br&gt;&amp;nbsp;Nov 24, 2009
&lt;br&gt;&lt;br&gt;&amp;nbsp;In the new film, Little Black Book, Brittany Murphy's character
&lt;br&gt;engages in some high-tech snooping on her new boyfriend. Based...
&lt;br&gt;&lt;br&gt;&amp;nbsp;				more &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Internet Dating More Successful than Thought
&lt;br&gt;&lt;br&gt;&amp;nbsp;Nov 24, 2009
&lt;br&gt;&lt;br&gt;&amp;nbsp;Internet dating is proving a much more successful way to find
&lt;br&gt;long-term romance and friendship for thousands of people than...
&lt;br&gt;&lt;br&gt;&amp;nbsp;				more &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;			All News &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Poll
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Success Stories
&lt;br&gt;&lt;br&gt;&amp;nbsp;A Sister's Story
&lt;br&gt;&lt;br&gt;&amp;nbsp;Sep 11, 2009
&lt;br&gt;&lt;br&gt;&amp;nbsp;by				 			Monique &amp;lt;javascript:popUpScrollWindow2(&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;What initially started out as something to relieve a little boredom
&lt;br&gt;and to have some fun turned into one of...
&lt;br&gt;&lt;br&gt;&amp;nbsp;more &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;All Stories &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Welcome to eBuppies.com
&lt;br&gt;&lt;br&gt;&amp;nbsp;See why eBuppies.com is the fastest growing Black Urban Professional
&lt;br&gt;relationship site on the web. Create your eBuppies.com profile to
&lt;br&gt;begin the exciting journey towards finding your match.
&lt;br&gt;&lt;br&gt;&amp;nbsp;Members online: 0 &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/onlineusers.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/onlineusers.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Don't stay alone, Join Now for Free
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Newest eBuppies
&lt;br&gt;&lt;br&gt;&amp;nbsp;							 						kldixson 			 			 &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;							 						systemsthinking 			
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Show full list &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Newest Profiles
&lt;br&gt;&lt;br&gt;&amp;nbsp;brotherX &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Age:*
&lt;br&gt;&amp;nbsp;40
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Gender:*
&lt;br&gt;&amp;nbsp;Man
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Looking for:*
&lt;br&gt;&amp;nbsp;Woman
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Location:*
&lt;br&gt;&amp;nbsp;Albany, 
&lt;br&gt;&lt;br&gt;&amp;nbsp;California, 
&lt;br&gt;&lt;br&gt;&amp;nbsp;United States
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;javascript:popUpScrollWindow2(&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;No Pictures
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Active wihin 1 week*
&lt;br&gt;&amp;nbsp;View Profile &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;kldixon &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Age:*
&lt;br&gt;&amp;nbsp;40
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Gender:*
&lt;br&gt;&amp;nbsp;Man
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Looking for:*
&lt;br&gt;&amp;nbsp;Woman
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Location:*
&lt;br&gt;&amp;nbsp;Oakland, 
&lt;br&gt;&lt;br&gt;&amp;nbsp;California, 
&lt;br&gt;&lt;br&gt;&amp;nbsp;United States
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;javascript:popUpScrollWindow2(&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;No Pictures
&lt;br&gt;&lt;br&gt;&amp;nbsp;*Active wihin 1 week*
&lt;br&gt;&amp;nbsp;View Profile &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;Login &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 				 Privacy &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 Terms of Use &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 Services &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 FAQ's &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 Articles &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 Affiliate &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 	 Invite a Friend &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp;| 		 Feedback &amp;lt;&lt;a href=&quot;http://www.ebuppies.com/signup.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/signup.php&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;tbody&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td colspan=3 align=right &amp;gt;&amp;lt;font face=&amp;quot;arial,verdana&amp;quot;
&lt;br&gt;size=&amp;quot;2&amp;quot;&amp;gt;If you do not want to receive any more newsletters, 
&lt;br&gt;&lt;a href=&quot;http://ebuppies.com/emailserv/?p=unsubscribe&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ebuppies.com/emailserv/?p=unsubscribe&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&lt;/a&gt;&lt;br&gt;To update your preferences and to unsubscribe visit
&lt;br&gt;&lt;a href=&quot;http://ebuppies.com/emailserv/?p=preferences&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ebuppies.com/emailserv/?p=preferences&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&lt;/a&gt;&lt;br&gt;Forward a Message to Someone
&lt;br&gt;&lt;a href=&quot;http://ebuppies.com/emailserv/?p=forward&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&amp;mid=20&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ebuppies.com/emailserv/?p=forward&amp;uid=02c5d9fc29d5537a21d8131e98ce6495&amp;mid=20&lt;/a&gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;font face=&amp;quot;arial,verdana&amp;quot; size=&amp;quot;1&amp;quot;&amp;gt;CUBEMEDIALAB&amp;lt;br&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1230 Market Street&amp;lt;br&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Suite 252&amp;lt;br&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; San Francisco, California 94102&amp;lt;br&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; USA&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td align=&amp;quot;right&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&lt;a href=&quot;http://www.cubemedialab.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cubemedialab.com&lt;/a&gt;&amp;quot;
&lt;br&gt;target=&amp;quot;_blank&amp;quot;&amp;gt;&amp;lt;img border=&amp;quot;0&amp;quot;
&lt;br&gt;src=&amp;quot;&lt;a href=&quot;http://www.ebuppies.com/images/cube_logo.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebuppies.com/images/cube_logo.gif&lt;/a&gt;&amp;quot; alt=&amp;quot;Try digital design
&lt;br&gt;with cubemedialab.com!&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/tbody&amp;gt;
&lt;br&gt;&amp;lt;/table&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Powered by PHPlist, www.phplist.com --
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881056&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/eBuppies.com---Offers-New-Online-Dating-Site-for-Black-Urban-Professionals-tp26881056p26881056.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26875600</id>
	<title>Re: Bug or feature : list end entities with expiring certificates</title>
	<published>2009-12-21T07:33:31Z</published>
	<updated>2009-12-21T07:33:31Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">&lt;br&gt;This is fixed in 3.9.3 that was just released.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;&lt;br&gt;Tham Wickenberg wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello Maxime,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; We have recently made changes to the expiration notifications and I 
&lt;br&gt;&amp;gt; believe we may have missed how this affect the &amp;quot;Search/edit end 
&lt;br&gt;&amp;gt; entities&amp;quot; functionality.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you for pointing this out!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have created &lt;a href=&quot;https://jira.primekey.se/browse/ECA-1517&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jira.primekey.se/browse/ECA-1517&lt;/a&gt;&amp;nbsp;so that this 
&lt;br&gt;&amp;gt; issue should be investigated and fixed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Tham Wickenberg
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; VERAC Maxime wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hello everybody,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; I'm a bit disappointed by the behaviour of EJBCA.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; When, in the &amp;quot;search/edit end entities&amp;quot; menu, I try to list the end entities with certificates expiring within 30 days, it does not work for certificates having their status set to &amp;quot;21&amp;quot;, corresponding to the certificates for which an e-mail notification has been done regarding their forthcoming expiration...
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Does this correspond to the normal behaviour ?
&lt;br&gt;&amp;gt;&amp;gt; Is it possible to use the Certificate Expiration Service without modifying the status of the certificate ?
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Maxime VERAC
&lt;br&gt;&amp;gt;&amp;gt; Consultant
&lt;br&gt;&amp;gt;&amp;gt; Fixe : +33 (0)1 49 03 25 46
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; solucom
&lt;br&gt;&amp;gt;&amp;gt; Tour Franklin : 100 - 101 terrasse Boieldieu 
&lt;br&gt;&amp;gt;&amp;gt; 92042 Paris La Défense Cedex
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ________________________________
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; De: Johan Eklund [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-support@...&lt;/a&gt;]
&lt;br&gt;&amp;gt;&amp;gt; Date: jeu. 17/12/2009 09:05
&lt;br&gt;&amp;gt;&amp;gt; À: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Objet : Re: [Ejbca-develop] Error ant install - jboss web service
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi Joenateen,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The error message that counts in that pretty verbose message is:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;quot;java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This means that JBoss's built in Tomcat can't start since some other application (or an old running JBoss/Tomcat) is using port 8080 already..
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt;&amp;gt; Johan
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Joenateen skrev:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Ok, Don't laugh me of the forum for this question. I am checking the JBOSS
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; logs after a failed attempt at installing the EJBCA and I see that it is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; complaining about a web service here. Do I have to have a seperate web
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; server installed for this to work? Does JBOSS handle that.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; And yes I am a newbie to EJBCA.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 2009-12-16 13:09:01,516 ERROR
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ERRORS FOR DETAILS):
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; missing the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s):
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; LifecycleException: &amp;nbsp;Protocol handler initialization failed:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 2009-12-16 13:09:01,516 INFO
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)]
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Started in 2m:2s:506ms
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;&amp;gt;&amp;gt; Take advantage of Verizon's best-in-class app development support
&lt;br&gt;&amp;gt;&amp;gt; A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;&amp;gt;&amp;gt; Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Ejbca-develop mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;&amp;gt; Take advantage of Verizon's best-in-class app development support
&lt;br&gt;&amp;gt; A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;&amp;gt; Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Ejbca-develop mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875600&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26875600.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26875805</id>
	<title>EJBCA 3.9.3</title>
	<published>2009-12-21T07:19:27Z</published>
	<updated>2009-12-21T07:19:27Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;In time for christmas the EJBCA team would like to give you a christmas 
&lt;br&gt;present in the form of EJBCA 3.9.3. This is a release that fixes one 
&lt;br&gt;unfortunate regression in 3.9.2, and also adds some new features and 
&lt;br&gt;plenty of improvements and bugfixes. 42 issues in total have been resolved.
&lt;br&gt;&lt;br&gt;Some minor features and options and some bug fixes and stabilizations.
&lt;br&gt;&lt;br&gt;Noteworthy changes:
&lt;br&gt;- Fixed a regression in 3.9.2 where you could not upload files in the 
&lt;br&gt;admin GUI.
&lt;br&gt;- Certificate profiles can now specify a different signature algorithm 
&lt;br&gt;than the CA. Useful to start migrating SHA1 CAs to issue SHA256 
&lt;br&gt;certificates.
&lt;br&gt;- Possibility to use part of user data in LDAP DN but not in certificate 
&lt;br&gt;DN when publishing certificate to LDAP.
&lt;br&gt;- Possibility to set fixed end date of certificates in certificate 
&lt;br&gt;profile and CA configuration.
&lt;br&gt;- Possibility to configure several notification services for expiring 
&lt;br&gt;certificates, notifying at different times, i.e. 30 days, 7 days, etc.
&lt;br&gt;- Browser enrollment tested with Windows 7.
&lt;br&gt;- ECC improvements and fixes for CAs and HSMs, CA renew keys, CA import, 
&lt;br&gt;brainpool curves, explicit ec parameters, clientToolBox etc.
&lt;br&gt;- GUI improvement to the admin GUI with nicer navigation menu and CSS. 
&lt;br&gt;Contributed by Linagora, France.
&lt;br&gt;- cert-cvc: fixed rare possibility to get bad encoding of EC points in 
&lt;br&gt;certificates. Contributed by DGBK, Netherlands.
&lt;br&gt;- CVC CA fixes and improvements for EAC PKI, approvals, import CAs, fix 
&lt;br&gt;cli info command, .cvcert instear of .crt when downloading certs, etc.
&lt;br&gt;- Don't publish certificates for inactive CA services to LDAP.
&lt;br&gt;- Fix so renewing CA keys in admin GUI does not reload all CA tokens.
&lt;br&gt;- Fixed an OutOfMemory error when failing to publish large CRLs with 
&lt;br&gt;connection closed error.
&lt;br&gt;- Fix download issues with IE for exported CA keystores.
&lt;br&gt;- Many small optimizations, fixes and improvements.
&lt;br&gt;&lt;br&gt;Read the full changelog for details.
&lt;br&gt;&lt;br&gt;For upgrade instructions, please see UPGRADE.
&lt;br&gt;&lt;br&gt;Merry christmas,
&lt;br&gt;The EJBCA Team.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-news mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875805&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-news@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-news&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-news&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---News-f2440.html&quot; embed=&quot;fixTarget[2440]&quot; target=&quot;_top&quot; &gt;EjbCA - News&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EJBCA-3.9.3-tp26875805p26875805.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26875787</id>
	<title>EJBCA 3.9.3</title>
	<published>2009-12-21T07:19:27Z</published>
	<updated>2009-12-21T07:19:27Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;In time for christmas the EJBCA team would like to give you a christmas 
&lt;br&gt;present in the form of EJBCA 3.9.3. This is a release that fixes one 
&lt;br&gt;unfortunate regression in 3.9.2, and also adds some new features and 
&lt;br&gt;plenty of improvements and bugfixes. 42 issues in total have been resolved.
&lt;br&gt;&lt;br&gt;Some minor features and options and some bug fixes and stabilizations.
&lt;br&gt;&lt;br&gt;Noteworthy changes:
&lt;br&gt;- Fixed a regression in 3.9.2 where you could not upload files in the 
&lt;br&gt;admin GUI.
&lt;br&gt;- Certificate profiles can now specify a different signature algorithm 
&lt;br&gt;than the CA. Useful to start migrating SHA1 CAs to issue SHA256 
&lt;br&gt;certificates.
&lt;br&gt;- Possibility to use part of user data in LDAP DN but not in certificate 
&lt;br&gt;DN when publishing certificate to LDAP.
&lt;br&gt;- Possibility to set fixed end date of certificates in certificate 
&lt;br&gt;profile and CA configuration.
&lt;br&gt;- Possibility to configure several notification services for expiring 
&lt;br&gt;certificates, notifying at different times, i.e. 30 days, 7 days, etc.
&lt;br&gt;- Browser enrollment tested with Windows 7.
&lt;br&gt;- ECC improvements and fixes for CAs and HSMs, CA renew keys, CA import, 
&lt;br&gt;brainpool curves, explicit ec parameters, clientToolBox etc.
&lt;br&gt;- GUI improvement to the admin GUI with nicer navigation menu and CSS. 
&lt;br&gt;Contributed by Linagora, France.
&lt;br&gt;- cert-cvc: fixed rare possibility to get bad encoding of EC points in 
&lt;br&gt;certificates. Contributed by DGBK, Netherlands.
&lt;br&gt;- CVC CA fixes and improvements for EAC PKI, approvals, import CAs, fix 
&lt;br&gt;cli info command, .cvcert instear of .crt when downloading certs, etc.
&lt;br&gt;- Don't publish certificates for inactive CA services to LDAP.
&lt;br&gt;- Fix so renewing CA keys in admin GUI does not reload all CA tokens.
&lt;br&gt;- Fixed an OutOfMemory error when failing to publish large CRLs with 
&lt;br&gt;connection closed error.
&lt;br&gt;- Fix download issues with IE for exported CA keystores.
&lt;br&gt;- Many small optimizations, fixes and improvements.
&lt;br&gt;&lt;br&gt;Read the full changelog for details.
&lt;br&gt;&lt;br&gt;For upgrade instructions, please see UPGRADE.
&lt;br&gt;&lt;br&gt;Merry christmas,
&lt;br&gt;The EJBCA Team.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875787&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EJBCA-3.9.3-tp26875787p26875787.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26841567</id>
	<title>Re: Bug or feature : list end entities with expiring certificates</title>
	<published>2009-12-18T02:15:09Z</published>
	<updated>2009-12-18T02:15:09Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">Hello Maxime,
&lt;br&gt;&lt;br&gt;We have recently made changes to the expiration notifications and I 
&lt;br&gt;believe we may have missed how this affect the &amp;quot;Search/edit end 
&lt;br&gt;entities&amp;quot; functionality.
&lt;br&gt;&lt;br&gt;Thank you for pointing this out!
&lt;br&gt;&lt;br&gt;I have created &lt;a href=&quot;https://jira.primekey.se/browse/ECA-1517&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://jira.primekey.se/browse/ECA-1517&lt;/a&gt;&amp;nbsp;so that this 
&lt;br&gt;issue should be investigated and fixed.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Tham Wickenberg
&lt;br&gt;&lt;br&gt;VERAC Maxime wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello everybody,
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; I'm a bit disappointed by the behaviour of EJBCA.
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; When, in the &amp;quot;search/edit end entities&amp;quot; menu, I try to list the end entities with certificates expiring within 30 days, it does not work for certificates having their status set to &amp;quot;21&amp;quot;, corresponding to the certificates for which an e-mail notification has been done regarding their forthcoming expiration...
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; Does this correspond to the normal behaviour ?
&lt;br&gt;&amp;gt; Is it possible to use the Certificate Expiration Service without modifying the status of the certificate ?
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; Maxime VERAC
&lt;br&gt;&amp;gt; Consultant
&lt;br&gt;&amp;gt; Fixe : +33 (0)1 49 03 25 46
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt;&amp;gt; 
&lt;br&gt;&amp;gt; solucom
&lt;br&gt;&amp;gt; Tour Franklin : 100 - 101 terrasse Boieldieu 
&lt;br&gt;&amp;gt; 92042 Paris La Défense Cedex
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ________________________________
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; De: Johan Eklund [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-support@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Date: jeu. 17/12/2009 09:05
&lt;br&gt;&amp;gt; À: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Objet : Re: [Ejbca-develop] Error ant install - jboss web service
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Joenateen,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The error message that counts in that pretty verbose message is:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;quot;java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This means that JBoss's built in Tomcat can't start since some other application (or an old running JBoss/Tomcat) is using port 8080 already..
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt; Johan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Joenateen skrev:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Ok, Don't laugh me of the forum for this question. I am checking the JBOSS
&lt;br&gt;&amp;gt;&amp;gt; logs after a failed attempt at installing the EJBCA and I see that it is
&lt;br&gt;&amp;gt;&amp;gt; complaining about a web service here. Do I have to have a seperate web
&lt;br&gt;&amp;gt;&amp;gt; server installed for this to work? Does JBOSS handle that.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; And yes I am a newbie to EJBCA.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2009-12-16 13:09:01,516 ERROR
&lt;br&gt;&amp;gt;&amp;gt; [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main)
&lt;br&gt;&amp;gt;&amp;gt; Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS
&lt;br&gt;&amp;gt;&amp;gt; ERRORS FOR DETAILS):
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is
&lt;br&gt;&amp;gt;&amp;gt; missing the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing
&lt;br&gt;&amp;gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following
&lt;br&gt;&amp;gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the
&lt;br&gt;&amp;gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s):
&lt;br&gt;&amp;gt;&amp;gt; LifecycleException: &amp;nbsp;Protocol handler initialization failed:
&lt;br&gt;&amp;gt;&amp;gt; java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following
&lt;br&gt;&amp;gt;&amp;gt; reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2009-12-16 13:09:01,516 INFO
&lt;br&gt;&amp;gt;&amp;gt; [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss
&lt;br&gt;&amp;gt;&amp;gt; (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)]
&lt;br&gt;&amp;gt;&amp;gt; Started in 2m:2s:506ms
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;&amp;gt; Take advantage of Verizon's best-in-class app development support
&lt;br&gt;&amp;gt; A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;&amp;gt; Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Ejbca-develop mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841567&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26841567.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26840675</id>
	<title>Bug or feature : list end entities with expiring certificates</title>
	<published>2009-12-18T00:37:41Z</published>
	<updated>2009-12-18T00:37:41Z</updated>
	<author>
		<name>Maxime_V</name>
	</author>
	<content type="html">Hello everybody,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I'm a bit disappointed by the behaviour of EJBCA.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;When, in the &amp;quot;search/edit end entities&amp;quot; menu, I try to list the end entities with certificates expiring within 30 days, it does not work for certificates having their status set to &amp;quot;21&amp;quot;, corresponding to the certificates for which an e-mail notification has been done regarding their forthcoming expiration...
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Does this correspond to the normal behaviour ?
&lt;br&gt;Is it possible to use the Certificate Expiration Service without modifying the status of the certificate ?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Best regards,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Maxime VERAC
&lt;br&gt;Consultant
&lt;br&gt;Fixe : +33 (0)1 49 03 25 46
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxime.verac@...&lt;/a&gt;&amp;gt; 
&lt;br&gt;solucom
&lt;br&gt;Tour Franklin : 100 - 101 terrasse Boieldieu 
&lt;br&gt;92042 Paris La Défense Cedex
&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;&lt;br&gt;De: Johan Eklund [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-support@...&lt;/a&gt;]
&lt;br&gt;Date: jeu. 17/12/2009 09:05
&lt;br&gt;À: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-develop@...&lt;/a&gt;
&lt;br&gt;Objet : Re: [Ejbca-develop] Error ant install - jboss web service
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Joenateen,
&lt;br&gt;&lt;br&gt;The error message that counts in that pretty verbose message is:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;quot;java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080&amp;quot;
&lt;br&gt;&lt;br&gt;This means that JBoss's built in Tomcat can't start since some other application (or an old running JBoss/Tomcat) is using port 8080 already..
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Joenateen skrev:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Ok, Don't laugh me of the forum for this question. I am checking the JBOSS
&lt;br&gt;&amp;gt; logs after a failed attempt at installing the EJBCA and I see that it is
&lt;br&gt;&amp;gt; complaining about a web service here. Do I have to have a seperate web
&lt;br&gt;&amp;gt; server installed for this to work? Does JBOSS handle that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And yes I am a newbie to EJBCA.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 ERROR
&lt;br&gt;&amp;gt; [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main)
&lt;br&gt;&amp;gt; Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS
&lt;br&gt;&amp;gt; ERRORS FOR DETAILS):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is
&lt;br&gt;&amp;gt; missing the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s):
&lt;br&gt;&amp;gt; LifecycleException: &amp;nbsp;Protocol handler initialization failed:
&lt;br&gt;&amp;gt; java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following
&lt;br&gt;&amp;gt; reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 INFO
&lt;br&gt;&amp;gt; [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss
&lt;br&gt;&amp;gt; (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)]
&lt;br&gt;&amp;gt; Started in 2m:2s:506ms
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26840675&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;winmail.dat&lt;/strong&gt; (12K) &lt;a href=&quot;http://old.nabble.com/attachment/26840675/0/winmail.dat&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26840675.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26830297</id>
	<title>Re: Error ant install - jboss web service</title>
	<published>2009-12-17T08:00:09Z</published>
	<updated>2009-12-17T08:00:09Z</updated>
	<author>
		<name>Joenateen</name>
	</author>
	<content type="html">Yes this was the problem. I checked netstat and it was in use. I made the mistake of installing all of NeatBeans 6.x and it installed a service that was taking the port. I remove the install rebooted and started from scratch. I also used JBOSS 4.2.3. So basically, users beware of installing Netbeans with this. Thanks for the help!
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Johan Eklund wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi Joenateen,
&lt;br&gt;&lt;br&gt;The error message that counts in that pretty verbose message is:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;quot;java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080&amp;quot;
&lt;br&gt;&lt;br&gt;This means that JBoss's built in Tomcat can't start since some other application (or an old running JBoss/Tomcat) is using port 8080 already..
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Joenateen skrev:
&lt;br&gt;&amp;gt; Ok, Don't laugh me of the forum for this question. I am checking the JBOSS
&lt;br&gt;&amp;gt; logs after a failed attempt at installing the EJBCA and I see that it is
&lt;br&gt;&amp;gt; complaining about a web service here. Do I have to have a seperate web
&lt;br&gt;&amp;gt; server installed for this to work? Does JBOSS handle that. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And yes I am a newbie to EJBCA.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 ERROR
&lt;br&gt;&amp;gt; [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main)
&lt;br&gt;&amp;gt; Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS
&lt;br&gt;&amp;gt; ERRORS FOR DETAILS):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is
&lt;br&gt;&amp;gt; missing the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s):
&lt;br&gt;&amp;gt; LifecycleException: &amp;nbsp;Protocol handler initialization failed:
&lt;br&gt;&amp;gt; java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following
&lt;br&gt;&amp;gt; reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 INFO 
&lt;br&gt;&amp;gt; [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss
&lt;br&gt;&amp;gt; (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)]
&lt;br&gt;&amp;gt; Started in 2m:2s:506ms
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact info@primekey.se for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;Ejbca-develop@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26830297.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26824524</id>
	<title>Re: Error ant install - jboss web service</title>
	<published>2009-12-17T00:05:11Z</published>
	<updated>2009-12-17T00:05:11Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">Hi Joenateen,
&lt;br&gt;&lt;br&gt;The error message that counts in that pretty verbose message is:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;quot;java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080&amp;quot;
&lt;br&gt;&lt;br&gt;This means that JBoss's built in Tomcat can't start since some other application (or an old running JBoss/Tomcat) is using port 8080 already..
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Joenateen skrev:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Ok, Don't laugh me of the forum for this question. I am checking the JBOSS
&lt;br&gt;&amp;gt; logs after a failed attempt at installing the EJBCA and I see that it is
&lt;br&gt;&amp;gt; complaining about a web service here. Do I have to have a seperate web
&lt;br&gt;&amp;gt; server installed for this to work? Does JBOSS handle that. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And yes I am a newbie to EJBCA.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 ERROR
&lt;br&gt;&amp;gt; [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main)
&lt;br&gt;&amp;gt; Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS
&lt;br&gt;&amp;gt; ERRORS FOR DETAILS):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is
&lt;br&gt;&amp;gt; missing the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing
&lt;br&gt;&amp;gt; the following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following
&lt;br&gt;&amp;gt; dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the
&lt;br&gt;&amp;gt; following dependencies:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;,
&lt;br&gt;&amp;gt; but is actually in state &amp;quot;** NOT FOUND Depends on
&lt;br&gt;&amp;gt; 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s):
&lt;br&gt;&amp;gt; LifecycleException: &amp;nbsp;Protocol handler initialization failed:
&lt;br&gt;&amp;gt; java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;gt; &amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following
&lt;br&gt;&amp;gt; reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009-12-16 13:09:01,516 INFO 
&lt;br&gt;&amp;gt; [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss
&lt;br&gt;&amp;gt; (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)]
&lt;br&gt;&amp;gt; Started in 2m:2s:506ms
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26824524&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26824524&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26824524/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26824524.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26819397</id>
	<title>Error ant install - jboss web service</title>
	<published>2009-12-16T14:12:47Z</published>
	<updated>2009-12-16T14:12:47Z</updated>
	<author>
		<name>Joenateen</name>
	</author>
	<content type="html">Ok, Don't laugh me of the forum for this question. I am checking the JBOSS logs after a failed attempt at installing the EJBCA and I see that it is complaining about a web service here. Do I have to have a seperate web server installed for this to work? Does JBOSS handle that. 
&lt;br&gt;&lt;br&gt;And yes I am a newbie to EJBCA.
&lt;br&gt;&lt;br&gt;2009-12-16 13:09:01,516 ERROR [org.jboss.system.server.profileservice.ProfileServiceBootstrap] (main) Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
&lt;br&gt;&lt;br&gt;DEPLOYMENTS MISSING DEPENDENCIES:
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ROOT&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/admin-console&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/adminweb&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/doc&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/ejbcaws&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/apply&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/healthcheck&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/status&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/publicweb/webdist&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/ejbca/xkms&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/invoker&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jbossws&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/jmx-console&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web.deployment:war=/web-console&amp;quot; is missing the following dependencies:
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dependency &amp;quot;jboss.web:service=WebServer&amp;quot; (should be in state &amp;quot;Create&amp;quot;, but is actually in state &amp;quot;** NOT FOUND Depends on 'jboss.web:service=WebServer' **&amp;quot;)
&lt;br&gt;&lt;br&gt;DEPLOYMENTS IN ERROR:
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;WebServer&amp;quot; is in error due to the following reason(s): LifecycleException: &amp;nbsp;Protocol handler initialization failed: java.net.BindException: Address already in use: JVM_Bind /127.0.0.1:8080
&lt;br&gt;&amp;nbsp; Deployment &amp;quot;jboss.web:service=WebServer&amp;quot; is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
&lt;br&gt;&lt;br&gt;2009-12-16 13:09:01,516 INFO &amp;nbsp;[org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 2m:2s:506ms
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-ant-install---jboss-web-service-tp26819397p26819397.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26817507</id>
	<title>Re: Error with EBJCA bootstrap</title>
	<published>2009-12-16T12:01:29Z</published>
	<updated>2009-12-16T12:01:29Z</updated>
	<author>
		<name>Joenateen</name>
	</author>
	<content type="html">It was the JRE being picked up in my path instead of the JDK.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Joenateen wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I am trying to install the EJBCA package on windows XP and I get an error in conversions in the adminweb.war files, &amp;quot;i think&amp;quot;. Has anyone seen this error before?
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;publicweb.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[copy] Copying 45 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[copy] Copied 7 empty directories to 1 empty directory under C:\Sun\ejbca_3
&lt;br&gt;_9_2\tmp\publicweb.war
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[copy] Copying 2 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\publicweb.war
&lt;br&gt;&lt;br&gt;renew.war:
&lt;br&gt;&lt;br&gt;scep.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\scep.war
&lt;br&gt;&lt;br&gt;webdist.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\webdist.war
&lt;br&gt;&lt;br&gt;status.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\status.war
&lt;br&gt;&lt;br&gt;cmp.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\cmp.war
&lt;br&gt;&lt;br&gt;healthcheck.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\healthcheck.war
&lt;br&gt;&lt;br&gt;adminweb.war:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\WEB-INF\lib
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\reports
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[copy] Copying 127 files to C:\Sun\ejbca_3_9_2\tmp\adminweb.war
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages\languagefile
&lt;br&gt;.zh.properties
&lt;br&gt;[native2ascii] Converting 1 file from C:\Sun\ejbca_3_9_2\tmp\preprocessed\adminw
&lt;br&gt;eb\languages to C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages
&lt;br&gt;[native2ascii] java.io.UnsupportedEncodingException: GBK
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;C:\Sun\ejbca_3_9_2\build.xml:63: The following error occurred while executing th
&lt;br&gt;is line:
&lt;br&gt;C:\Sun\ejbca_3_9_2\build.xml:276: conversion failed
&lt;br&gt;&lt;br&gt;Total time: 2 minutes 38 seconds
&lt;br&gt;C:\Sun\ejbca_3_9_2&amp;gt;
&lt;br&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Hotmail: Powerful Free email with security by Microsoft.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/GBL/go/171222986/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/GBL/go/171222986/direct/01/&lt;/a&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;Ejbca-develop@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-with-EBJCA-bootstrap-tp26813399p26817507.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26816631</id>
	<title>Message: 7</title>
	<published>2009-12-16T11:04:36Z</published>
	<updated>2009-12-16T11:04:36Z</updated>
	<author>
		<name>Joenateen</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
It was a JRE issue. I had to move the path variable around until I got it to use the JDK. 		 	   		  &lt;br /&gt;&lt;hr /&gt;Hotmail: Powerful Free email with security by Microsoft. &lt;a href='http://clk.atdmt.com/GBL/go/171222986/direct/01/' target='_new' rel=&quot;nofollow&quot;&gt;Get it now.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26816631&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Message%3A-7-tp26816631p26816631.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26813650</id>
	<title>Re: Error with EBJCA bootstrap</title>
	<published>2009-12-16T08:05:44Z</published>
	<updated>2009-12-16T08:05:44Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;my guess is that you don't have the &amp;quot;international&amp;quot; version of java. t
&lt;br&gt;The error you get is when it tries to encoe the chineese language files 
&lt;br&gt;for the admin-gui. &amp;quot;unsupported encoding&amp;quot;. can you download the full 
&lt;br&gt;international jdk instead?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 16 Dec 2009, Mark Seaborn wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I am trying to install the EJBCA package on windows XP and I get an error in conversions in the adminweb.war files, &amp;quot;i think&amp;quot;. Has anyone seen this error before?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; publicweb.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;[mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; [copy] Copying 45 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; [copy] Copied 7 empty directories to 1 empty directory under C:\Sun\ejbca_3
&lt;br&gt;&amp;gt; _9_2\tmp\publicweb.war
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; [copy] Copying 2 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\publicweb.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; renew.war:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; scep.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\scep.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; webdist.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\webdist.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; status.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\status.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cmp.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\cmp.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; healthcheck.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;[war] Building war: C:\Sun\ejbca_3_9_2\dist\healthcheck.war
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; adminweb.war:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;[mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\WEB-INF\lib
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;[mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\reports
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; [copy] Copying 127 files to C:\Sun\ejbca_3_9_2\tmp\adminweb.war
&lt;br&gt;&amp;gt; &amp;nbsp; [delete] Deleting: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages\languagefile
&lt;br&gt;&amp;gt; .zh.properties
&lt;br&gt;&amp;gt; [native2ascii] Converting 1 file from C:\Sun\ejbca_3_9_2\tmp\preprocessed\adminw
&lt;br&gt;&amp;gt; eb\languages to C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages
&lt;br&gt;&amp;gt; [native2ascii] java.io.UnsupportedEncodingException: GBK
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; BUILD FAILED
&lt;br&gt;&amp;gt; C:\Sun\ejbca_3_9_2\build.xml:63: The following error occurred while executing th
&lt;br&gt;&amp;gt; is line:
&lt;br&gt;&amp;gt; C:\Sun\ejbca_3_9_2\build.xml:276: conversion failed
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Total time: 2 minutes 38 seconds
&lt;br&gt;&amp;gt; C:\Sun\ejbca_3_9_2&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Hotmail: Powerful Free email with security by Microsoft.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://clk.atdmt.com/GBL/go/171222986/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/GBL/go/171222986/direct/01/&lt;/a&gt;&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26813650&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-with-EBJCA-bootstrap-tp26813399p26813650.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26813399</id>
	<title>Error with EBJCA bootstrap</title>
	<published>2009-12-16T07:51:20Z</published>
	<updated>2009-12-16T07:51:20Z</updated>
	<author>
		<name>Joenateen</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
Hello,&lt;BR&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am trying to install the EJBCA package on windows XP and I get an error in conversions in the adminweb.war files, &quot;i think&quot;. Has anyone seen this error before?&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
publicweb.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [copy] Copying 45 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [copy] Copied 7 empty directories to 1 empty directory under C:\Sun\ejbca_3&lt;BR&gt;_9_2\tmp\publicweb.war&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [copy] Copying 2 files to C:\Sun\ejbca_3_9_2\tmp\publicweb.war\WEB-INF\lib&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\publicweb.war&lt;BR&gt;
renew.war:&lt;BR&gt;
scep.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\scep.war&lt;BR&gt;
webdist.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\webdist.war&lt;BR&gt;
status.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\status.war&lt;BR&gt;
cmp.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\cmp.war&lt;BR&gt;
healthcheck.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [war] Building war: C:\Sun\ejbca_3_9_2\dist\healthcheck.war&lt;BR&gt;
adminweb.war:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\WEB-INF\lib&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [mkdir] Created dir: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\reports&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [copy] Copying 127 files to C:\Sun\ejbca_3_9_2\tmp\adminweb.war&lt;BR&gt;&amp;nbsp;&amp;nbsp; [delete] Deleting: C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages\languagefile&lt;BR&gt;.zh.properties&lt;BR&gt;[native2ascii] Converting 1 file from C:\Sun\ejbca_3_9_2\tmp\preprocessed\adminw&lt;BR&gt;eb\languages to C:\Sun\ejbca_3_9_2\tmp\adminweb.war\languages&lt;BR&gt;[native2ascii] java.io.UnsupportedEncodingException: GBK&lt;BR&gt;
BUILD FAILED&lt;BR&gt;C:\Sun\ejbca_3_9_2\build.xml:63: The following error occurred while executing th&lt;BR&gt;is line:&lt;BR&gt;C:\Sun\ejbca_3_9_2\build.xml:276: conversion failed&lt;BR&gt;
Total time: 2 minutes 38 seconds&lt;BR&gt;C:\Sun\ejbca_3_9_2&amp;gt;&lt;BR&gt; 		 	   		  &lt;br /&gt;&lt;hr /&gt;Hotmail: Powerful Free email with security by Microsoft. &lt;a href='http://clk.atdmt.com/GBL/go/171222986/direct/01/' target='_new' rel=&quot;nofollow&quot;&gt;Get it now.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26813399&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Error-with-EBJCA-bootstrap-tp26813399p26813399.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26742918</id>
	<title>Re: EJBCA on JBOSS 6.0</title>
	<published>2009-12-11T03:51:03Z</published>
	<updated>2009-12-11T03:51:03Z</updated>
	<author>
		<name>Christophe PIJCKE</name>
	</author>
	<content type="html">Tomas,
&lt;br&gt;&lt;br&gt;I have created the bug [ECA-1511].
&lt;br&gt;I can spend some time to work on it, but I'm not sure to achieve the result.
&lt;br&gt;&lt;br&gt;I keep you informed.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&amp;nbsp; Christophe.
&lt;br&gt;&lt;br&gt;-----Message d'origine-----
&lt;br&gt;De : Tomas Gustavsson [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tomas@...&lt;/a&gt;] 
&lt;br&gt;Envoyé : vendredi 11 décembre 2009 12:06
&lt;br&gt;À : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ejbca-develop@...&lt;/a&gt;
&lt;br&gt;Objet : Re: [Ejbca-develop] EJBCA on JBOSS 6.0
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cool, I did not try JBoss 6, didn't see it was there even.
&lt;br&gt;&lt;br&gt;Go ahead and create an issue (jira.primekey.se), but perhaps it's a &amp;quot;new
&lt;br&gt;feature&amp;quot; or &amp;quot;improvement&amp;quot; since JBoss 6 is a new thing and as such it's
&lt;br&gt;not really a bug.
&lt;br&gt;&lt;br&gt;If you have ideas what libraries to change/fix in EJBCa please let us know.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Christophe PIJCKE wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have made a try to setup ejbca (3.9.2) on the newly available jboss 6.0 (M1).
&lt;br&gt;&amp;gt; I encounter &amp;quot;Failed to create a new SAX parser&amp;quot; issue when deploying.
&lt;br&gt;&amp;gt; I wonder if somebody else has tried this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Looking to internet, this error seems to come from a difference between libraries from jboss and those provided by ejbca.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Being neither an active developer nor an actor of the ejbca project (actually), May I anyway create a bug relating this issue?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; &amp;nbsp; Christophe.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Return on Information:
&lt;br&gt;&amp;gt; Google Enterprise Search pays you back
&lt;br&gt;&amp;gt; Get the facts.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Ejbca-develop mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742918&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EJBCA-on-JBOSS-6.0-tp26741901p26742918.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26742371</id>
	<title>Re: EJBCA on JBOSS 6.0</title>
	<published>2009-12-11T03:05:31Z</published>
	<updated>2009-12-11T03:05:31Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Cool, I did not try JBoss 6, didn't see it was there even.
&lt;br&gt;&lt;br&gt;Go ahead and create an issue (jira.primekey.se), but perhaps it's a &amp;quot;new
&lt;br&gt;feature&amp;quot; or &amp;quot;improvement&amp;quot; since JBoss 6 is a new thing and as such it's
&lt;br&gt;not really a bug.
&lt;br&gt;&lt;br&gt;If you have ideas what libraries to change/fix in EJBCa please let us know.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742371&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Christophe PIJCKE wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have made a try to setup ejbca (3.9.2) on the newly available jboss 6.0 (M1).
&lt;br&gt;&amp;gt; I encounter &amp;quot;Failed to create a new SAX parser&amp;quot; issue when deploying.
&lt;br&gt;&amp;gt; I wonder if somebody else has tried this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Looking to internet, this error seems to come from a difference between libraries from jboss and those provided by ejbca.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Being neither an active developer nor an actor of the ejbca project (actually), May I anyway create a bug relating this issue?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; &amp;nbsp; Christophe.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Return on Information:
&lt;br&gt;&amp;gt; Google Enterprise Search pays you back
&lt;br&gt;&amp;gt; Get the facts.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Ejbca-develop mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742371&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742371&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EJBCA-on-JBOSS-6.0-tp26741901p26742371.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26741901</id>
	<title>EJBCA on JBOSS 6.0</title>
	<published>2009-12-11T02:05:21Z</published>
	<updated>2009-12-11T02:05:21Z</updated>
	<author>
		<name>Christophe PIJCKE</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=FR link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;Hello all,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;I have made a try to setup ejbca (3.9.2) on the newly
available jboss 6.0 (M1).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;I encounter &amp;#8220;Failed to create a new SAX parser&amp;#8221;
issue when deploying.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;I wonder if somebody else has tried this.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;Looking to internet, this error seems to come from a
difference between libraries from jboss and those provided by ejbca.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;Being neither an active developer nor an actor of the
ejbca project (actually), May I anyway create a bug relating this issue?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;Best regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&amp;nbsp; Christophe.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-GB style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26741901&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EJBCA-on-JBOSS-6.0-tp26741901p26741901.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26741441</id>
	<title>Re: Help on changing server cert name</title>
	<published>2009-12-11T01:48:49Z</published>
	<updated>2009-12-11T01:48:49Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;You can easily issue a new keystore. If you made a &amp;quot;default&amp;quot;
&lt;br&gt;installation before you can simply edit the tomcat user in EJBCA and
&lt;br&gt;change &amp;quot;CN&amp;quot;, set password and status to new. You can then batch generate
&lt;br&gt;(bin/ejbca.sh batch) the new tomcat.jks keystore and replace
&lt;br&gt;keystore.jks with this new one.
&lt;br&gt;&lt;br&gt;You can add any new user as you like, and create a jks keystore that can
&lt;br&gt;be used as ssl keystore for a jboss/tomcat server.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26741441&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;khsheh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have been using 1 server with Windows 2003, JBOSS and EJBCA for testing. As
&lt;br&gt;&amp;gt; I need to have 2 servers with EJBCA for tesitng, I cloned the original
&lt;br&gt;&amp;gt; machine to another machine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But the server certificate inside the keystore.jks is bounded to the
&lt;br&gt;&amp;gt; original machine server name. How can I update the the server cert of the
&lt;br&gt;&amp;gt; new machine with the new server name, in the most simple way, besides
&lt;br&gt;&amp;gt; re-installation of JBOSS and EJBCA? I think I need to use the AdminCA1 to
&lt;br&gt;&amp;gt; sign the server cert. But where is the AdminCA1 private key? Is it stored in
&lt;br&gt;&amp;gt; the truststore.jks? I am not familiar with JKS and keytool command for cert
&lt;br&gt;&amp;gt; manipulation, but I have tried and could not find the private key there.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Your help is much appreciated. Thanks.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26741441&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-changing-server-cert-name-tp26741097p26741441.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26741097</id>
	<title>Help on changing server cert name</title>
	<published>2009-12-11T01:21:19Z</published>
	<updated>2009-12-11T01:21:19Z</updated>
	<author>
		<name>khsheh</name>
	</author>
	<content type="html">I have been using 1 server with Windows 2003, JBOSS and EJBCA for testing. As I need to have 2 servers with EJBCA for tesitng, I cloned the original machine to another machine.
&lt;br&gt;&lt;br&gt;But the server certificate inside the keystore.jks is bounded to the original machine server name. How can I update the the server cert of the new machine with the new server name, in the most simple way, besides re-installation of JBOSS and EJBCA? I think I need to use the AdminCA1 to sign the server cert. But where is the AdminCA1 private key? Is it stored in the truststore.jks? I am not familiar with JKS and keytool command for cert manipulation, but I have tried and could not find the private key there.
&lt;br&gt;&lt;br&gt;Your help is much appreciated. Thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-changing-server-cert-name-tp26741097p26741097.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26480996</id>
	<title>[SPAM] Small Business Magazine</title>
	<published>2009-11-23T08:07:17Z</published>
	<updated>2009-11-23T08:07:17Z</updated>
	<author>
		<name>SBA (Small Business Advisor)</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;DiversityBusiness Member Benefits&lt;/TITLE&gt;&lt;LINK rel=stylesheet type=text/css href=&quot;http://216.117.129.34/Global.css&quot;&gt;


&lt;META name=GENERATOR content=&quot;MSHTML 8.00.6001.18812&quot;&gt;&lt;/HEAD&gt;
&lt;BODY bgColor=#ffffff text=#000000&gt;
&lt;DIV align=center&gt;
&lt;TABLE id=table1 border=0 cellPadding=18 width=605&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top&gt;
&lt;P align=center&gt;&lt;B&gt;&lt;FONT face=Arial&gt;&lt;A href=&quot;http://216.117.129.34/mag.asp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;FONT color=#150af5 size=4&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=790 vAlign=top background=http://216.117.129.34/Images/su09.jpg&gt;&amp;nbsp; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align=center&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color=#ff0000 size=5 face=Arial&gt;&lt;A href=&quot;http://216.117.129.34/mag.asp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;FONT color=#ff0000&gt;Click here to Subscribe Now&lt;/FONT&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT size=2 face=Arial&gt;From Super Model To Role Model&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#ff0000 size=1 face=Arial&gt;Cover Story Kathy Ireland&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT size=2 face=Arial&gt;Global Economic Slowdown and Emerging&lt;BR&gt;Economies &lt;BR&gt;&lt;BR&gt;The Benefits of Ergonomics in the Workplace &lt;BR&gt;&lt;BR&gt;What Women Want &lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#ff0000 size=1 face=Arial&gt;Effective Marketing to Women &lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2 face=Arial&gt;&lt;BR&gt;A History of Diversity at American Airlines &lt;BR&gt;&lt;BR&gt;Tips for Employers to Safeguard against&lt;BR&gt;Workplace Bullying! &lt;BR&gt;&lt;BR&gt;From America's Team... to a World of Opportunity &lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=1 face=Arial&gt;
The Evolution of Dallas Fan Fares &lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2 face=Arial&gt;&lt;BR&gt;While international opportunities abound, companies must get local to succeed&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#ff0000 size=1 face=Arial&gt;Far beyond translation, localization respects the culture, symbolism and business environment of emerging economies &lt;/FONT&gt;&lt;/B&gt;&lt;BR&gt;&lt;BR&gt;&lt;B&gt;&lt;FONT size=2 face=Arial&gt;One Woman's Journey: Logistics with Technology&lt;BR&gt;&lt;BR&gt;Bridging the Multicultural Divide in Business&lt;BR&gt;&lt;/FONT&gt;
&lt;FONT color=#ff0000 size=1 face=Arial&gt;The Essential Role of Communication in the Global Marketplace&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2 face=Arial&gt;Americas Top Organizations for Multicultural Business Opportunities&lt;/FONT&gt;&lt;/B&gt; &lt;BR&gt;&lt;BR&gt;&lt;B&gt;&lt;FONT size=2 face=Arial&gt;Multicultural Marketing In a Weak Economy&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#ff0000 size=1 face=Arial&gt;This may be the Best Opportunity for Growth.&lt;/FONT&gt;&lt;FONT size=2 face=Arial&gt;&lt;BR&gt;&lt;BR&gt;Top 10 Tips For Growing Your Diverse Business &lt;BR&gt;
by Carlton L Highsmith Founder and CEO&amp;nbsp; Specialized Packaging Group&lt;BR&gt;&lt;BR&gt;How do you get the most bang out of your marketing campaign? &lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=48 vAlign=top&gt;
&lt;P align=center&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color=#ff0000 size=5 face=Arial&gt;&lt;A href=&quot;http://216.117.129.34/mag.asp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;FONT color=#ff0000&gt;Click here to Subscribe Now&lt;/FONT&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD bgColor=#cccccc height=240 vAlign=top&gt;
&lt;P align=center&gt;Our Advertisers 
&lt;P align=center&gt;&lt;IMG border=0 src=&quot;http://216.117.129.34/images/sponsors.jpg&quot;&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=84 vAlign=top&gt;
&lt;P align=center&gt;&lt;FONT size=1&gt;You are receiving this since you/or your associates subscribed your email id to receive the newsletter from DiversityBusiness or its affiliates,&amp;nbsp;&amp;nbsp;&lt;BR&gt;&lt;BR&gt;To unsubscribe click &lt;/FONT&gt;&lt;A href=&quot;http://216.117.129.34/Remove.asp&quot; target=_blank rel=&quot;nofollow&quot;&gt;&lt;FONT color=darkblue size=1&gt;&lt;B&gt;HERE&lt;/B&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26480996&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-SPAM--Small-Business-Magazine-tp26480996p26480996.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427320</id>
	<title>Update: TLS/SSL Man In The Middle vulnerability - How does it affect EJBCA?</title>
	<published>2009-11-19T06:32:42Z</published>
	<updated>2009-11-19T06:32:42Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">*TLS/SSL Man In The Middle vulnerability - How does it affect EJBCA?*
&lt;br&gt;&lt;br&gt;This is a follow up on the TLS/SSL MITM vulnerability posting we sent on
&lt;br&gt;the 12th of November.
&lt;br&gt;&lt;br&gt;/Re-cap:/
&lt;br&gt;For about two weeks now a description of a vulnerability in the TLS/SSL
&lt;br&gt;protocol has been circulating around the Internet. This is a status
&lt;br&gt;update on our investigation of this issue and potential consequences
&lt;br&gt;this will have for EJBCA. We will provide you with more information
&lt;br&gt;as soon as we know more.
&lt;br&gt;&lt;br&gt;This vulnerability is not a vulnerability in EJBCA, but in the TLS/SSL
&lt;br&gt;protocol that the EJBCA Admin GUI and Web Services depend on.
&lt;br&gt;&lt;br&gt;/Status update:/
&lt;br&gt;RedHat, Debian, Ubuntu and SuSE, and probably other distributions as
&lt;br&gt;well have now released updated apache httpd packages disabling client
&lt;br&gt;initiated re-negotiation. Server initiated re-negotiation is still
&lt;br&gt;enabled which puts some restrictions on the configuration to be secure.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;We are still waiting for information about updates to Tomcat/JBoss.
&lt;br&gt;&lt;br&gt;/Recommendations:/
&lt;br&gt;If access to EJBCA's Admin GUI or Web Services is not protected by other
&lt;br&gt;means in your setup, you could take the following precautions:
&lt;br&gt;- Set up an apache httpd front end to EJBCA (using mod_proxy or mod_jk).
&lt;br&gt;- Make sure you use updated apache packages with client initiated
&lt;br&gt;re-negotiation disabled.
&lt;br&gt;- Make sure that all parts of your site that uses SSL or requires SSL
&lt;br&gt;client certificate authentication has the SSL configuration for the
&lt;br&gt;entire site. In the apache httpd config this means that all SSL
&lt;br&gt;directives must be on the VirtualHost. Do not use any SSL directives in
&lt;br&gt;a Location or Directory directive. Never mix unprotected and protected
&lt;br&gt;pages in the same VirtualHost.
&lt;br&gt;- This means that you probably have to run EJBCA Admin GUI on it's own
&lt;br&gt;sub-domain (admin.ca.yourdomain.com) or on it's own port, i.e. use SSL
&lt;br&gt;client certificate authentication for everything on port 443 (or another
&lt;br&gt;port of your choice).
&lt;br&gt;&lt;br&gt;With these precautions it is our understanding that you will be safe
&lt;br&gt;from this vulnerability.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;The EJBCA support team
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and 
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427320&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. 
&lt;br&gt;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427320&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26427320/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Update%3A-TLS-SSL-Man-In-The-Middle-vulnerability---How-does-it-affect-EJBCA--tp26427320p26427320.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26317489</id>
	<title>TLS/SSL Man In The Middle vulnerability - How does it affect EJBCA?</title>
	<published>2009-11-12T04:02:33Z</published>
	<updated>2009-11-12T04:02:33Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">*TLS/SSL Man In The Middle vulnerability - How does it affect EJBCA?*
&lt;br&gt;&lt;br&gt;For about a week now a description of a vulnerability in the TLS/SSL
&lt;br&gt;protocol has been circulating around the Internet. This is a status
&lt;br&gt;update on our investigation of this issue and potential consequences
&lt;br&gt;this will have for EJBCA. We will provide you with more information
&lt;br&gt;as soon as we know more.
&lt;br&gt;&lt;br&gt;This vulnerability is not a vulnerability in EJBCA, but in the TLS/SSL
&lt;br&gt;protocol that the EJBCA Admin GUI and Web Services depends on.
&lt;br&gt;&lt;br&gt;/Full descriptions of the vulnerability:/
&lt;br&gt;- &lt;a href=&quot;http://www.links.org/?p=780&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.links.org/?p=780&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;&lt;a href=&quot;http://www.educatedguesswork.org/2009/11/understanding_the_tls_renegoti.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.educatedguesswork.org/2009/11/understanding_the_tls_renegoti.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;/Cause:/
&lt;br&gt;- The TLS/SSL protocol supports renegotiation by default that could be
&lt;br&gt;initiated by both the client and the server. During renegotiation
&lt;br&gt;plain-text can be injected. The reported issue is a TLS / SSL protocol
&lt;br&gt;flaw, and not a bug of any specific implementation.
&lt;br&gt;&lt;br&gt;/Severity:/
&lt;br&gt;This issue has been rated, by RedHat, as having moderate security impact
&lt;br&gt;as successful exploitation of this flaw requires a man-in-the-middle attack.
&lt;br&gt;&lt;br&gt;/Effect on EJBCA:/
&lt;br&gt;An attacker between an EJBCA administrator's browser / EJBCA Web Service
&lt;br&gt;client and the EJBCA server can inject a request to the EJBCA server
&lt;br&gt;using the administrator's credential (and administrative privileges).
&lt;br&gt;This means that an attacker could do anything in the Admin GUI that
&lt;br&gt;could be done by a single click/request. The attacker cannot fetch any
&lt;br&gt;information using the admin's credential, and a successful attack
&lt;br&gt;requires some knowledge about the victims PKI.
&lt;br&gt;&lt;br&gt;/Current status:/
&lt;br&gt;- The underlying problems in the TLS/SSL protocol will take a
&lt;br&gt;considerable amount of time to fix and roll out.
&lt;br&gt;- PrimeKey has registered a support issue at Red Hat and is awaiting
&lt;br&gt;further information, but from the information we got so far it is clear
&lt;br&gt;that JBoss AS is vulnerable to this attack.
&lt;br&gt;- EJBCA uses the Tomcat server in JBoss AS to serve web pages and web
&lt;br&gt;services. Tomcat relies on the TLS/SSL implementation in Java. According
&lt;br&gt;to Red Hat support they are still investigating this.
&lt;br&gt;- If an Apache front end is used for EJBCA the &amp;quot;mod_ssl&amp;quot; TLS
&lt;br&gt;implementation is the vulnerable part. Red Hat is tracking this as
&lt;br&gt;&lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2009-3555&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2009-3555&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;- RedHat has released updated httpd packages that change mod_ssl to
&lt;br&gt;reject all client-initiated renegotiations, which mitigates this flaw
&lt;br&gt;for the majority of configurations using mod_ssl to provide HTTPS service.
&lt;br&gt;&lt;br&gt;/Recommendations until JBoss/Apache can be configured safely:/
&lt;br&gt;- Administrators and Web Service clients should not connect using
&lt;br&gt;TLS/SSL to EJBCA over an insecure connection. Using SSH, an non-SSL
&lt;br&gt;based VPN solution or physical access might be a solution.
&lt;br&gt;- If using Apache as a front-end to EJBCA, you should make sure that you
&lt;br&gt;update your httpd packages and ensure that client certificates
&lt;br&gt;authentication is used for the whole &amp;lt;VirtualHost&amp;gt; section where EJBCA
&lt;br&gt;admin resides, not only configured in a &amp;lt;Location&amp;gt; or &amp;lt;Directory&amp;gt;
&lt;br&gt;context section.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;The EJBCA support team
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and 
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26317489&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. 
&lt;br&gt;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26317489&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26317489/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TLS-SSL-Man-In-The-Middle-vulnerability---How-does-it-affect-EJBCA--tp26317489p26317489.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26314680</id>
	<title>Re: CVC DN's country code in EJBCA</title>
	<published>2009-11-11T23:44:14Z</published>
	<updated>2009-11-11T23:44:14Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Hi, it is true that the cert-cvc library restricts the use to ISO3166
&lt;br&gt;country codes. It is because this is strictly mandated by the
&lt;br&gt;specification. This will affect any issuance of cvc certificates, both 1
&lt;br&gt;and 2.
&lt;br&gt;&lt;br&gt;I would recommend using your own country code for testing purposes.
&lt;br&gt;(Personally I don't see the rationale behind using fake countries, but
&lt;br&gt;that's just my personal reflection).
&lt;br&gt;&lt;br&gt;If you need to use fake codes you can easily (if you are a java
&lt;br&gt;developer that is), modify the cert-cvc library to skip this check. The
&lt;br&gt;cert-cvc library source code is in the cert-cvc release and the library
&lt;br&gt;is easy to build with a simple 'ant' command. After building a new
&lt;br&gt;library simply replace cert-cvc.jar in ejbca/lib and re-deploy ejbca.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314680&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-11 at 20:58 -0800, khsheh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 1. I am using ejbca 3.9.0. I want to create a CVC CVCA using country code say
&lt;br&gt;&amp;gt; &amp;quot;HX&amp;quot; for subject DN but I get the following error:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; javax.ejb.EJBException: java.lang.IllegalArgumentException: Unknown country
&lt;br&gt;&amp;gt; code: HX : java.lang.IllegalArgumentException: Unknown country code: HX
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I also find that I can use EJBCA to create X.509 cert with country code say
&lt;br&gt;&amp;gt; &amp;quot;HX&amp;quot; for subject DN. It seems that there is no such restriction for X.509
&lt;br&gt;&amp;gt; when using ejbca.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is EJBCA only support the ISO 3166 standard on 2 character country code for
&lt;br&gt;&amp;gt; CVC and not other testing ones? My purpose is to create some kind of testing
&lt;br&gt;&amp;gt; CVC CVCA cert with fictitious country code.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2. &amp;nbsp;Moreover, could I process a foreign country's CVC DV CSR request if the
&lt;br&gt;&amp;gt; foreign country use a fictious country code in the CSR?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314680&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CVC-DN%27s-country-code-in-EJBCA-tp26313476p26314680.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26313476</id>
	<title>CVC DN's country code in EJBCA</title>
	<published>2009-11-11T20:58:33Z</published>
	<updated>2009-11-11T20:58:33Z</updated>
	<author>
		<name>khsheh</name>
	</author>
	<content type="html">1. I am using ejbca 3.9.0. I want to create a CVC CVCA using country code say &amp;quot;HX&amp;quot; for subject DN but I get the following error:
&lt;br&gt;&lt;br&gt;javax.ejb.EJBException: java.lang.IllegalArgumentException: Unknown country code: HX : java.lang.IllegalArgumentException: Unknown country code: HX
&lt;br&gt;&lt;br&gt;I also find that I can use EJBCA to create X.509 cert with country code say &amp;quot;HX&amp;quot; for subject DN. It seems that there is no such restriction for X.509 when using ejbca.
&lt;br&gt;&lt;br&gt;Is EJBCA only support the ISO 3166 standard on 2 character country code for CVC and not other testing ones? My purpose is to create some kind of testing CVC CVCA cert with fictitious country code.
&lt;br&gt;&lt;br&gt;2. &amp;nbsp;Moreover, could I process a foreign country's CVC DV CSR request if the foreign country use a fictious country code in the CSR?
&lt;br&gt;&lt;br&gt;Thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CVC-DN%27s-country-code-in-EJBCA-tp26313476p26313476.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210412</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-04T23:35:05Z</published>
	<updated>2009-11-04T23:35:05Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;that value is used during installation when the server side SSL
&lt;br&gt;certificate is created. In order to change the certificate in an already
&lt;br&gt;installed setup you have to edit the user &amp;quot;tomcat&amp;quot;.
&lt;br&gt;&lt;br&gt;What you need to do is the same as for &amp;quot;SSL certificate expire&amp;quot; from the
&lt;br&gt;User Guide at ejbca.org. You need to set the Common Name of the tomcat
&lt;br&gt;user to match you real hostname.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Tomas
&lt;br&gt;-----
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and
&lt;br&gt;training for EJBCA. Please see www.primekey.se or contact
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210412&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information.
&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Support/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Support/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.primekey.se/Services/Training/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Services/Training/&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-04 at 22:56 -0800, khsheh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear Johan,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I just discover there is such a a file web.properties in
&lt;br&gt;&amp;gt; EJBCA_HOME/conf/web.properties.sample.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I copy it to web.properties and no matter whether I set the
&lt;br&gt;&amp;gt; httpsserver.hostname=devnbmbsi03 &amp;nbsp;(which is my workstation name) or
&lt;br&gt;&amp;gt; httpsserver.hostname=localhost, I stilll I get the error of &amp;quot;No name
&lt;br&gt;&amp;gt; matching localhost found&amp;quot;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Would you explain more of what I should do? Is there any documentation of
&lt;br&gt;&amp;gt; it? In the command, &amp;quot;ejbcawsracli edituser isrsa1 foo123 false
&lt;br&gt;&amp;gt; &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL DV-RSA-1 1 USERGENERATED NEW IS IS&amp;quot;, how to
&lt;br&gt;&amp;gt; control which server to connect to? Is there anything I should set in
&lt;br&gt;&amp;gt; C:\jboss\server\default\conf\keystore\truststore.jks like importing anything
&lt;br&gt;&amp;gt; to it?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I now only have 1 workstation, and I have tomcat.jks (devnbmbsi03),
&lt;br&gt;&amp;gt; superadmin.jks (superadmin) and truststore.jks (AdminCA1).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Wilson.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi khsheh,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; When you installed EJBCA you specified a server name that is used in the 
&lt;br&gt;&amp;gt; server side SSL certificate ( EJBCA_HOME/conf/web.properties: 
&lt;br&gt;&amp;gt; httpsserver.hostname=... ).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You must connect to this hostname or the SSL connection will fail, since 
&lt;br&gt;&amp;gt; the serverside is issued for a different host than 'localhost'.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards,
&lt;br&gt;&amp;gt; Johan
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210412&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26210412.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26208591</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-04T22:56:38Z</published>
	<updated>2009-11-04T22:56:38Z</updated>
	<author>
		<name>khsheh</name>
	</author>
	<content type="html">Dear Johan,
&lt;br&gt;&lt;br&gt;I just discover there is such a a file web.properties in EJBCA_HOME/conf/web.properties.sample.
&lt;br&gt;&lt;br&gt;I copy it to web.properties and no matter whether I set the httpsserver.hostname=devnbmbsi03 &amp;nbsp;(which is my workstation name) or httpsserver.hostname=localhost, I stilll I get the error of &amp;quot;No name matching localhost found&amp;quot;.
&lt;br&gt;&lt;br&gt;Would you explain more of what I should do? Is there any documentation of it? In the command, &amp;quot;ejbcawsracli edituser isrsa1 foo123 false &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL DV-RSA-1 1 USERGENERATED NEW IS IS&amp;quot;, how to control which server to connect to? Is there anything I should set in C:\jboss\server\default\conf\keystore\truststore.jks like importing anything to it?
&lt;br&gt;&lt;br&gt;I now only have 1 workstation, and I have tomcat.jks (devnbmbsi03), superadmin.jks (superadmin) and truststore.jks (AdminCA1).
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Wilson.
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;Johan Eklund&quot;&gt;&lt;br&gt;Hi khsheh,
&lt;br&gt;&lt;br&gt;When you installed EJBCA you specified a server name that is used in the 
&lt;br&gt;server side SSL certificate ( EJBCA_HOME/conf/web.properties: 
&lt;br&gt;httpsserver.hostname=... ).
&lt;br&gt;&lt;br&gt;You must connect to this hostname or the SSL connection will fail, since 
&lt;br&gt;the serverside is issued for a different host than 'localhost'.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26208591.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26193972</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-04T02:30:16Z</published>
	<updated>2009-11-04T02:30:16Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">Hi khsheh,
&lt;br&gt;&lt;br&gt;When you installed EJBCA you specified a server name that is used in the 
&lt;br&gt;server side SSL certificate ( EJBCA_HOME/conf/web.properties: 
&lt;br&gt;httpsserver.hostname=... ).
&lt;br&gt;&lt;br&gt;You must connect to this hostname or the SSL connection will fail, since 
&lt;br&gt;the serverside is issued for a different host than 'localhost'.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;khsheh skrev:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks. I now set the correct password in ejbcawsracli.properties for
&lt;br&gt;&amp;gt; superadmin.jks, i.e.:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ejbcawsracli.keystore.path = superadmin.jks
&lt;br&gt;&amp;gt; ejbcawsracli.keystore.password = password
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But when I run the following command (the ejbca is in the same Windows
&lt;br&gt;&amp;gt; workstation as I type the command):
&lt;br&gt;&amp;gt; ejbcawsracli edituser isrsa1 foo123 false &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL
&lt;br&gt;&amp;gt; DV-RSA-1 1 USERGENERATED NEW IS IS 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I get the following error on localhost issue Do you have any suggestions.
&lt;br&gt;&amp;gt; Sorry that I am new to the keystore and JBOSS areas.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Trying to add user:
&lt;br&gt;&amp;gt; Username: isrsa
&lt;br&gt;&amp;gt; Subject DN: CN=ISRSA1,C=CN
&lt;br&gt;&amp;gt; Subject Altname: null
&lt;br&gt;&amp;gt; Email: null
&lt;br&gt;&amp;gt; CA Name: DV-RSA-1
&lt;br&gt;&amp;gt; Type: 1
&lt;br&gt;&amp;gt; Token: USERGENERATED
&lt;br&gt;&amp;gt; Status: 10
&lt;br&gt;&amp;gt; End entity profile: IS
&lt;br&gt;&amp;gt; Certificate profile: IS
&lt;br&gt;&amp;gt; Hard Token Issuer Alias: NONE
&lt;br&gt;&amp;gt; Start time: NONE
&lt;br&gt;&amp;gt; End time: NONE
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException:
&lt;br&gt;&amp;gt; java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;gt; org.ejbca.ui.cli.ErrorAdminCommandException:
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException:
&lt;br&gt;&amp;gt; java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:166)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.ejbcawsracli.main(ejbcawsracli.java:34)
&lt;br&gt;&amp;gt; Caused by: javax.xml.ws.WebServiceException:
&lt;br&gt;&amp;gt; javax.net.ssl.SSLHandshakeException:
&lt;br&gt;&amp;gt; java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;gt; 	at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;gt; 	at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:154)
&lt;br&gt;&amp;gt; 	... 1 more
&lt;br&gt;&amp;gt; Caused by: javax.net.ssl.SSLHandshakeException:
&lt;br&gt;&amp;gt; java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;gt; 	at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1611)
&lt;br&gt;&amp;gt; 	at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:187)
&lt;br&gt;&amp;gt; 	at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:181)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1035)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:124)
&lt;br&gt;&amp;gt; 	at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:516)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:454)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:884)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1112)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1139)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1123)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:434)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:166)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;gt; 	at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.security.cert.CertificateException: No name matching
&lt;br&gt;&amp;gt; localhost found
&lt;br&gt;&amp;gt; 	at sun.security.util.HostnameChecker.matchDNS(HostnameChecker.java:210)
&lt;br&gt;&amp;gt; 	at sun.security.util.HostnameChecker.match(HostnameChecker.java:77)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:264)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:250)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1014)
&lt;br&gt;&amp;gt; 	... 25 more
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You have configured the wrong keystore or password in
&lt;br&gt;&amp;gt; ejbcawsracli.properties.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; the error is clear .-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Caused by: java.io.IOException: Keystore was tampered with, or password
&lt;br&gt;&amp;gt; was incorrect
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Tomas
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26193972&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26193972&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26193972/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26193972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26193741</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-04T02:12:37Z</published>
	<updated>2009-11-04T02:12:37Z</updated>
	<author>
		<name>khsheh</name>
	</author>
	<content type="html">Thanks. I now set the correct password in ejbcawsracli.properties for superadmin.jks, i.e.:
&lt;br&gt;&lt;br&gt;ejbcawsracli.keystore.path = superadmin.jks
&lt;br&gt;ejbcawsracli.keystore.password = password
&lt;br&gt;&lt;br&gt;But when I run the following command (the ejbca is in the same Windows workstation as I type the command):
&lt;br&gt;ejbcawsracli edituser isrsa1 foo123 false &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL DV-RSA-1 1 USERGENERATED NEW IS IS 
&lt;br&gt;&lt;br&gt;I get the following error on localhost issue Do you have any suggestions. Sorry that I am new to the keystore and JBOSS areas.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Trying to add user:
&lt;br&gt;Username: isrsa
&lt;br&gt;Subject DN: CN=ISRSA1,C=CN
&lt;br&gt;Subject Altname: null
&lt;br&gt;Email: null
&lt;br&gt;CA Name: DV-RSA-1
&lt;br&gt;Type: 1
&lt;br&gt;Token: USERGENERATED
&lt;br&gt;Status: 10
&lt;br&gt;End entity profile: IS
&lt;br&gt;Certificate profile: IS
&lt;br&gt;Hard Token Issuer Alias: NONE
&lt;br&gt;Start time: NONE
&lt;br&gt;End time: NONE
&lt;br&gt;javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;org.ejbca.ui.cli.ErrorAdminCommandException: javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:166)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(ejbcawsracli.java:34)
&lt;br&gt;Caused by: javax.xml.ws.WebServiceException: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:154)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 1 more
&lt;br&gt;Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1611)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:187)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:181)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1035)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:124)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:516)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:454)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:884)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1112)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1139)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1123)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:434)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:166)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 12 more
&lt;br&gt;Caused by: java.security.cert.CertificateException: No name matching localhost found
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.security.util.HostnameChecker.matchDNS(HostnameChecker.java:210)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.security.util.HostnameChecker.match(HostnameChecker.java:77)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkIdentity(X509TrustManagerImpl.java:264)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:250)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1014)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 25 more
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;Tomas Gustavsson&quot;&gt;&lt;br&gt;&lt;br&gt;You have configured the wrong keystore or password in
&lt;br&gt;ejbcawsracli.properties.
&lt;br&gt;&lt;br&gt;the error is clear .-)
&lt;br&gt;&lt;br&gt;Caused by: java.io.IOException: Keystore was tampered with, or password
&lt;br&gt;was incorrect
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26193741.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26163318</id>
	<title>SignServer 3.1 released</title>
	<published>2009-11-02T04:13:51Z</published>
	<updated>2009-11-02T04:13:51Z</updated>
	<author>
		<name>Markus Kilås-2</name>
	</author>
	<content type="html">The PrimeKey SignServer team is happy to announce that SignServer 3.1
&lt;br&gt;has been released! This is a major new version with lots of exciting
&lt;br&gt;functionality for document signing and validation.
&lt;br&gt;&lt;br&gt;Development continues beyond this version and all requests from the
&lt;br&gt;community and from the EJBCA Developer Conference [1] are scheduled for
&lt;br&gt;SignServer 3.2 or later releases.
&lt;br&gt;&lt;br&gt;More information is available at the project web site [2] and the
&lt;br&gt;complete changelog can be viewed in the issue tracker [3].
&lt;br&gt;&lt;br&gt;&lt;br&gt;Release Notes:
&lt;br&gt;&lt;br&gt;* New module system
&lt;br&gt;The byte code for a worker can be packaged as a separate module that can
&lt;br&gt;be loaded and unloaded at runtime.
&lt;br&gt;&lt;br&gt;* New workers: XMLSigner/Validator
&lt;br&gt;Signing and validation of XML documents
&lt;br&gt;&lt;br&gt;* New worker: ODFSigner
&lt;br&gt;Signing OpenDocument Format documents for instance used by OpenOffice.org
&lt;br&gt;&lt;br&gt;* New worker: OOXMLSigner
&lt;br&gt;Signing Office Open XML documents
&lt;br&gt;&lt;br&gt;* New worker: CRLValidator
&lt;br&gt;Validating certificates by looking up certificate revocation lists
&lt;br&gt;&lt;br&gt;* New worker: OCSPValidator
&lt;br&gt;Validating certificates using the online certificate status protocol
&lt;br&gt;&lt;br&gt;* New worker: MRTDSODSigner
&lt;br&gt;Signing EAC ePassports
&lt;br&gt;&lt;br&gt;* Several other features, fixes and improvements
&lt;br&gt;&lt;br&gt;&lt;br&gt;[1]	&lt;a href=&quot;http://www.primekey.se/Community/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.primekey.se/Community/&lt;/a&gt;&lt;br&gt;[2]	&lt;a href=&quot;http://www.signserver.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.signserver.org&lt;/a&gt;&lt;br&gt;[3]	&lt;a href=&quot;http://jira.primekey.se/browse/DSS&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.primekey.se/browse/DSS&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;The PrimeKey SignServer team
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-news mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26163318&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-news@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-news&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-news&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---News-f2440.html&quot; embed=&quot;fixTarget[2440]&quot; target=&quot;_top&quot; &gt;EjbCA - News&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SignServer-3.1-released-tp26163318p26163318.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26161543</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-02T02:16:35Z</published>
	<updated>2009-11-02T02:16:35Z</updated>
	<author>
		<name>Johan Eklund</name>
	</author>
	<content type="html">Hi khsheh,
&lt;br&gt;&lt;br&gt;Last cause-by in your stacktraces are:
&lt;br&gt;&lt;br&gt;&amp;quot;Caused by: java.security.UnrecoverableKeyException: Password verification
&lt;br&gt;failed&amp;quot;
&lt;br&gt;&lt;br&gt;Please verify the password use for the client-side SSL keystore.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Johan
&lt;br&gt;&lt;br&gt;&lt;br&gt;khsheh skrev:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am trying to create the IS cert and key. The CVCA documentation say that I
&lt;br&gt;&amp;gt; need to create an end entity for the IS and then use it to create the IS
&lt;br&gt;&amp;gt; cert / key. But I get the following errors when doing so. Is it related to
&lt;br&gt;&amp;gt; my ejbca Web Services being not properly setup or is it related to some
&lt;br&gt;&amp;gt; authentication issue like that in ejbcawsracli.properties? I cannot
&lt;br&gt;&amp;gt; understand the documentaton of how to setup the ejbcawsracli.properties.
&lt;br&gt;&amp;gt; Would you please help how to solve the probelms? My purpose is just to get
&lt;br&gt;&amp;gt; the IS cert and key. Thank you.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Creating an end entity
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; C:\EJBCA_~1\dist\EJBCAW~1&amp;gt;ejbcawsracli edituser isrsa1 foo123 false
&lt;br&gt;&amp;gt; &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL DV-RSA-1 1 USERGENERATED NEW IS IS 
&lt;br&gt;&amp;gt; Trying to add user:
&lt;br&gt;&amp;gt; Username: isrsa1
&lt;br&gt;&amp;gt; Subject DN: CN=ISRSA1,C=CN
&lt;br&gt;&amp;gt; Subject Altname: null
&lt;br&gt;&amp;gt; Email: null
&lt;br&gt;&amp;gt; CA Name: DV-RSA-1
&lt;br&gt;&amp;gt; Type: 1
&lt;br&gt;&amp;gt; Token: USERGENERATED
&lt;br&gt;&amp;gt; Status: 10
&lt;br&gt;&amp;gt; End entity profile: IS
&lt;br&gt;&amp;gt; Certificate profile: IS
&lt;br&gt;&amp;gt; Hard Token Issuer Alias: NONE
&lt;br&gt;&amp;gt; Start time: NONE
&lt;br&gt;&amp;gt; End time: NONE
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; org.ejbca.ui.cli.ErrorAdminCommandException:
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:166)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.ejbcawsracli.main(ejbcawsracli.java:34)
&lt;br&gt;&amp;gt; Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;gt; 	at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;gt; 	at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:154)
&lt;br&gt;&amp;gt; 	... 1 more
&lt;br&gt;&amp;gt; Caused by: java.net.SocketException: java.security.NoSuchAlgorithmException:
&lt;br&gt;&amp;gt; Error constructing implementation (algorithm: Default, provider: SunJSSE,
&lt;br&gt;&amp;gt; class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.throwException(SSLSocketFactory.java:179)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.createSocket(SSLSocketFactory.java:186)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsClient.createSocket(HttpsClient.java:362)
&lt;br&gt;&amp;gt; 	at sun.net.NetworkClient.doConnect(NetworkClient.java:145)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.&amp;lt;init&amp;gt;(HttpsClient.java:272)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:329)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:172)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:793)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:158)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;gt; 	at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.security.NoSuchAlgorithmException: Error constructing
&lt;br&gt;&amp;gt; implementation (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1245)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:220)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:147)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getInstance(SSLContext.java:125)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getDefault(SSLContext.java:68)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:102)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:325)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.HttpsURLConnection.&amp;lt;init&amp;gt;(HttpsURLConnection.java:283)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.&amp;lt;init&amp;gt;(HttpsURLConnectionImpl.java:65)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:42)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:37)
&lt;br&gt;&amp;gt; 	at java.net.URL.openConnection(URL.java:945)
&lt;br&gt;&amp;gt; 	... 14 more
&lt;br&gt;&amp;gt; Caused by: java.io.IOException: Keystore was tampered with, or password was
&lt;br&gt;&amp;gt; incorrect
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
&lt;br&gt;&amp;gt; 	at java.security.KeyStore.load(KeyStore.java:1185)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.getDefaultKeyManager(DefaultSSLContextImpl.java:150)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.&amp;lt;init&amp;gt;(DefaultSSLContextImpl.java:40)
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance0(Class.java:355)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance(Class.java:308)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1221)
&lt;br&gt;&amp;gt; 	... 25 more
&lt;br&gt;&amp;gt; Caused by: java.security.UnrecoverableKeyException: Password verification
&lt;br&gt;&amp;gt; failed
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
&lt;br&gt;&amp;gt; 	... 36 more
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2) &amp;nbsp;Due to the above problem, I have created the end entity using the admin
&lt;br&gt;&amp;gt; web page of Add Entity. But I have the problem of creating the IS cert and
&lt;br&gt;&amp;gt; key as follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; C:\EJBCA_~1\dist\EJBCAW~1&amp;gt;cvcwscli cvcrequest isrsa foo123 &amp;quot;C=CN,CN=HKIS&amp;quot;
&lt;br&gt;&amp;gt; 00005 SHA1WithRSA 1024 true HKIS 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Enrolling user:
&lt;br&gt;&amp;gt; Username: isrsa
&lt;br&gt;&amp;gt; Subject name: C=CN,CN=HKIS
&lt;br&gt;&amp;gt; Sequence: 00005
&lt;br&gt;&amp;gt; Signature algorithm: SHA1WithRSA
&lt;br&gt;&amp;gt; Key spec: 1024
&lt;br&gt;&amp;gt; Generating a new request with base filename: HKIS
&lt;br&gt;&amp;gt; Wrote binary request to: HKIS.cvreq
&lt;br&gt;&amp;gt; Wrote private key in PKCS#8 format to to: HKIS.pkcs8
&lt;br&gt;&amp;gt; Submitting CVC request for user 'isrsa'.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; org.ejbca.ui.cli.ErrorAdminCommandException:
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.CvcRequestCommand.execute(CvcRequestCommand.java:211)
&lt;br&gt;&amp;gt; 	at org.ejbca.core.protocol.ws.client.cvcwscli.main(cvcwscli.java:30)
&lt;br&gt;&amp;gt; Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;gt; 	at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;gt; 	at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.CvcRequestCommand.execute(CvcRequestCommand.java:188)
&lt;br&gt;&amp;gt; 	... 1 more
&lt;br&gt;&amp;gt; Caused by: java.net.SocketException: java.security.NoSuchAlgorithmException:
&lt;br&gt;&amp;gt; Error constructing implementation (algorithm: Default, provider: SunJSSE,
&lt;br&gt;&amp;gt; class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.throwException(SSLSocketFactory.java:179)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.createSocket(SSLSocketFactory.java:186)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsClient.createSocket(HttpsClient.java:362)
&lt;br&gt;&amp;gt; 	at sun.net.NetworkClient.doConnect(NetworkClient.java:145)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.&amp;lt;init&amp;gt;(HttpsClient.java:272)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:329)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:172)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:793)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:158)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;gt; 	at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.security.NoSuchAlgorithmException: Error constructing
&lt;br&gt;&amp;gt; implementation (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1245)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:220)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:147)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getInstance(SSLContext.java:125)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getDefault(SSLContext.java:68)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:102)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:325)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.HttpsURLConnection.&amp;lt;init&amp;gt;(HttpsURLConnection.java:283)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.&amp;lt;init&amp;gt;(HttpsURLConnectionImpl.java:65)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:42)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:37)
&lt;br&gt;&amp;gt; 	at java.net.URL.openConnection(URL.java:945)
&lt;br&gt;&amp;gt; 	... 14 more
&lt;br&gt;&amp;gt; Caused by: java.io.IOException: Keystore was tampered with, or password was
&lt;br&gt;&amp;gt; incorrect
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
&lt;br&gt;&amp;gt; 	at java.security.KeyStore.load(KeyStore.java:1185)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.getDefaultKeyManager(DefaultSSLContextImpl.java:150)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.&amp;lt;init&amp;gt;(DefaultSSLContextImpl.java:40)
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance0(Class.java:355)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance(Class.java:308)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1221)
&lt;br&gt;&amp;gt; 	... 25 more
&lt;br&gt;&amp;gt; Caused by: java.security.UnrecoverableKeyException: Password verification
&lt;br&gt;&amp;gt; failed
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
&lt;br&gt;&amp;gt; 	... 36 more
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks a lot!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161543&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt; for more information. &lt;a href=&quot;http://download.primekey.se/documents/ejbca_subscription.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_subscription.pdf&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://download.primekey.se/documents/ejbca_training.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.primekey.se/documents/ejbca_training.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161543&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26161543/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26161543.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26161535</id>
	<title>Re: Help on generating IS cert and key</title>
	<published>2009-11-02T02:15:13Z</published>
	<updated>2009-11-02T02:15:13Z</updated>
	<author>
		<name>Tomas Gustavsson</name>
	</author>
	<content type="html">&lt;br&gt;You have configured the wrong keystore or password in
&lt;br&gt;ejbcawsracli.properties.
&lt;br&gt;&lt;br&gt;the error is clear .-)
&lt;br&gt;&lt;br&gt;Caused by: java.io.IOException: Keystore was tampered with, or password
&lt;br&gt;was incorrect
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tomas
&lt;br&gt;&lt;br&gt;&lt;br&gt;khsheh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am trying to create the IS cert and key. The CVCA documentation say that I
&lt;br&gt;&amp;gt; need to create an end entity for the IS and then use it to create the IS
&lt;br&gt;&amp;gt; cert / key. But I get the following errors when doing so. Is it related to
&lt;br&gt;&amp;gt; my ejbca Web Services being not properly setup or is it related to some
&lt;br&gt;&amp;gt; authentication issue like that in ejbcawsracli.properties? I cannot
&lt;br&gt;&amp;gt; understand the documentaton of how to setup the ejbcawsracli.properties.
&lt;br&gt;&amp;gt; Would you please help how to solve the probelms? My purpose is just to get
&lt;br&gt;&amp;gt; the IS cert and key. Thank you.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1) Creating an end entity
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; C:\EJBCA_~1\dist\EJBCAW~1&amp;gt;ejbcawsracli edituser isrsa1 foo123 false
&lt;br&gt;&amp;gt; &amp;quot;CN=ISRSA1,C=CN&amp;quot; NULL NULL DV-RSA-1 1 USERGENERATED NEW IS IS 
&lt;br&gt;&amp;gt; Trying to add user:
&lt;br&gt;&amp;gt; Username: isrsa1
&lt;br&gt;&amp;gt; Subject DN: CN=ISRSA1,C=CN
&lt;br&gt;&amp;gt; Subject Altname: null
&lt;br&gt;&amp;gt; Email: null
&lt;br&gt;&amp;gt; CA Name: DV-RSA-1
&lt;br&gt;&amp;gt; Type: 1
&lt;br&gt;&amp;gt; Token: USERGENERATED
&lt;br&gt;&amp;gt; Status: 10
&lt;br&gt;&amp;gt; End entity profile: IS
&lt;br&gt;&amp;gt; Certificate profile: IS
&lt;br&gt;&amp;gt; Hard Token Issuer Alias: NONE
&lt;br&gt;&amp;gt; Start time: NONE
&lt;br&gt;&amp;gt; End time: NONE
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; org.ejbca.ui.cli.ErrorAdminCommandException:
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:166)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.ejbcawsracli.main(ejbcawsracli.java:34)
&lt;br&gt;&amp;gt; Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;gt; 	at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;gt; 	at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EditUserCommand.execute(EditUserCommand.java:154)
&lt;br&gt;&amp;gt; 	... 1 more
&lt;br&gt;&amp;gt; Caused by: java.net.SocketException: java.security.NoSuchAlgorithmException:
&lt;br&gt;&amp;gt; Error constructing implementation (algorithm: Default, provider: SunJSSE,
&lt;br&gt;&amp;gt; class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.throwException(SSLSocketFactory.java:179)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.createSocket(SSLSocketFactory.java:186)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsClient.createSocket(HttpsClient.java:362)
&lt;br&gt;&amp;gt; 	at sun.net.NetworkClient.doConnect(NetworkClient.java:145)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.&amp;lt;init&amp;gt;(HttpsClient.java:272)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:329)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:172)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:793)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:158)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;gt; 	at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.security.NoSuchAlgorithmException: Error constructing
&lt;br&gt;&amp;gt; implementation (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1245)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:220)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:147)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getInstance(SSLContext.java:125)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getDefault(SSLContext.java:68)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:102)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:325)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.HttpsURLConnection.&amp;lt;init&amp;gt;(HttpsURLConnection.java:283)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.&amp;lt;init&amp;gt;(HttpsURLConnectionImpl.java:65)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:42)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:37)
&lt;br&gt;&amp;gt; 	at java.net.URL.openConnection(URL.java:945)
&lt;br&gt;&amp;gt; 	... 14 more
&lt;br&gt;&amp;gt; Caused by: java.io.IOException: Keystore was tampered with, or password was
&lt;br&gt;&amp;gt; incorrect
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
&lt;br&gt;&amp;gt; 	at java.security.KeyStore.load(KeyStore.java:1185)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.getDefaultKeyManager(DefaultSSLContextImpl.java:150)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.&amp;lt;init&amp;gt;(DefaultSSLContextImpl.java:40)
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance0(Class.java:355)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance(Class.java:308)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1221)
&lt;br&gt;&amp;gt; 	... 25 more
&lt;br&gt;&amp;gt; Caused by: java.security.UnrecoverableKeyException: Password verification
&lt;br&gt;&amp;gt; failed
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
&lt;br&gt;&amp;gt; 	... 36 more
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2) &amp;nbsp;Due to the above problem, I have created the end entity using the admin
&lt;br&gt;&amp;gt; web page of Add Entity. But I have the problem of creating the IS cert and
&lt;br&gt;&amp;gt; key as follows:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; C:\EJBCA_~1\dist\EJBCAW~1&amp;gt;cvcwscli cvcrequest isrsa foo123 &amp;quot;C=CN,CN=HKIS&amp;quot;
&lt;br&gt;&amp;gt; 00005 SHA1WithRSA 1024 true HKIS 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Enrolling user:
&lt;br&gt;&amp;gt; Username: isrsa
&lt;br&gt;&amp;gt; Subject name: C=CN,CN=HKIS
&lt;br&gt;&amp;gt; Sequence: 00005
&lt;br&gt;&amp;gt; Signature algorithm: SHA1WithRSA
&lt;br&gt;&amp;gt; Key spec: 1024
&lt;br&gt;&amp;gt; Generating a new request with base filename: HKIS
&lt;br&gt;&amp;gt; Wrote binary request to: HKIS.cvreq
&lt;br&gt;&amp;gt; Wrote private key in PKCS#8 format to to: HKIS.pkcs8
&lt;br&gt;&amp;gt; Submitting CVC request for user 'isrsa'.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; org.ejbca.ui.cli.ErrorAdminCommandException:
&lt;br&gt;&amp;gt; javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.CvcRequestCommand.execute(CvcRequestCommand.java:211)
&lt;br&gt;&amp;gt; 	at org.ejbca.core.protocol.ws.client.cvcwscli.main(cvcwscli.java:30)
&lt;br&gt;&amp;gt; Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
&lt;br&gt;&amp;gt; java.security.NoSuchAlgorithmException: Error constructing implementation
&lt;br&gt;&amp;gt; (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
&lt;br&gt;&amp;gt; 	at com.sun.xml.ws.wsdl.WSDLContext.&amp;lt;init&amp;gt;(WSDLContext.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.client.WSServiceDelegate.&amp;lt;init&amp;gt;(WSServiceDelegate.java:103)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
&lt;br&gt;&amp;gt; 	at javax.xml.ws.Service.&amp;lt;init&amp;gt;(Service.java:57)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.&amp;lt;init&amp;gt;(EjbcaWSService.java:36)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:205)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(EJBCAWSRABaseCommand.java:187)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.ejbca.core.protocol.ws.client.CvcRequestCommand.execute(CvcRequestCommand.java:188)
&lt;br&gt;&amp;gt; 	... 1 more
&lt;br&gt;&amp;gt; Caused by: java.net.SocketException: java.security.NoSuchAlgorithmException:
&lt;br&gt;&amp;gt; Error constructing implementation (algorithm: Default, provider: SunJSSE,
&lt;br&gt;&amp;gt; class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.throwException(SSLSocketFactory.java:179)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.DefaultSSLSocketFactory.createSocket(SSLSocketFactory.java:186)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsClient.createSocket(HttpsClient.java:362)
&lt;br&gt;&amp;gt; 	at sun.net.NetworkClient.doConnect(NetworkClient.java:145)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
&lt;br&gt;&amp;gt; 	at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.&amp;lt;init&amp;gt;(HttpsClient.java:272)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:329)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:172)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:793)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:158)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1041)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
&lt;br&gt;&amp;gt; 	at java.net.URL.openStream(URL.java:1009)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:159)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.security.NoSuchAlgorithmException: Error constructing
&lt;br&gt;&amp;gt; implementation (algorithm: Default, provider: SunJSSE, class:
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1245)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:220)
&lt;br&gt;&amp;gt; 	at sun.security.jca.GetInstance.getInstance(GetInstance.java:147)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getInstance(SSLContext.java:125)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLContext.getDefault(SSLContext.java:68)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:102)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:325)
&lt;br&gt;&amp;gt; 	at javax.net.ssl.HttpsURLConnection.&amp;lt;init&amp;gt;(HttpsURLConnection.java:283)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.net.www.protocol.https.HttpsURLConnectionImpl.&amp;lt;init&amp;gt;(HttpsURLConnectionImpl.java:65)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:42)
&lt;br&gt;&amp;gt; 	at sun.net.www.protocol.https.Handler.openConnection(Handler.java:37)
&lt;br&gt;&amp;gt; 	at java.net.URL.openConnection(URL.java:945)
&lt;br&gt;&amp;gt; 	... 14 more
&lt;br&gt;&amp;gt; Caused by: java.io.IOException: Keystore was tampered with, or password was
&lt;br&gt;&amp;gt; incorrect
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
&lt;br&gt;&amp;gt; 	at java.security.KeyStore.load(KeyStore.java:1185)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.getDefaultKeyManager(DefaultSSLContextImpl.java:150)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl.&amp;lt;init&amp;gt;(DefaultSSLContextImpl.java:40)
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance0(Class.java:355)
&lt;br&gt;&amp;gt; 	at java.lang.Class.newInstance(Class.java:308)
&lt;br&gt;&amp;gt; 	at java.security.Provider$Service.newInstance(Provider.java:1221)
&lt;br&gt;&amp;gt; 	... 25 more
&lt;br&gt;&amp;gt; Caused by: java.security.UnrecoverableKeyException: Password verification
&lt;br&gt;&amp;gt; failed
&lt;br&gt;&amp;gt; 	at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
&lt;br&gt;&amp;gt; 	... 36 more
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks a lot!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ejbca-develop mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ejbca-develop@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ejbca-develop&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/EjbCA---Dev-f2441.html&quot; embed=&quot;fixTarget[2441]&quot; target=&quot;_top&quot; &gt;EjbCA - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-on-generating-IS-cert-and-key-tp26156647p26161535.html" />
</entry>

</feed>
