Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2016-07-19 Thread Irfan Sayed
you need to install the JCE and JRE with same version and have to be on the
default path when p4 need them. as per the code of p4 plugin, these two
need to be on the same version and registered.

please make sure you have these.

this will solve the issue
Regards
Irfan


On Tue, Jul 19, 2016 at 5:53 PM, Hassan Iqbal  wrote:

> I was also facing similar problem. Even after updating the JCE jars for
> java 8, SSL connection issue was coming. Reinstalling the JDK-8u92 and then
> updating the JCE solved the issue.
>
>
> On Monday, September 29, 2014 at 11:53:08 AM UTC+5:30, Shobha Dashottar
> wrote:
>>
>> I ran that test code and earlier it gave 128 . So, made a few more
>> changes like reinstalling jdk, setting the java paths in a few more files
>> for Jenkins to get the path during slave launch itself and then finally
>> copying the UnlimitedJCEPolicy jar files even though they existed in the
>> security folder.
>>
>> Looks like something was messed up in my java environment as after I ran
>> the test code it gave me the value 2147483647.  the SSL handshake error has
>> gone away too.
>>
>> Thanks Dan for your help on this. Much Appreciated.
>>
>>
>> On Friday, September 26, 2014 9:30:58 PM UTC+5:30, Dan Tran wrote:
>>>
>>>
>>> Also note, that p4jenkins uses the startup JRE to talk to perforce ( not
>>> the one configure in the job)
>>>
>>> -D
>>>
>>> On Thursday, September 25, 2014 7:11:13 PM UTC-7, Dan Tran wrote:


  run a java test with your JRE?

 private boolean isUnlimitedCryptoSupported() throws
 NoSuchAlgorithmException {
 int bits = Cipher.getMaxAllowedKeyLength("AES");
 this.getLog().info("Current encryption strength is: " + bits);
 return bits == 2147483647;

 }




 On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar
 wrote:
>
> I have now removed all the older jre versions from the systems leaving
> jre only in one place. I even have the JRE  home in the PATH variable.
>
> I have setup some Windows VMs now but those are too giving the same
> error. They already have the JCE jars in their installation folders.
>
> Is there some other requirement for this to work ?
>
> Thanks
> Shobha
>
> On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>>
>>
>> Very likely, you patch the wrong JRE
>>
>> -D
>>
>> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar
>> wrote:
>>>
>>> I am setting up a  new Jenkins server. I have been using the
>>> Perforce Plugin so far but this time I have switched to the P4 Plugin as
>>> has a good integration with the Credential Plugin to connect to the
>>> perforce server.
>>>
>>> For most of the VMs that I am connecting to it goes ahead with P4
>>> command execution without issue. So far one VM is giving issue and 
>>> throwing
>>> exception while even trying to communicate with the perforce server.
>>>
>>> P4: Unable to connect: 
>>> com.perforce.p4java.exception.ConnectionException: Error occurred 
>>> during the SSL handshake: invalid SSL session
>>> P4: Unable to use Workspace: java.lang.NullPointerException
>>> P4: Unable to close Perforce connection: java.lang.NullPointerException
>>> ERROR: Unable to update workspace: java.lang.NullPointerException
>>>
>>> After following some articles, I have added the jars from JCE for Java 
>>> 7 inside the slave VMs jre/lib/security folder.
>>> But still the error keeps popping up.
>>>
>>> Does anyone know what is going on or is missing on that VM?
>>>
>>> Thanks
>>> Shobha
>>>
>>>
>>> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/d948f1e5-53b2-4a3c-bad9-70a0a3dfde5a%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CACGLCJaXPi1g_gHjQVJ2hvXw2%3DW3f25xdsr7%3D_Za1k-qkg-tgQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2016-07-19 Thread Hassan Iqbal
I was also facing similar problem. Even after updating the JCE jars for 
java 8, SSL connection issue was coming. Reinstalling the JDK-8u92 and then 
updating the JCE solved the issue.

On Monday, September 29, 2014 at 11:53:08 AM UTC+5:30, Shobha Dashottar 
wrote:
>
> I ran that test code and earlier it gave 128 . So, made a few more changes 
> like reinstalling jdk, setting the java paths in a few more files for 
> Jenkins to get the path during slave launch itself and then finally copying 
> the UnlimitedJCEPolicy jar files even though they existed in the security 
> folder.
>
> Looks like something was messed up in my java environment as after I ran 
> the test code it gave me the value 2147483647.  the SSL handshake error has 
> gone away too.
>
> Thanks Dan for your help on this. Much Appreciated.
>
>
> On Friday, September 26, 2014 9:30:58 PM UTC+5:30, Dan Tran wrote:
>>
>>
>> Also note, that p4jenkins uses the startup JRE to talk to perforce ( not 
>> the one configure in the job)
>>
>> -D
>>
>> On Thursday, September 25, 2014 7:11:13 PM UTC-7, Dan Tran wrote:
>>>
>>>
>>>  run a java test with your JRE?
>>>
>>> private boolean isUnlimitedCryptoSupported() throws 
>>> NoSuchAlgorithmException {
>>> int bits = Cipher.getMaxAllowedKeyLength("AES");
>>> this.getLog().info("Current encryption strength is: " + bits);
>>> return bits == 2147483647;
>>>
>>> }
>>>
>>>
>>>
>>>
>>> On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar 
>>> wrote:

 I have now removed all the older jre versions from the systems leaving 
 jre only in one place. I even have the JRE  home in the PATH variable. 

 I have setup some Windows VMs now but those are too giving the same 
 error. They already have the JCE jars in their installation folders. 

 Is there some other requirement for this to work ?

 Thanks
 Shobha

 On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>
>
> Very likely, you patch the wrong JRE
>
> -D
>
> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar 
> wrote:
>>
>> I am setting up a  new Jenkins server. I have been using the Perforce 
>> Plugin so far but this time I have switched to the P4 Plugin as has a 
>> good 
>> integration with the Credential Plugin to connect to the perforce 
>> server.  
>>
>> For most of the VMs that I am connecting to it goes ahead with P4 
>> command execution without issue. So far one VM is giving issue and 
>> throwing 
>> exception while even trying to communicate with the perforce server.
>>
>> P4: Unable to connect: 
>> com.perforce.p4java.exception.ConnectionException: Error occurred during 
>> the SSL handshake: invalid SSL session
>> P4: Unable to use Workspace: java.lang.NullPointerException
>> P4: Unable to close Perforce connection: java.lang.NullPointerException
>> ERROR: Unable to update workspace: java.lang.NullPointerException
>>
>> After following some articles, I have added the jars from JCE for Java 7 
>> inside the slave VMs jre/lib/security folder. 
>> But still the error keeps popping up. 
>>
>> Does anyone know what is going on or is missing on that VM?
>>
>> Thanks
>> Shobha
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d948f1e5-53b2-4a3c-bad9-70a0a3dfde5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-29 Thread Dan Tran
BTW, I am looking for maven users to try p4maven with maven release plugin 
as well.  Let me know if you need help on that area



On Sunday, September 28, 2014 11:23:08 PM UTC-7, Shobha Dashottar wrote:
>
> I ran that test code and earlier it gave 128 . So, made a few more changes 
> like reinstalling jdk, setting the java paths in a few more files for 
> Jenkins to get the path during slave launch itself and then finally copying 
> the UnlimitedJCEPolicy jar files even though they existed in the security 
> folder.
>
> Looks like something was messed up in my java environment as after I ran 
> the test code it gave me the value 2147483647.  the SSL handshake error has 
> gone away too.
>
> Thanks Dan for your help on this. Much Appreciated.
>
>
> On Friday, September 26, 2014 9:30:58 PM UTC+5:30, Dan Tran wrote:
>>
>>
>> Also note, that p4jenkins uses the startup JRE to talk to perforce ( not 
>> the one configure in the job)
>>
>> -D
>>
>> On Thursday, September 25, 2014 7:11:13 PM UTC-7, Dan Tran wrote:
>>>
>>>
>>>  run a java test with your JRE?
>>>
>>> private boolean isUnlimitedCryptoSupported() throws 
>>> NoSuchAlgorithmException {
>>> int bits = Cipher.getMaxAllowedKeyLength("AES");
>>> this.getLog().info("Current encryption strength is: " + bits);
>>> return bits == 2147483647;
>>>
>>> }
>>>
>>>
>>>
>>>
>>> On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar 
>>> wrote:

 I have now removed all the older jre versions from the systems leaving 
 jre only in one place. I even have the JRE  home in the PATH variable. 

 I have setup some Windows VMs now but those are too giving the same 
 error. They already have the JCE jars in their installation folders. 

 Is there some other requirement for this to work ?

 Thanks
 Shobha

 On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>
>
> Very likely, you patch the wrong JRE
>
> -D
>
> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar 
> wrote:
>>
>> I am setting up a  new Jenkins server. I have been using the Perforce 
>> Plugin so far but this time I have switched to the P4 Plugin as has a 
>> good 
>> integration with the Credential Plugin to connect to the perforce 
>> server.  
>>
>> For most of the VMs that I am connecting to it goes ahead with P4 
>> command execution without issue. So far one VM is giving issue and 
>> throwing 
>> exception while even trying to communicate with the perforce server.
>>
>> P4: Unable to connect: 
>> com.perforce.p4java.exception.ConnectionException: Error occurred during 
>> the SSL handshake: invalid SSL session
>> P4: Unable to use Workspace: java.lang.NullPointerException
>> P4: Unable to close Perforce connection: java.lang.NullPointerException
>> ERROR: Unable to update workspace: java.lang.NullPointerException
>>
>> After following some articles, I have added the jars from JCE for Java 7 
>> inside the slave VMs jre/lib/security folder. 
>> But still the error keeps popping up. 
>>
>> Does anyone know what is going on or is missing on that VM?
>>
>> Thanks
>> Shobha
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-28 Thread Shobha Dashottar
I ran that test code and earlier it gave 128 . So, made a few more changes 
like reinstalling jdk, setting the java paths in a few more files for 
Jenkins to get the path during slave launch itself and then finally copying 
the UnlimitedJCEPolicy jar files even though they existed in the security 
folder.

Looks like something was messed up in my java environment as after I ran 
the test code it gave me the value 2147483647.  the SSL handshake error has 
gone away too.

Thanks Dan for your help on this. Much Appreciated.


On Friday, September 26, 2014 9:30:58 PM UTC+5:30, Dan Tran wrote:
>
>
> Also note, that p4jenkins uses the startup JRE to talk to perforce ( not 
> the one configure in the job)
>
> -D
>
> On Thursday, September 25, 2014 7:11:13 PM UTC-7, Dan Tran wrote:
>>
>>
>>  run a java test with your JRE?
>>
>> private boolean isUnlimitedCryptoSupported() throws 
>> NoSuchAlgorithmException {
>> int bits = Cipher.getMaxAllowedKeyLength("AES");
>> this.getLog().info("Current encryption strength is: " + bits);
>> return bits == 2147483647;
>>
>> }
>>
>>
>>
>>
>> On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar wrote:
>>>
>>> I have now removed all the older jre versions from the systems leaving 
>>> jre only in one place. I even have the JRE  home in the PATH variable. 
>>>
>>> I have setup some Windows VMs now but those are too giving the same 
>>> error. They already have the JCE jars in their installation folders. 
>>>
>>> Is there some other requirement for this to work ?
>>>
>>> Thanks
>>> Shobha
>>>
>>> On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:


 Very likely, you patch the wrong JRE

 -D

 On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar 
 wrote:
>
> I am setting up a  new Jenkins server. I have been using the Perforce 
> Plugin so far but this time I have switched to the P4 Plugin as has a 
> good 
> integration with the Credential Plugin to connect to the perforce server. 
>  
>
> For most of the VMs that I am connecting to it goes ahead with P4 
> command execution without issue. So far one VM is giving issue and 
> throwing 
> exception while even trying to communicate with the perforce server.
>
> P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: 
> Error occurred during the SSL handshake: invalid SSL session
> P4: Unable to use Workspace: java.lang.NullPointerException
> P4: Unable to close Perforce connection: java.lang.NullPointerException
> ERROR: Unable to update workspace: java.lang.NullPointerException
>
> After following some articles, I have added the jars from JCE for Java 7 
> inside the slave VMs jre/lib/security folder. 
> But still the error keeps popping up. 
>
> Does anyone know what is going on or is missing on that VM?
>
> Thanks
> Shobha
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-26 Thread Dan Tran

Also note, that p4jenkins uses the startup JRE to talk to perforce ( not 
the one configure in the job)

-D

On Thursday, September 25, 2014 7:11:13 PM UTC-7, Dan Tran wrote:
>
>
>  run a java test with your JRE?
>
> private boolean isUnlimitedCryptoSupported() throws 
> NoSuchAlgorithmException {
> int bits = Cipher.getMaxAllowedKeyLength("AES");
> this.getLog().info("Current encryption strength is: " + bits);
> return bits == 2147483647;
>
> }
>
>
>
>
> On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar wrote:
>>
>> I have now removed all the older jre versions from the systems leaving 
>> jre only in one place. I even have the JRE  home in the PATH variable. 
>>
>> I have setup some Windows VMs now but those are too giving the same 
>> error. They already have the JCE jars in their installation folders. 
>>
>> Is there some other requirement for this to work ?
>>
>> Thanks
>> Shobha
>>
>> On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>>>
>>>
>>> Very likely, you patch the wrong JRE
>>>
>>> -D
>>>
>>> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar wrote:

 I am setting up a  new Jenkins server. I have been using the Perforce 
 Plugin so far but this time I have switched to the P4 Plugin as has a good 
 integration with the Credential Plugin to connect to the perforce server.  

 For most of the VMs that I am connecting to it goes ahead with P4 
 command execution without issue. So far one VM is giving issue and 
 throwing 
 exception while even trying to communicate with the perforce server.

 P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: 
 Error occurred during the SSL handshake: invalid SSL session
 P4: Unable to use Workspace: java.lang.NullPointerException
 P4: Unable to close Perforce connection: java.lang.NullPointerException
 ERROR: Unable to update workspace: java.lang.NullPointerException

 After following some articles, I have added the jars from JCE for Java 7 
 inside the slave VMs jre/lib/security folder. 
 But still the error keeps popping up. 

 Does anyone know what is going on or is missing on that VM?

 Thanks
 Shobha




-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-25 Thread Dan Tran

 run a java test with your JRE?

private boolean isUnlimitedCryptoSupported() throws 
NoSuchAlgorithmException {
int bits = Cipher.getMaxAllowedKeyLength("AES");
this.getLog().info("Current encryption strength is: " + bits);
return bits == 2147483647;

}




On Thursday, September 25, 2014 10:15:01 AM UTC-7, Shobha Dashottar wrote:
>
> I have now removed all the older jre versions from the systems leaving jre 
> only in one place. I even have the JRE  home in the PATH variable. 
>
> I have setup some Windows VMs now but those are too giving the same error. 
> They already have the JCE jars in their installation folders. 
>
> Is there some other requirement for this to work ?
>
> Thanks
> Shobha
>
> On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>>
>>
>> Very likely, you patch the wrong JRE
>>
>> -D
>>
>> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar wrote:
>>>
>>> I am setting up a  new Jenkins server. I have been using the Perforce 
>>> Plugin so far but this time I have switched to the P4 Plugin as has a good 
>>> integration with the Credential Plugin to connect to the perforce server.  
>>>
>>> For most of the VMs that I am connecting to it goes ahead with P4 
>>> command execution without issue. So far one VM is giving issue and throwing 
>>> exception while even trying to communicate with the perforce server.
>>>
>>> P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: 
>>> Error occurred during the SSL handshake: invalid SSL session
>>> P4: Unable to use Workspace: java.lang.NullPointerException
>>> P4: Unable to close Perforce connection: java.lang.NullPointerException
>>> ERROR: Unable to update workspace: java.lang.NullPointerException
>>>
>>> After following some articles, I have added the jars from JCE for Java 7 
>>> inside the slave VMs jre/lib/security folder. 
>>> But still the error keeps popping up. 
>>>
>>> Does anyone know what is going on or is missing on that VM?
>>>
>>> Thanks
>>> Shobha
>>>
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-25 Thread Shobha Dashottar
I have now removed all the older jre versions from the systems leaving jre 
only in one place. I even have the JRE  home in the PATH variable. 

I have setup some Windows VMs now but those are too giving the same error. 
They already have the JCE jars in their installation folders. 

Is there some other requirement for this to work ?

Thanks
Shobha

On Thursday, September 25, 2014 9:32:35 PM UTC+5:30, Dan Tran wrote:
>
>
> Very likely, you patch the wrong JRE
>
> -D
>
> On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar wrote:
>>
>> I am setting up a  new Jenkins server. I have been using the Perforce 
>> Plugin so far but this time I have switched to the P4 Plugin as has a good 
>> integration with the Credential Plugin to connect to the perforce server.  
>>
>> For most of the VMs that I am connecting to it goes ahead with P4 command 
>> execution without issue. So far one VM is giving issue and throwing 
>> exception while even trying to communicate with the perforce server.
>>
>> P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: 
>> Error occurred during the SSL handshake: invalid SSL session
>> P4: Unable to use Workspace: java.lang.NullPointerException
>> P4: Unable to close Perforce connection: java.lang.NullPointerException
>> ERROR: Unable to update workspace: java.lang.NullPointerException
>>
>> After following some articles, I have added the jars from JCE for Java 7 
>> inside the slave VMs jre/lib/security folder. 
>> But still the error keeps popping up. 
>>
>> Does anyone know what is going on or is missing on that VM?
>>
>> Thanks
>> Shobha
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-25 Thread Dan Tran

Very likely, you patch the wrong JRE

-D

On Thursday, September 25, 2014 8:46:01 AM UTC-7, Shobha Dashottar wrote:
>
> I am setting up a  new Jenkins server. I have been using the Perforce 
> Plugin so far but this time I have switched to the P4 Plugin as has a good 
> integration with the Credential Plugin to connect to the perforce server.  
>
> For most of the VMs that I am connecting to it goes ahead with P4 command 
> execution without issue. So far one VM is giving issue and throwing 
> exception while even trying to communicate with the perforce server.
>
> P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: 
> Error occurred during the SSL handshake: invalid SSL session
> P4: Unable to use Workspace: java.lang.NullPointerException
> P4: Unable to close Perforce connection: java.lang.NullPointerException
> ERROR: Unable to update workspace: java.lang.NullPointerException
>
> After following some articles, I have added the jars from JCE for Java 7 
> inside the slave VMs jre/lib/security folder. 
> But still the error keeps popping up. 
>
> Does anyone know what is going on or is missing on that VM?
>
> Thanks
> Shobha
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


P4 Plugin throws "Error occurred during the SSL handshake: invalid SSL session" Error

2014-09-25 Thread Shobha Dashottar
I am setting up a  new Jenkins server. I have been using the Perforce 
Plugin so far but this time I have switched to the P4 Plugin as has a good 
integration with the Credential Plugin to connect to the perforce server.  

For most of the VMs that I am connecting to it goes ahead with P4 command 
execution without issue. So far one VM is giving issue and throwing 
exception while even trying to communicate with the perforce server.

P4: Unable to connect: com.perforce.p4java.exception.ConnectionException: Error 
occurred during the SSL handshake: invalid SSL session
P4: Unable to use Workspace: java.lang.NullPointerException
P4: Unable to close Perforce connection: java.lang.NullPointerException
ERROR: Unable to update workspace: java.lang.NullPointerException

After following some articles, I have added the jars from JCE for Java 7 inside 
the slave VMs jre/lib/security folder. 
But still the error keeps popping up. 

Does anyone know what is going on or is missing on that VM?

Thanks
Shobha


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.