Hi, Just browsing through my app server logs and found the
following:- [09:52:04.260] org.orbeon.oxf.common.OXFException: Cannot
load "/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader:
Cannot load "/org/orbeon/oxf/xm l/schemas/pipeline.rng" with webapp loader: Cannot load
"/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader: Cannot
load "/org/orbeon/oxf/xml/schem as/pipeline.rng" with webapp loader the only thing i’ve got in my web.xml class loader-wise
is <class-loader>
<library-loader path='WEB-INF/lib'/>
<library-loader path='WEB-INF/lib/private'/>
<compiling-loader path='WEB-INF/classes'/> </class-loader> Should there be anything special in the web.xml to solve the
above? Alex ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
And also I’ve just
noticed that an app that was running fine under a 3.5 snapshot now fails with Cannot find any
provider supporting PBEWithMD5AndDES
Under 3.6 Alex From: Alex Sharaz [mailto:[hidden email]] Hi, Just browsing through my app server logs and found the
following:- [09:52:04.260] org.orbeon.oxf.common.OXFException: Cannot
load "/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader:
Cannot load "/org/orbeon/oxf/xm l/schemas/pipeline.rng" with webapp loader: Cannot load
"/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader: Cannot
load "/org/orbeon/oxf/xml/schem as/pipeline.rng" with webapp loader the only thing i’ve got in my web.xml class
loader-wise is <class-loader>
<library-loader path='WEB-INF/lib'/>
<library-loader path='WEB-INF/lib/private'/>
<compiling-loader path='WEB-INF/classes'/> </class-loader> Should there be anything special in the web.xml to solve the
above? Alex ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
o.k. I’ve downloaded the latest
nightly build, unpacked it into my deploy directory ( with name of
orbeon-20071226) Added the classloader
section outlined below to the web.xml file ... changing nothing else in the
web.xml file. Quite a few sample apps don’t
work now. Am i missing a jar file
somewhere possibly? Alex 1)
Government forms
gives Cannot find any
provider supporting RSA/ECB/PKCS1Padding Call Stack
2). XForms Controls gives Cannot find any
provider supporting RSA/ECB/PKCS1Padding Call Stack
3). XForms Sandbox gives Cannot find any
provider supporting PBEWithMD5AndDES Call Stack
4). XForms Bookcast gives Cannot find any
provider supporting RSA/ECB/PKCS1Padding Call Stack
From: Alex Sharaz [mailto:[hidden email]] And also I’ve just noticed
that an app that was running fine under a 3.5 snapshot now fails with Cannot find any
provider supporting PBEWithMD5AndDES
Under 3.6 Alex From: Alex Sharaz [mailto:[hidden email]] Hi, Just browsing through my app server logs and found the
following:- [09:52:04.260] org.orbeon.oxf.common.OXFException: Cannot
load "/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader:
Cannot load "/org/orbeon/oxf/xm l/schemas/pipeline.rng" with webapp loader: Cannot load
"/org/orbeon/oxf/xml/schemas/pipeline.rng" with webapp loader: Cannot
load "/org/orbeon/oxf/xml/schem as/pipeline.rng" with webapp loader the only thing i’ve got in my web.xml class loader-wise is <class-loader>
<library-loader path='WEB-INF/lib'/> <library-loader
path='WEB-INF/lib/private'/>
<compiling-loader path='WEB-INF/classes'/> </class-loader> Should there be anything special in the web.xml to solve the
above? Alex ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Alex,
I am seeing this: The PKCS1Padding is delivered in the jre's lib/ext/sunpkcs11.jar. The JVM's java.ext.dirs includes lib/ext by default. But if you are setting System Property java.ext.dirs (either from the command line or in code, and really who isn't ?) then this default is lost unless the setting of java.ext.dirs explicitly includes it. Source: http://forum.java.sun.com/thread.jspa?threadID=587480&messageID=3418752 Could this explain your problem? Alex |
Don't you just hate code snapshots :-))
I was running resin 3.1.4 as my application server. I then updated it to a newer (snapshot) version as it fixed some problems with quercus, their php ->java compiler. Not having run the orbeon app that exhibited the PKCS problem for a while I thought everything was o.k. I've just reverted to the 3.1.4 version of resin and all the orbeon problems have vanished. Thanks for the pointer in the right direction Alex -----Original Message----- From: Alessandro Vernet [mailto:[hidden email]] Sent: 09 January 2008 03:39 To: [hidden email] Subject: RE: [ops-users] error entry in stdout.log Alex, Alex Sharaz wrote: > > Cannot find any provider supporting RSA/ECB/PKCS1Padding > I am seeing this: The PKCS1Padding is delivered in the jre's lib/ext/sunpkcs11.jar. The JVM's java.ext.dirs includes lib/ext by default. But if you are setting System Property java.ext.dirs (either from the command line or in code, and really who isn't ?) then this default is lost unless the setting of java.ext.dirs explicitly includes it. Source: http://forum.java.sun.com/thread.jspa?threadID=587480&messageID=3418752 Could this explain your problem? Alex ----- Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise http://www.orbeon.com/ -- View this message in context: http://www.nabble.com/error-entry-in-stdout.log-tp14662542p14704648.html Sent from the ObjectWeb OPS - Users mailing list archive at Nabble.com. ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Alex,
I am glad to see that you figured that one out. This initially didn't look like an easy one to figure out! Alex |
Free forum by Nabble | Edit this page |