generate a server cetificate with cli

View: New views
20 Messages — Rating Filter:   Alert me  
< Prev | 1 - 2 | Next >

generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I would like te generate a server certificate by using cli. I use :
./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
and i have the error :
Warning: -jar not understood. Ignoring.
Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
   at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
   at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
   at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean) (/usr/lib/libgcj.so.5.0.0)
   at __gcj_personality_v0 (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
   at __libc_start_main (/lib/tls/libc-2.3.4.so)
   at _Jv_RegisterClasses (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)

Somebody could help me ?
Thanks

Re: generate a server cetificate with cli

by Tomas Gustavsson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Anais,
you have wrongly configured you path and java. As you can see from below
the java you try to use is GNU java. GNU java does not work. Use a real
java.

Cheers,
Tomas


Anais wrote:

> Hi,
>
> I would like te generate a server certificate by using cli. I use :
> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
> and i have the error :
> Warning: -jar not understood. Ignoring.
> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
> (/usr/lib/libgcj.so.5.0.0)
>    at __gcj_personality_v0
> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>    at _Jv_RegisterClasses
> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>
> Somebody could help me ?
> Thanks

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@...
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

i have downloaded and installed the rpm of jdk5 and my PATH is  :
/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
that is correct but that does'nt work so i don't understand.

Thanks
Tomas Gustavsson wrote:
Anais,
you have wrongly configured you path and java. As you can see from below
the java you try to use is GNU java. GNU java does not work. Use a real
java.

Cheers,
Tomas


Anais wrote:
> Hi,
>
> I would like te generate a server certificate by using cli. I use :
> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
> and i have the error :
> Warning: -jar not understood. Ignoring.
> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
> (/usr/lib/libgcj.so.5.0.0)
>    at __gcj_personality_v0
> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>    at _Jv_RegisterClasses
> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>
> Somebody could help me ?
> Thanks

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Johan Eklund :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dear Anais,

I am certain that you are using gcj because the bugtrace says:

Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)

try: sudo update-alternatives --config java to change the version you are using.

Best regards,
Tham



Anais wrote:

> Hi,
>
> i have downloaded and installed the rpm of jdk5 and my PATH is  :
> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
> that is correct but that does'nt work so i don't understand.
>
> Thanks
>
> Tomas Gustavsson wrote:
>  
>> Anais,
>> you have wrongly configured you path and java. As you can see from below
>> the java you try to use is GNU java. GNU java does not work. Use a real
>> java.
>>
>> Cheers,
>> Tomas
>>
>>
>> Anais wrote:
>>    
>>> Hi,
>>>
>>> I would like te generate a server certificate by using cli. I use :
>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>> and i have the error :
>>> Warning: -jar not understood. Ignoring.
>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
>>> (/usr/lib/libgcj.so.5.0.0)
>>>    at __gcj_personality_v0
>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>    at _Jv_RegisterClasses
>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>
>>> Somebody could help me ?
>>> Thanks
>>>      
>> -------------------------------------------------------------------------
>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>> Studies have shown that voting for your favorite open source project,
>> along with a healthy diet, reduces your potential for chronic lameness
>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>> _______________________________________________
>> Ejbca-develop mailing list
>> Ejbca-develop@...
>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>
>>
>>    
>
>  


--
PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact info@... for more information. http://download.primekey.se/documents/ejbca_subscription.pdf http://download.primekey.se/documents/ejbca_training.pdf



-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@...
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Tomas Gustavsson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


You need to put /usr/java/jdk1.5.0_11/bin in the path not just
/usr/java/jdk1.5.0_11/.

/Tomas


Tham Wickenberg wrote:

> Dear Anais,
>
> I am certain that you are using gcj because the bugtrace says:
>
> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>
> try: sudo update-alternatives --config java to change the version you are using.
>
> Best regards,
> Tham
>
>
>
> Anais wrote:
>> Hi,
>>
>> i have downloaded and installed the rpm of jdk5 and my PATH is  :
>> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
>> that is correct but that does'nt work so i don't understand.
>>
>> Thanks
>>
>> Tomas Gustavsson wrote:
>>  
>>> Anais,
>>> you have wrongly configured you path and java. As you can see from below
>>> the java you try to use is GNU java. GNU java does not work. Use a real
>>> java.
>>>
>>> Cheers,
>>> Tomas
>>>
>>>
>>> Anais wrote:
>>>    
>>>> Hi,
>>>>
>>>> I would like te generate a server certificate by using cli. I use :
>>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>>> and i have the error :
>>>> Warning: -jar not understood. Ignoring.
>>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
>>>> (/usr/lib/libgcj.so.5.0.0)
>>>>    at __gcj_personality_v0
>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>>    at _Jv_RegisterClasses
>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>
>>>> Somebody could help me ?
>>>> Thanks
>>>>      
>>> -------------------------------------------------------------------------
>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>> Studies have shown that voting for your favorite open source project,
>>> along with a healthy diet, reduces your potential for chronic lameness
>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>> _______________________________________________
>>> Ejbca-develop mailing list
>>> Ejbca-develop@...
>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>
>>>
>>>    
>>  
>
>

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@...
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
I already have try this but i don't have an other choice which is not normal.
I search about this.
thank
Tham Wickenberg wrote:
Dear Anais,

I am certain that you are using gcj because the bugtrace says:

Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)

try: sudo update-alternatives --config java to change the version you are using.

Best regards,
Tham



Anais wrote:
> Hi,
>
> i have downloaded and installed the rpm of jdk5 and my PATH is  :
> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
> that is correct but that does'nt work so i don't understand.
>
> Thanks
>
> Tomas Gustavsson wrote:
>  
>> Anais,
>> you have wrongly configured you path and java. As you can see from below
>> the java you try to use is GNU java. GNU java does not work. Use a real
>> java.
>>
>> Cheers,
>> Tomas
>>
>>
>> Anais wrote:
>>    
>>> Hi,
>>>
>>> I would like te generate a server certificate by using cli. I use :
>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>> and i have the error :
>>> Warning: -jar not understood. Ignoring.
>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
>>> (/usr/lib/libgcj.so.5.0.0)
>>>    at __gcj_personality_v0
>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>    at _Jv_RegisterClasses
>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>
>>> Somebody could help me ?
>>> Thanks
>>>      
>> -------------------------------------------------------------------------
>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>> Studies have shown that voting for your favorite open source project,
>> along with a healthy diet, reduces your potential for chronic lameness
>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>> _______________________________________________
>> Ejbca-develop mailing list
>> Ejbca-develop@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>
>>
>>    
>
>  


--
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. http://download.primekey.se/documents/ejbca_subscription.pdf http://download.primekey.se/documents/ejbca_training.pdf



-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I have resolved my problem with alternatives but now i have an other one !
When i run my ejcawsracli.sh i have :
./ejbcawsracli.sh finduser USERNAME EQUALS leclientjavax.xml.ws.WebServiceException: java.net.SocketException: Default SSL context init failed: null
org.ejbca.ui.cli.ErrorAdminCommandException: javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL context init failed: null
        at org.ejbca.core.protocol.ws.client.FindUserCommand.execute(Unknown Source)
        at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(Unknown Source)
Caused by: javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL context init failed: null
        at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
        at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
        at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
        at com.sun.xml.ws.wsdl.WSDLContext.<init>(WSDLContext.java:57)
        at com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
        at com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:103)
        at com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
        at javax.xml.ws.Service.<init>(Service.java:57)
        at org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.<init>(Unknown Source)
        at org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown Source)
        at org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown Source)
        ... 2 more

What's wrong with le ssl connexion ?
thank
 
Tomas Gustavsson wrote:
You need to put /usr/java/jdk1.5.0_11/bin in the path not just
/usr/java/jdk1.5.0_11/.

/Tomas


Tham Wickenberg wrote:
> Dear Anais,
>
> I am certain that you are using gcj because the bugtrace says:
>
> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>
> try: sudo update-alternatives --config java to change the version you are using.
>
> Best regards,
> Tham
>
>
>
> Anais wrote:
>> Hi,
>>
>> i have downloaded and installed the rpm of jdk5 and my PATH is  :
>> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
>> that is correct but that does'nt work so i don't understand.
>>
>> Thanks
>>
>> Tomas Gustavsson wrote:
>>  
>>> Anais,
>>> you have wrongly configured you path and java. As you can see from below
>>> the java you try to use is GNU java. GNU java does not work. Use a real
>>> java.
>>>
>>> Cheers,
>>> Tomas
>>>
>>>
>>> Anais wrote:
>>>    
>>>> Hi,
>>>>
>>>> I would like te generate a server certificate by using cli. I use :
>>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>>> and i have the error :
>>>> Warning: -jar not understood. Ignoring.
>>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean)
>>>> (/usr/lib/libgcj.so.5.0.0)
>>>>    at __gcj_personality_v0
>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>>    at _Jv_RegisterClasses
>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>
>>>> Somebody could help me ?
>>>> Thanks
>>>>      
>>> -------------------------------------------------------------------------
>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>> Studies have shown that voting for your favorite open source project,
>>> along with a healthy diet, reduces your potential for chronic lameness
>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>> _______________________________________________
>>> Ejbca-develop mailing list
>>> Ejbca-develop@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>
>>>
>>>    
>>  
>
>

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Johan Eklund :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Did you configure the properties file correctly to use a correct JKS
keystore for an administrator?

PS: the command should be something like:
./ejbcawsracli.sh finduser USERNAME EQUALS foo

Cheers,
Tomas


Anais wrote:

> Hi,
>
> I have resolved my problem with alternatives but now i have an other one !
> When i run my ejcawsracli.sh i have :
> ./ejbcawsracli.sh finduser USERNAME EQUALS
> leclientjavax.xml.ws.WebServiceException: java.net.SocketException: Default
> SSL context init failed: null
> org.ejbca.ui.cli.ErrorAdminCommandException:
> javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL
> context init failed: null
>         at org.ejbca.core.protocol.ws.client.FindUserCommand.execute(Unknown
> Source)
>         at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(Unknown
> Source)
> Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
> Default SSL context init failed: null
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
>         at com.sun.xml.ws.wsdl.WSDLContext.<init>(WSDLContext.java:57)
>         at
> com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
>         at
> com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:103)
>         at
> com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
>         at javax.xml.ws.Service.<init>(Service.java:57)
>         at
> org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.<init>(Unknown Source)
>         at
> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
> Source)
>         at
> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
> Source)
>         ... 2 more
>
> What's wrong with le ssl connexion ?
> thank
>  
>
> Tomas Gustavsson wrote:
>>
>> You need to put /usr/java/jdk1.5.0_11/bin in the path not just
>> /usr/java/jdk1.5.0_11/.
>>
>> /Tomas
>>
>>
>> Tham Wickenberg wrote:
>>> Dear Anais,
>>>
>>> I am certain that you are using gcj because the bugtrace says:
>>>
>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>> try: sudo update-alternatives --config java to change the version you are
>>> using.
>>>
>>> Best regards,
>>> Tham
>>>
>>>
>>>
>>> Anais wrote:
>>>> Hi,
>>>>
>>>> i have downloaded and installed the rpm of jdk5 and my PATH is  :
>>>> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
>>>> that is correct but that does'nt work so i don't understand.
>>>>
>>>> Thanks
>>>>
>>>> Tomas Gustavsson wrote:
>>>>  
>>>>> Anais,
>>>>> you have wrongly configured you path and java. As you can see from
>>>>> below
>>>>> the java you try to use is GNU java. GNU java does not work. Use a real
>>>>> java.
>>>>>
>>>>> Cheers,
>>>>> Tomas
>>>>>
>>>>>
>>>>> Anais wrote:
>>>>>    
>>>>>> Hi,
>>>>>>
>>>>>> I would like te generate a server certificate by using cli. I use :
>>>>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>>>>> and i have the error :
>>>>>> Warning: -jar not understood. Ignoring.
>>>>>> Exception in thread "main" java.lang.NoClassDefFoundError:
>>>>>> ejbcawscli.jar
>>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const,
>>>>>> boolean)
>>>>>> (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at __gcj_personality_v0
>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>>>>    at _Jv_RegisterClasses
>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>
>>>>>> Somebody could help me ?
>>>>>> Thanks
>>>>>>      
>>>>> -------------------------------------------------------------------------
>>>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>>>> Studies have shown that voting for your favorite open source project,
>>>>> along with a healthy diet, reduces your potential for chronic lameness
>>>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>>>> _______________________________________________
>>>>> Ejbca-develop mailing list
>>>>> Ejbca-develop@...
>>>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>>>
>>>>>
>>>>>    
>>>>  
>>>
>> -------------------------------------------------------------------------
>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>> Studies have shown that voting for your favorite open source project,
>> along with a healthy diet, reduces your potential for chronic lameness
>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>> _______________________________________________
>> Ejbca-develop mailing list
>> Ejbca-develop@...
>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>
>>
>

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@...
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Tomas,

My properties file references to superadmin.jks but i don't have this file.
So i have convert my superadmin.p12 to superadmin.jks by using openSSl but i always have the same error.

Thanks

Tham Wickenberg wrote:
Did you configure the properties file correctly to use a correct JKS
keystore for an administrator?

PS: the command should be something like:
./ejbcawsracli.sh finduser USERNAME EQUALS foo

Cheers,
Tomas


Anais wrote:
> Hi,
>
> I have resolved my problem with alternatives but now i have an other one !
> When i run my ejcawsracli.sh i have :
> ./ejbcawsracli.sh finduser USERNAME EQUALS
> leclientjavax.xml.ws.WebServiceException: java.net.SocketException: Default
> SSL context init failed: null
> org.ejbca.ui.cli.ErrorAdminCommandException:
> javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL
> context init failed: null
>         at org.ejbca.core.protocol.ws.client.FindUserCommand.execute(Unknown
> Source)
>         at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(Unknown
> Source)
> Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
> Default SSL context init failed: null
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
>         at
> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
>         at com.sun.xml.ws.wsdl.WSDLContext.<init>(WSDLContext.java:57)
>         at
> com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
>         at
> com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:103)
>         at
> com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
>         at javax.xml.ws.Service.<init>(Service.java:57)
>         at
> org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.<init>(Unknown Source)
>         at
> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
> Source)
>         at
> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
> Source)
>         ... 2 more
>
> What's wrong with le ssl connexion ?
> thank
>  
>
> Tomas Gustavsson wrote:
>>
>> You need to put /usr/java/jdk1.5.0_11/bin in the path not just
>> /usr/java/jdk1.5.0_11/.
>>
>> /Tomas
>>
>>
>> Tham Wickenberg wrote:
>>> Dear Anais,
>>>
>>> I am certain that you are using gcj because the bugtrace says:
>>>
>>> Exception in thread "main" java.lang.NoClassDefFoundError: ejbcawscli.jar
>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>> try: sudo update-alternatives --config java to change the version you are
>>> using.
>>>
>>> Best regards,
>>> Tham
>>>
>>>
>>>
>>> Anais wrote:
>>>> Hi,
>>>>
>>>> i have downloaded and installed the rpm of jdk5 and my PATH is  :
>>>> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
>>>> that is correct but that does'nt work so i don't understand.
>>>>
>>>> Thanks
>>>>
>>>> Tomas Gustavsson wrote:
>>>>  
>>>>> Anais,
>>>>> you have wrongly configured you path and java. As you can see from
>>>>> below
>>>>> the java you try to use is GNU java. GNU java does not work. Use a real
>>>>> java.
>>>>>
>>>>> Cheers,
>>>>> Tomas
>>>>>
>>>>>
>>>>> Anais wrote:
>>>>>    
>>>>>> Hi,
>>>>>>
>>>>>> I would like te generate a server certificate by using cli. I use :
>>>>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>>>>> and i have the error :
>>>>>> Warning: -jar not understood. Ignoring.
>>>>>> Exception in thread "main" java.lang.NoClassDefFoundError:
>>>>>> ejbcawscli.jar
>>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const,
>>>>>> boolean)
>>>>>> (/usr/lib/libgcj.so.5.0.0)
>>>>>>    at __gcj_personality_v0
>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>>>>    at _Jv_RegisterClasses
>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>
>>>>>> Somebody could help me ?
>>>>>> Thanks
>>>>>>      
>>>>> -------------------------------------------------------------------------
>>>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>>>> Studies have shown that voting for your favorite open source project,
>>>>> along with a healthy diet, reduces your potential for chronic lameness
>>>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>>>> _______________________________________________
>>>>> Ejbca-develop mailing list
>>>>> Ejbca-develop@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>>>
>>>>>
>>>>>    
>>>>  
>>>
>> -------------------------------------------------------------------------
>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>> Studies have shown that voting for your favorite open source project,
>> along with a healthy diet, reduces your potential for chronic lameness
>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>> _______________________________________________
>> Ejbca-develop mailing list
>> Ejbca-develop@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>
>>
>

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

Re: generate a server cetificate with cli

by Johan Eklund :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Anais,

If you list the "superadmin" user in EJBCA's Admin GUI, edit it, set
password to the same thing as in the properties file and token-type to JKS.
Run "$EJBCA_HOME/bin/ejbca.sh batch" to generate
$EJBCA_HOME/p12/superadmin.jks.
Make sure this file is present in the path specified in the properties file.

Best Regards,
Johan Eklund

Anais skrev:

> Hi Tomas,
>
> My properties file references to superadmin.jks but i don't have this file.
> So i have convert my superadmin.p12 to superadmin.jks by using openSSl but i
> always have the same error.
>
> Thanks
>
>
> Tham Wickenberg wrote:
>  
>> Did you configure the properties file correctly to use a correct JKS
>> keystore for an administrator?
>>
>> PS: the command should be something like:
>> ./ejbcawsracli.sh finduser USERNAME EQUALS foo
>>
>> Cheers,
>> Tomas
>>
>>
>> Anais wrote:
>>    
>>> Hi,
>>>
>>> I have resolved my problem with alternatives but now i have an other one
>>> !
>>> When i run my ejcawsracli.sh i have :
>>> ./ejbcawsracli.sh finduser USERNAME EQUALS
>>> leclientjavax.xml.ws.WebServiceException: java.net.SocketException:
>>> Default
>>> SSL context init failed: null
>>> org.ejbca.ui.cli.ErrorAdminCommandException:
>>> javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL
>>> context init failed: null
>>>         at
>>> org.ejbca.core.protocol.ws.client.FindUserCommand.execute(Unknown
>>> Source)
>>>         at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(Unknown
>>> Source)
>>> Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
>>> Default SSL context init failed: null
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
>>>         at com.sun.xml.ws.wsdl.WSDLContext.<init>(WSDLContext.java:57)
>>>         at
>>> com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
>>>         at
>>> com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:103)
>>>         at
>>> com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
>>>         at javax.xml.ws.Service.<init>(Service.java:57)
>>>         at
>>> org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.<init>(Unknown
>>> Source)
>>>         at
>>> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
>>> Source)
>>>         at
>>> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
>>> Source)
>>>         ... 2 more
>>>
>>> What's wrong with le ssl connexion ?
>>> thank
>>>  
>>>
>>> Tomas Gustavsson wrote:
>>>      
>>>> You need to put /usr/java/jdk1.5.0_11/bin in the path not just
>>>> /usr/java/jdk1.5.0_11/.
>>>>
>>>> /Tomas
>>>>
>>>>
>>>> Tham Wickenberg wrote:
>>>>        
>>>>> Dear Anais,
>>>>>
>>>>> I am certain that you are using gcj because the bugtrace says:
>>>>>
>>>>> Exception in thread "main" java.lang.NoClassDefFoundError:
>>>>> ejbcawscli.jar
>>>>>          
>>>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>>>>              
>>>>> try: sudo update-alternatives --config java to change the version you
>>>>> are
>>>>> using.
>>>>>
>>>>> Best regards,
>>>>> Tham
>>>>>
>>>>>
>>>>>
>>>>> Anais wrote:
>>>>>          
>>>>>> Hi,
>>>>>>
>>>>>> i have downloaded and installed the rpm of jdk5 and my PATH is  :
>>>>>> /usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/java/jdk1.5.0_11/:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/j2ee/apache-ant-1.6.5/bin:/usr/j2ee/apache-ant-1.6.5/bin:/root/bin:/usr/j2ee/apache-ant-1.6.5/bin
>>>>>> that is correct but that does'nt work so i don't understand.
>>>>>>
>>>>>> Thanks
>>>>>>
>>>>>> Tomas Gustavsson wrote:
>>>>>>  
>>>>>>            
>>>>>>> Anais,
>>>>>>> you have wrongly configured you path and java. As you can see from
>>>>>>> below
>>>>>>> the java you try to use is GNU java. GNU java does not work. Use a
>>>>>>> real
>>>>>>> java.
>>>>>>>
>>>>>>> Cheers,
>>>>>>> Tomas
>>>>>>>
>>>>>>>
>>>>>>> Anais wrote:
>>>>>>>    
>>>>>>>              
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I would like te generate a server certificate by using cli. I use :
>>>>>>>> ./ejbcawsracli.sh pkcs12req testuser foo123 2048 NONE tmp
>>>>>>>> and i have the error :
>>>>>>>> Warning: -jar not understood. Ignoring.
>>>>>>>> Exception in thread "main" java.lang.NoClassDefFoundError:
>>>>>>>> ejbcawscli.jar
>>>>>>>>    at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.5.0.0)
>>>>>>>>    at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.5.0.0)
>>>>>>>>    at _Jv_RunMain(java.lang.Class, byte const, int, byte const,
>>>>>>>> boolean)
>>>>>>>> (/usr/lib/libgcj.so.5.0.0)
>>>>>>>>    at __gcj_personality_v0
>>>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>>>    at __libc_start_main (/lib/tls/libc-2.3.4.so)
>>>>>>>>    at _Jv_RegisterClasses
>>>>>>>> (/usr/jboss-4.2.2.GA-src/j2ee/ejbca_3_5_4/dist/ejbcawscli/java.version=1.4.2)
>>>>>>>>
>>>>>>>> Somebody could help me ?
>>>>>>>> Thanks
>>>>>>>>      
>>>>>>>>                
>>>>>>> -------------------------------------------------------------------------
>>>>>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>>>>>> Studies have shown that voting for your favorite open source project,
>>>>>>> along with a healthy diet, reduces your potential for chronic
>>>>>>> lameness
>>>>>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>>>>>> _______________________________________________
>>>>>>> Ejbca-develop mailing list
>>>>>>> Ejbca-develop@...
>>>>>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>>>>>
>>>>>>>
>>>>>>>    
>>>>>>>              
>>>>>>  
>>>>>>            
>>>> -------------------------------------------------------------------------
>>>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>>>> Studies have shown that voting for your favorite open source project,
>>>> along with a healthy diet, reduces your potential for chronic lameness
>>>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>>>> _______________________________________________
>>>> Ejbca-develop mailing list
>>>> Ejbca-develop@...
>>>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>>>
>>>>
>>>>        
>> -------------------------------------------------------------------------
>> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
>> Studies have shown that voting for your favorite open source project,
>> along with a healthy diet, reduces your potential for chronic lameness
>> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
>> _______________________________________________
>> Ejbca-develop mailing list
>> Ejbca-develop@...
>> https://lists.sourceforge.net/lists/listinfo/ejbca-develop
>>
>>
>>    
>
>  

--
PrimeKey Solutions offers a commercial EJBCA support subscription and training for EJBCA. Please see www.primekey.se or contact info@... for more information. http://download.primekey.se/documents/ejbca_subscription.pdf http://download.primekey.se/documents/ejbca_training.pdf




-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Ejbca-develop mailing list
Ejbca-develop@...
https://lists.sourceforge.net/lists/listinfo/ejbca-develop

smime.p7s (3K) Download Attachment

Re: generate a server cetificate with cli

by Anais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Johan,

In my properties file i must replace
ejbcawsracli.keystore.path=superadmin.jks
to
ejbcawsracli.keystore.path=$EJBCA_HOME/p12/superadmin.jks
isn't it ?

Tham Wickenberg wrote:
Hi Anais,

If you list the "superadmin" user in EJBCA's Admin GUI, edit it, set
password to the same thing as in the properties file and token-type to JKS.
Run "$EJBCA_HOME/bin/ejbca.sh batch" to generate
$EJBCA_HOME/p12/superadmin.jks.
Make sure this file is present in the path specified in the properties file.

Best Regards,
Johan Eklund

Anais skrev:
> Hi Tomas,
>
> My properties file references to superadmin.jks but i don't have this file.
> So i have convert my superadmin.p12 to superadmin.jks by using openSSl but i
> always have the same error.
>
> Thanks
>
>
> Tham Wickenberg wrote:
>  
>> Did you configure the properties file correctly to use a correct JKS
>> keystore for an administrator?
>>
>> PS: the command should be something like:
>> ./ejbcawsracli.sh finduser USERNAME EQUALS foo
>>
>> Cheers,
>> Tomas
>>
>>
>> Anais wrote:
>>    
>>> Hi,
>>>
>>> I have resolved my problem with alternatives but now i have an other one
>>> !
>>> When i run my ejcawsracli.sh i have :
>>> ./ejbcawsracli.sh finduser USERNAME EQUALS
>>> leclientjavax.xml.ws.WebServiceException: java.net.SocketException:
>>> Default
>>> SSL context init failed: null
>>> org.ejbca.ui.cli.ErrorAdminCommandException:
>>> javax.xml.ws.WebServiceException: java.net.SocketException: Default SSL
>>> context init failed: null
>>>         at
>>> org.ejbca.core.protocol.ws.client.FindUserCommand.execute(Unknown
>>> Source)
>>>         at org.ejbca.core.protocol.ws.client.ejbcawsracli.main(Unknown
>>> Source)
>>> Caused by: javax.xml.ws.WebServiceException: java.net.SocketException:
>>> Default SSL context init failed: null
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.createReader(RuntimeWSDLParser.java:162)
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:188)
>>>         at
>>> com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:66)
>>>         at com.sun.xml.ws.wsdl.WSDLContext.<init>(WSDLContext.java:57)
>>>         at
>>> com.sun.xml.ws.client.ServiceContextBuilder.build(ServiceContextBuilder.java:60)
>>>         at
>>> com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:103)
>>>         at
>>> com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:50)
>>>         at javax.xml.ws.Service.<init>(Service.java:57)
>>>         at
>>> org.ejbca.core.protocol.ws.client.gen.EjbcaWSService.<init>(Unknown
>>> Source)
>>>         at
>>> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
>>> Source)
>>>         at
>>> org.ejbca.core.protocol.ws.client.EJBCAWSRABaseCommand.getEjbcaRAWS(Unknown
>>> Source)
>>>         ... 2 more
>>>
>>> What's wrong with le ssl connexion ?
>>> thank
>>>  
>>>
>>> Tomas Gustavsson wrote:
>>>      
>>>> You need to put /usr/java/jdk1.5.0_11/bin in the path not just
>>>> /usr/java/jdk1.5.0_11/.
>>>>
>>>> /Tomas
>>>>
>>>>
>>>> Tham Wickenberg wrote:
>>>>        
>>>>> Dear Anais,
>>>>>
>>>>> I am certain that you are using gcj because the bugtrace says:
>>>>>
>>>>> Exception in thread "main" java.lang.NoClassDefFoundError:
>>>>> ejbcawscli.jar
>>>>>