2013-11-04 51 views
0

我使用soapUI的32位的Windows 64位 PC。它工作正常,但是當我創建SOAP項目和發送Web請求我得到這個錯誤:的soapUI工作正常,但得到soapenv:Server.generalException錯誤

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><soapenv:Fault> <faultcode>soapenv:Server.generalException</faultcode> <faultstring>java.lang.NoClassDefFoundError: Could not initialize class net.sf.jpam.Pam; nested exception is: java.lang.NoClassDefFoundError: Could not initialize class net.sf.jpam.Pam</faultstring><detail><ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">CO10-SST01</ns1:hostname> </detail></soapenv:Fault></soapenv:Body></soapenv:Envelope> 

這方面的問題與JRE或JDK版本有關?

感謝

回答

0

你得到

java.lang.NoClassDefFoundError: Could not initialize class net.sf.jpam.Pam; 

JPam是在Linux,Mac OS X,Solaris和HP-UX和其他的Unix系統中使用的標準的安全架構。

如果您的web服務或soapUi需要JPam安裝說明please check this link,但我看到Windows不支持。

你可以檢查soapUi 64位嗎?如果你得到相同的錯誤,我認爲你需要檢查使用這個庫的內容。

相關問題