[OFBiz] Users - latest SVN build 4939
A. Zeneski
jaz at ofbiz.org
Mon May 2 22:13:05 EDT 2005
It seems you are missing jsse.jar from your path. Make sure you are
using J2SDK 1.4.x and not 1.3
-Andy
On May 2, 2005, at 9:11 PM, dkey at card-x.com wrote:
> Hello,
>
> I have been gone a while and just tried to build OFBiz for the
> first time
> in months. I looked at the forums and could find no refrence to this
> problem. here is the output after "ant" did I mis something while I
> was
> away?
>
> [dale at localhost ofbiz]$ ant
> Buildfile: build.xml
>
> ofbiz-init:
>
> dir-init:
> [mkdir] Created dir: /home/dale/ofbiz/logs
> [mkdir] Created dir: /home/dale/ofbiz/data
> [mkdir] Created dir: /home/dale/ofbiz/data/derby
> [mkdir] Created dir: /home/dale/ofbiz/data/hsql
>
> copy-derby-props:
>
> build:
> [echo] [build] ========== Start Building (Compile) ==========
>
> init:
>
> clean-lib:
>
> prepare:
> [mkdir] Created dir: /home/dale/ofbiz/base/build/classes
> [mkdir] Created dir: /home/dale/ofbiz/base/build/classes/base/
> META-INF
> [mkdir] Created dir: /home/dale/ofbiz/base/build/classes/start/
> META-INF
> [mkdir] Created dir: /home/dale/ofbiz/base/build/lib
>
> classpath:
>
> classes:
> [javac] Compiling 4 source files to
> /home/dale/ofbiz/base/build/classes/star
> t
> [copy] Copying 7 files to /home/dale/ofbiz/base/build/classes/
> start
> [javac] Compiling 86 source files to
> /home/dale/ofbiz/base/build/classes/bas
> e
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/AliasKeyManager.j
> ava:32: error: Class or interface `javax.net.ssl.X509KeyManager'
> not found
> in im
> port.
> [javac] import javax.net.ssl.X509KeyManager;
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/AliasKeyManager.j
> ava:41: error: Superinterface `X509KeyManager' of class
> `org.ofbiz.base.util.Ali
> asKeyManager' not found.
> [javac] public class AliasKeyManager implements
> X509KeyManager {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/AliasKeyManager.j
> ava:43: error: Type `X509KeyManager' not found in declaration of field
> `keyManag
> er'.
> [javac] protected X509KeyManager keyManager = null;
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/AliasKeyManager.j
> ava:48: error: Type `X509KeyManager' not found in the declaration
> of the
> argumen
> t `keyManager' of method `<init>'.
> [javac] public AliasKeyManager(X509KeyManager keyManager,
> String alia
> s) {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/KeyStoreUtil.java
> :52: error: Class or interface `javax.crypto.spec.DHParameterSpec' not
> found in
> import.
> [javac] import javax.crypto.spec.DHParameterSpec;
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/KeyStoreUtil.java
> :186: error: Type `DHParameterSpec' not found in the declaration of
> the
> local va
> riable `dhParamSpec'.
> [javac] DHParameterSpec dhParamSpec = (DHParameterSpec)
> algParams
> .getParameterSpec(DHParameterSpec.class);
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/KeyStoreUtil.java
> :283: error: Type `SecretKey' not found in the declaration of the
> return
> type of
> method `generateSecretKey'.
> [javac] public static SecretKey generateSecretKey
> (PrivateKey
> ourKey,
> PublicKey theirKey) throws Exception {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/KeyStoreUtil.java
> :284: error: Type `KeyAgreement' not found in the declaration of
> the local
> varia
> ble `ka'.
> [javac] KeyAgreement ka = KeyAgreement.getInstance
> ("DH");
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:49:
> error: Type `KeyManager' not found in the declaration of the return
> type
> of meth
> od `getKeyManagers'.
> [javac] public static KeyManager[] getKeyManagers
> (KeyStore ks,
> String
> password, String alias) throws GeneralSecurityException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:50:
> error: Type `KeyManagerFactory' not found in the declaration of the
> local
> variab
> le `factory'.
> [javac] KeyManagerFactory factory =
> KeyManagerFactory.getInstance
> ("SunX509");
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:52:
> error: Type `KeyManager' not found in the declaration of the local
> variable `key
> Managers'.
> [javac] KeyManager[] keyManagers =
> factory.getKeyManagers();
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:63:
> error: Type `TrustManager' not found in the declaration of the
> return type
> of me
> thod `getTrustManagers'.
> [javac] public static TrustManager[] getTrustManagers
> (KeyStore
> ks) th
> rows GeneralSecurityException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:64:
> error: Type `TrustManagerFactory' not found in the declaration of the
> local vari
> able `factory'.
> [javac] TrustManagerFactory factory =
> TrustManagerFactory.getInst
> ance("SunX509");
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:69:
> error: Type `SSLSocketFactory' not found in the declaration of the
> return
> type o
> f method `getSSLSocketFactory'.
> [javac] public static SSLSocketFactory
> getSSLSocketFactory(KeyStore k
> s, String password, String alias) throws IOException,
> GeneralSecurityException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:71:
> error: Type `TrustManager' not found in the declaration of the local
> variable `t
> m'.
> [javac] TrustManager[] tm = getTrustManagers
> (trustStore);
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:72:
> error: Type `KeyManager' not found in the declaration of the local
> variable `km'
> .
> [javac] KeyManager[] km = getKeyManagers(ks,
> password, alias);
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:74:
> error: Type `SSLContext' not found in the declaration of the local
> variable `con
> text'.
> [javac] SSLContext context = SSLContext.getInstance
> ("SSL");
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:79:
> error: Type `SSLSocketFactory' not found in the declaration of the
> return
> type o
> f method `getSSLSocketFactory'.
> [javac] public static SSLSocketFactory
> getSSLSocketFactory(String ali
> as) throws IOException, GeneralSecurityException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:83:
> error: Type `SSLSocketFactory' not found in the declaration of the
> return
> type o
> f method `getSSLSocketFactory'.
> [javac] public static SSLSocketFactory
> getSSLSocketFactory()
> throws I
> OException, GeneralSecurityException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:87:
> error: Type `SSLServerSocketFactory' not found in the declaration
> of the
> return
> type of method `getSSLServerSocketFactory'.
> [javac] public static SSLServerSocketFactory
> getSSLServerSocketFactor
> y(KeyStore ks, String password, String alias) throws IOException,
> GeneralSecurit
> yException {
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:89:
> error: Type `TrustManager' not found in the declaration of the local
> variable `t
> m'.
> [javac] TrustManager[] tm = getTrustManagers
> (trustStore);
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:90:
> error: Type `KeyManager' not found in the declaration of the local
> variable `km'
> .
> [javac] KeyManager[] km = getKeyManagers(ks,
> password, alias);
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/SSLUtil.java:92:
> error: Type `SSLContext' not found in the declaration of the local
> variable `con
> text'.
> [javac] SSLContext context = SSLContext.getInstance
> ("SSL");
> [javac] ^
> [javac]
> /home/dale/ofbiz/base/src/base/org/ofbiz/base/util/URLConnector.java
> :103: error: Type `HttpsURLConnection' not found in the declaration
> of the
> local
> variable `scon'.
> [javac] HttpsURLConnection scon =
> (HttpsURLConnection
> ) con;
> [javac] ^
> [javac] 24 errors
>
> BUILD FAILED
> file:/home/dale/ofbiz/base/build.xml:98: Compile failed; see the
> compiler
> error
> output for details.
>
>
>
>
> _______________________________________________
> Users mailing list
> Users at lists.ofbiz.org
> http://lists.ofbiz.org/mailman/listinfo/users
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 2355 bytes
Desc: not available
Url : http://lists.ofbiz.org/pipermail/users/attachments/20050502/76176ea9/smime.bin
More information about the Users
mailing list