You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ERROR] LoadError: load error: jopenssl/load -- java.lang.SecurityException: class "org.bouncycastle.crypto.params.ECNamedDomainParameters"'s signer information does not match signer information of other classes in the same package [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/openssl.rb:1 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/net/https.rb:1 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/net/https.rb:23 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote/http/default.rb:1 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote/http/default.rb:18 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote.rb:1 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote.rb:25 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:1 [ERROR] create_http_client at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:56 [ERROR] <main> at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:31
If you need any more information, please let me know.
The text was updated successfully, but these errors were encountered:
seems like you might have BC on your class-path more than once.
maybe check your WEB-INF/lib for bc .jars there might be several versions of the same.
jruby will always attempt to use its packaged version unless you tell it not to (if you are forced to use a different version from the same class-loader than try -Djruby.openssl.load.jars=false as JAVA_OPTS)
Environment
Java Framework : GWT
Ruby : Watir, Rails
Hello,
I'm trying to call Ruby from my java web application using Jruby, for that, i use ScriptingContainer :
`
ScriptingContainer container = new ScriptingContainer();
`
i'm getting the following error :
[ERROR] LoadError: load error: jopenssl/load -- java.lang.SecurityException: class "org.bouncycastle.crypto.params.ECNamedDomainParameters"'s signer information does not match signer information of other classes in the same package [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/openssl.rb:1 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/net/https.rb:1 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/net/https.rb:23 [ERROR] require at org/jruby/RubyKernel.java:955 [ERROR] require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:59 [ERROR] <main> at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote/http/default.rb:1 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote/http/default.rb:18 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote.rb:1 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/selenium-webdriver-3.9.0/lib/selenium/webdriver/remote.rb:25 [ERROR] (root) at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:1 [ERROR] create_http_client at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:56 [ERROR] <main> at C:/jruby-9.1.14.0/lib/ruby/gems/shared/gems/watir-6.8.4/lib/watir/capabilities.rb:31
If you need any more information, please let me know.
The text was updated successfully, but these errors were encountered: