You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@juddi.apache.org by 黎 斌 <li...@hotmail.com> on 2004/05/28 02:56:34 UTC

what will I do before running the uddi4j?


First,my juddi happy page showed as following,I can't find anything wrong:

Happy jUDDI!
jUDDI Dependencies: Class Files & Libraries
Looking for: org.juddi.registry.Registry+Found in: 
D:\Tomcat\webapps\juddi\WEB-INF\lib\juddi.jarLooking for: 

javax.xml.soap.SOAPMessage+Found in: 
D:\Tomcat\webapps\juddi\WEB-INF\lib\saaj.jarLooking for: 
javax.xml.rpc.Service+Found in: 

D:\Tomcat\webapps\juddi\WEB-INF\lib\jaxrpc.jarLooking for: 
org.apache.axis.transport.http.AxisServlet+Found in: 

D:\Tomcat\webapps\juddi\WEB-INF\lib\axis.jarLooking for: 
org.apache.commons.discovery.Resource+Found in: 

D:\Tomcat\webapps\juddi\WEB-INF\lib\commons-discovery.jarLooking for: 
org.apache.commons.logging.Log+Found in: 

D:\Tomcat\bin\commons-logging-api.jarLooking for: 
org.apache.log4j.Layout+Found in: D:\Tomcat\webapps\juddi\WEB-

INF\lib\log4j-1.2.8.jarLooking for: 
com.ibm.wsdl.factory.WSDLFactoryImpl+Found in: D:\Tomcat\webapps\juddi\WEB-

INF\lib\wsdl4j.jarLooking for: javax.xml.parsers.SAXParserFactory+Found in 
an unknown locationLooking for: 

javax.activation.DataHandler+Found in: 
D:\j2sdk1.4.2_04\jre\lib\ext\activation.jar

jUDDI Dependencies: Resource & Properties Files
Looking for: log4j.properties+Found in: 
D:\Tomcat\webapps\juddi\WEB-INF\classes\log4j.propertiesLooking for: 

juddi.properties+Found in: 
D:\Tomcat\webapps\juddi\WEB-INF\classes\juddi.properties

jUDDI DataSource Check
+ Got a JNDI Context!
+ Got a JDBC DataSource (dsname=java:comp/env/jdbc/juddiDB)
+ Got a JDBC Connection!
+ SELECT COUNT(*) FROM PUBLISHER = 1


jUDDI Properties
juddi.adminEmailAddress: admin@juddi.org
juddi.adminURL: http://localhost:8080/juddi/admin
juddi.authFactory: org.juddi.auth.simple.SimpleAuthenticatorFactory
juddi.dataStoreFactory: org.juddi.datastore.jdbc.JDBCDataStoreFactory
juddi.inquiryURL: http://localhost:8080/juddi/inquiry
juddi.jdbcDriver: com.mysql.jdbc.Driver
juddi.jdbcPassword: juddi
juddi.jdbcURL: jdbc:mysql://localhost/juddi
juddi.jdbcUser: juddi
juddi.maxMessageSize: 2097152
juddi.maxNameElementsAllowed: 5
juddi.maxNameLength: 255
juddi.operatorName: jUDDI.org
juddi.operatorSiteURL: http://localhost:8080/juddi
juddi.publishURL: http://localhost:8080/juddi/publish
juddi.transportClass: org.juddi.transport.axis.AxisTransport
juddi.useConnectionPool: false
juddi.uuidgenFactory: org.juddi.uuidgen.jvm.JavaUUIDGenFactory

Second,my classpath is set as:
.;D:\j2sdk1.4.2_04\jre\lib\rt.jar;D:\j2sdk1.4.2_04\lib\dt.jar;D:\j2sdk1.4.2_04


\lib\tools.jar;D:\MssqlJdbc\lib\msbase.jar;D:\MssqlJdbc\lib\msutil.jar;D:\MssqlJdbc\lib\mssqlserver.jar;D:\lib\uddi4j.jar;D:\


lib\activation.jar;D:\lib\axis.jar;D:\lib\castor-0.9.3.9-xml.jar;D:\lib\commons-logging.jar; 


D:\lib\dom.jar;D:\lib\jaas.jar;D:\lib\jaxp-api.jar;D:\lib\jaxr-api.jar;D:\lib\jaxr-impl.jar;D:\lib\jaxrpc-api.jar; 


D:\lib\jaxrpc-impl.jar;D:\lib\jaxrpc-sec.jar;D:\lib\jaxrpc-spi.jar;D:\lib\jsse.jar;D:\lib\mail.jar;D:\lib\saaj-api.jar; 


D:\lib\saaj-impl.jar;D:\lib\sax.jar;D:\lib\soap.jar;D:\lib\wsi-client.jar;D:\lib\xalan.jar;D:\lib\xercesImpl.jar; 


D:\lib\xmlsec.jar;D:\lib\xsltc.jar;D:\lib\juddi.jar;D:\lib\commons-discovery.jar


Following, I run BusinessEntityExample.class with Configurator.class and 
samples.prop,then exeception happened:
E:\lb\workfolder\uddi\entity02>java BusinessEntityExample

*********** Running BusinessEntityExample ***********

Get authtoken
Exception in thread "main" java.lang.NoClassDefFoundError: 
javax/xml/namespace/Q
Name
        at 
org.apache.axis.deployment.wsdd.WSDDConstants.<clinit>(WSDDConstants.
java:111)
        at 
org.apache.axis.configuration.FileProvider.configureEngine(FileProvid
er.java:209)
        at org.apache.axis.AxisEngine.init(AxisEngine.java:187)
        at org.apache.axis.AxisEngine.<init>(AxisEngine.java:172)
        at org.apache.axis.client.AxisClient.<init>(AxisClient.java:88)
        at org.apache.axis.client.Service.getAxisClient(Service.java:143)
        at org.apache.axis.client.Service.<init>(Service.java:152)
        at org.uddi4j.transport.ApacheAxisTransport.send(Unknown Source)
        at org.uddi4j.transport.TransportBase.send(Unknown Source)
        at org.uddi4j.client.UDDIProxy.send(Unknown Source)
        at org.uddi4j.client.UDDIProxy.get_authToken(Unknown Source)
        at BusinessEntityExample.run(BusinessEntityExample.java:76)
        at BusinessEntityExample.main(BusinessEntityExample.java:54)

My samples.prop key values:
inquiryURL = http://localhost:8080/juddi/inquiry  
publishURL = http://localhost:8080/juddi/publish
userid = juddi		
password = juddi
TransportClassName=org.uddi4j.transport.ApacheAxisTransport
logEnabled=false
handlerPackageName=com.sun.net.ssl.internal.www.protocol
securityClassName=com.sun.net.ssl.internal.ssl.Provider
businessName=Sample Business
serviceName=Sample Service
tmodelName=Sample TModel
sampleEntityName=S
assertionRelationship=peer-peer

Have I missed set some enviroments in classpath?

From: Feng yuan <fe...@comp.nus.edu.sg>
Subject: what will I do before running the uddi4j?
Date: Thu, 27 May 2004 21:50:15 +0800
Content-Type: text/plain;
	charset="gb2312"

Hi,

There is a sample.PROP file in the sample source code directory. And
Configurator.java is also a hint for you.
You can look through those files.

Cheers,
Feng
----- Original Message ----- 
From: "Meloro, John" <Me...@Pragmatics.com>
To: <ju...@ws.apache.org>
Sent: Thursday, May 27, 2004 9:45 PM
Subject: RE: what will I do before running the uddi4j?


What is the error?

-----Original Message-----
From: libinwell@hotmail.com [mailto:libinwell@hotmail.com]
Sent: Thursday, May 27, 2004 9:40 AM
To: juddi-user@ws.apache.org
Subject: what will I do before running the uddi4j?


hello everyone,
I'm new to juddi.When I run the uddi4j programme,there always come with
some error.
Maybe I miss setting some enviroments k,I think.
I have jws1.3,jdk1.4,ant,uddi4j.I can see the page
http:\\loacoalhost:8080\juddi\happyjuddi.jasp
and there is nothing wrong.
Give me some advises please!

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  


Re: Newbie's java question

Posted by Lai Duc Nhuan <nh...@elarion.com>.
Hello,

Tomcat documentation solved my problem with my own question. Sorry for
annoying you with this question.

----- Original Message ----- 
From: "Lai Duc Nhuan" <nh...@elarion.com>
To: <ju...@ws.apache.org>
Sent: Monday, May 31, 2004 5:54 AM
Subject: Newbie's java question


> Hello everyone,
>
> I am dealing with semantic web, so I come to juddi.
>
> However, I am new to java, so I don't know why the classloader getResource
> (e.g log4j.properties) from
> D:\Tomcat\webapps\juddi\WEB-INF\classes\log4j.properties. Could anybody
> please point me to where I can find information on the search path for the
> classloader? Thank you.
>
> By the way, I can setup juddi with Tomcat/mysql and use uddi4j to test it.
> More questions will be on the way as I have to add some more code to
juddi.
>
> Thank you a lot!
>
> ----- Original Message ----- 
> From: "黎 斌" <li...@hotmail.com>
> To: <ju...@ws.apache.org>
> Sent: Thursday, May 27, 2004 5:56 PM
> Subject: what will I do before running the uddi4j?
>
>
> >
> >
> > First,my juddi happy page showed as following,I can't find anything
wrong:
> >
> > Happy jUDDI!
> > jUDDI Dependencies: Class Files & Libraries
> > Looking for: org.juddi.registry.Registry+Found in:
> > D:\Tomcat\webapps\juddi\WEB-INF\lib\juddi.jarLooking for:
> >
> > javax.xml.soap.SOAPMessage+Found in:
> > D:\Tomcat\webapps\juddi\WEB-INF\lib\saaj.jarLooking for:
> > javax.xml.rpc.Service+Found in:
> >
> > D:\Tomcat\webapps\juddi\WEB-INF\lib\jaxrpc.jarLooking for:
> > org.apache.axis.transport.http.AxisServlet+Found in:
> >
> > D:\Tomcat\webapps\juddi\WEB-INF\lib\axis.jarLooking for:
> > org.apache.commons.discovery.Resource+Found in:
> >
> > D:\Tomcat\webapps\juddi\WEB-INF\lib\commons-discovery.jarLooking for:
> > org.apache.commons.logging.Log+Found in:
> >
> > D:\Tomcat\bin\commons-logging-api.jarLooking for:
> > org.apache.log4j.Layout+Found in: D:\Tomcat\webapps\juddi\WEB-
> >
> > INF\lib\log4j-1.2.8.jarLooking for:
> > com.ibm.wsdl.factory.WSDLFactoryImpl+Found in:
> D:\Tomcat\webapps\juddi\WEB-
> >
> > INF\lib\wsdl4j.jarLooking for: javax.xml.parsers.SAXParserFactory+Found
in
> > an unknown locationLooking for:
> >
> > javax.activation.DataHandler+Found in:
> > D:\j2sdk1.4.2_04\jre\lib\ext\activation.jar
> >
> > jUDDI Dependencies: Resource & Properties Files
> > Looking for: log4j.properties+Found in:
> > D:\Tomcat\webapps\juddi\WEB-INF\classes\log4j.propertiesLooking for:
> >
> > juddi.properties+Found in:
> > D:\Tomcat\webapps\juddi\WEB-INF\classes\juddi.properties
> >
> > jUDDI DataSource Check
> > + Got a JNDI Context!
> > + Got a JDBC DataSource (dsname=java:comp/env/jdbc/juddiDB)
> > + Got a JDBC Connection!
> > + SELECT COUNT(*) FROM PUBLISHER = 1
> >
> >
> > jUDDI Properties
> > juddi.adminEmailAddress: admin@juddi.org
> > juddi.adminURL: http://localhost:8080/juddi/admin
> > juddi.authFactory: org.juddi.auth.simple.SimpleAuthenticatorFactory
> > juddi.dataStoreFactory: org.juddi.datastore.jdbc.JDBCDataStoreFactory
> > juddi.inquiryURL: http://localhost:8080/juddi/inquiry
> > juddi.jdbcDriver: com.mysql.jdbc.Driver
> > juddi.jdbcPassword: juddi
> > juddi.jdbcURL: jdbc:mysql://localhost/juddi
> > juddi.jdbcUser: juddi
> > juddi.maxMessageSize: 2097152
> > juddi.maxNameElementsAllowed: 5
> > juddi.maxNameLength: 255
> > juddi.operatorName: jUDDI.org
> > juddi.operatorSiteURL: http://localhost:8080/juddi
> > juddi.publishURL: http://localhost:8080/juddi/publish
> > juddi.transportClass: org.juddi.transport.axis.AxisTransport
> > juddi.useConnectionPool: false
> > juddi.uuidgenFactory: org.juddi.uuidgen.jvm.JavaUUIDGenFactory
> >
> > Second,my classpath is set as:
> >
>
.;D:\j2sdk1.4.2_04\jre\lib\rt.jar;D:\j2sdk1.4.2_04\lib\dt.jar;D:\j2sdk1.4.2_
> 04
> >
> >
> >
>
\lib\tools.jar;D:\MssqlJdbc\lib\msbase.jar;D:\MssqlJdbc\lib\msutil.jar;D:\Ms
> sqlJdbc\lib\mssqlserver.jar;D:\lib\uddi4j.jar;D:\
> >
> >
> >
>
lib\activation.jar;D:\lib\axis.jar;D:\lib\castor-0.9.3.9-xml.jar;D:\lib\comm
> ons-logging.jar;
> >
> >
> >
>
D:\lib\dom.jar;D:\lib\jaas.jar;D:\lib\jaxp-api.jar;D:\lib\jaxr-api.jar;D:\li
> b\jaxr-impl.jar;D:\lib\jaxrpc-api.jar;
> >
> >
> >
>
D:\lib\jaxrpc-impl.jar;D:\lib\jaxrpc-sec.jar;D:\lib\jaxrpc-spi.jar;D:\lib\js
> se.jar;D:\lib\mail.jar;D:\lib\saaj-api.jar;
> >
> >
> >
>
D:\lib\saaj-impl.jar;D:\lib\sax.jar;D:\lib\soap.jar;D:\lib\wsi-client.jar;D:
> \lib\xalan.jar;D:\lib\xercesImpl.jar;
> >
> >
> >
>
D:\lib\xmlsec.jar;D:\lib\xsltc.jar;D:\lib\juddi.jar;D:\lib\commons-discovery
> .jar
> >
> >
> > Following, I run BusinessEntityExample.class with Configurator.class and
> > samples.prop,then exeception happened:
> > E:\lb\workfolder\uddi\entity02>java BusinessEntityExample
> >
> > *********** Running BusinessEntityExample ***********
> >
> > Get authtoken
> > Exception in thread "main" java.lang.NoClassDefFoundError:
> > javax/xml/namespace/Q
> > Name
> >         at
> > org.apache.axis.deployment.wsdd.WSDDConstants.<clinit>(WSDDConstants.
> > java:111)
> >         at
> > org.apache.axis.configuration.FileProvider.configureEngine(FileProvid
> > er.java:209)
> >         at org.apache.axis.AxisEngine.init(AxisEngine.java:187)
> >         at org.apache.axis.AxisEngine.<init>(AxisEngine.java:172)
> >         at org.apache.axis.client.AxisClient.<init>(AxisClient.java:88)
> >         at
org.apache.axis.client.Service.getAxisClient(Service.java:143)
> >         at org.apache.axis.client.Service.<init>(Service.java:152)
> >         at org.uddi4j.transport.ApacheAxisTransport.send(Unknown Source)
> >         at org.uddi4j.transport.TransportBase.send(Unknown Source)
> >         at org.uddi4j.client.UDDIProxy.send(Unknown Source)
> >         at org.uddi4j.client.UDDIProxy.get_authToken(Unknown Source)
> >         at BusinessEntityExample.run(BusinessEntityExample.java:76)
> >         at BusinessEntityExample.main(BusinessEntityExample.java:54)
> >
> > My samples.prop key values:
> > inquiryURL = http://localhost:8080/juddi/inquiry
> > publishURL = http://localhost:8080/juddi/publish
> > userid = juddi
> > password = juddi
> > TransportClassName=org.uddi4j.transport.ApacheAxisTransport
> > logEnabled=false
> > handlerPackageName=com.sun.net.ssl.internal.www.protocol
> > securityClassName=com.sun.net.ssl.internal.ssl.Provider
> > businessName=Sample Business
> > serviceName=Sample Service
> > tmodelName=Sample TModel
> > sampleEntityName=S
> > assertionRelationship=peer-peer
> >
> > Have I missed set some enviroments in classpath?
> >
> > From: Feng yuan <fe...@comp.nus.edu.sg>
> > Subject: what will I do before running the uddi4j?
> > Date: Thu, 27 May 2004 21:50:15 +0800
> > Content-Type: text/plain;
> > charset="gb2312"
> >
> > Hi,
> >
> > There is a sample.PROP file in the sample source code directory. And
> > Configurator.java is also a hint for you.
> > You can look through those files.
> >
> > Cheers,
> > Feng
> > ----- Original Message ----- 
> > From: "Meloro, John" <Me...@Pragmatics.com>
> > To: <ju...@ws.apache.org>
> > Sent: Thursday, May 27, 2004 9:45 PM
> > Subject: RE: what will I do before running the uddi4j?
> >
> >
> > What is the error?
> >
> > -----Original Message-----
> > From: libinwell@hotmail.com [mailto:libinwell@hotmail.com]
> > Sent: Thursday, May 27, 2004 9:40 AM
> > To: juddi-user@ws.apache.org
> > Subject: what will I do before running the uddi4j?
> >
> >
> > hello everyone,
> > I'm new to juddi.When I run the uddi4j programme,there always come with
> > some error.
> > Maybe I miss setting some enviroments k,I think.
> > I have jws1.3,jdk1.4,ant,uddi4j.I can see the page
> > http:\\loacoalhost:8080\juddi\happyjuddi.jasp
> > and there is nothing wrong.
> > Give me some advises please!
> >
> > _________________________________________________________________
> > 享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com
> >
> >
> >
>
>
>


Newbie's java question

Posted by Lai Duc Nhuan <nh...@elarion.com>.
Hello everyone,

I am dealing with semantic web, so I come to juddi.

However, I am new to java, so I don't know why the classloader getResource
(e.g log4j.properties) from
D:\Tomcat\webapps\juddi\WEB-INF\classes\log4j.properties. Could anybody
please point me to where I can find information on the search path for the
classloader? Thank you.

By the way, I can setup juddi with Tomcat/mysql and use uddi4j to test it.
More questions will be on the way as I have to add some more code to juddi.

Thank you a lot!

----- Original Message ----- 
From: "黎 斌" <li...@hotmail.com>
To: <ju...@ws.apache.org>
Sent: Thursday, May 27, 2004 5:56 PM
Subject: what will I do before running the uddi4j?


>
>
> First,my juddi happy page showed as following,I can't find anything wrong:
>
> Happy jUDDI!
> jUDDI Dependencies: Class Files & Libraries
> Looking for: org.juddi.registry.Registry+Found in:
> D:\Tomcat\webapps\juddi\WEB-INF\lib\juddi.jarLooking for:
>
> javax.xml.soap.SOAPMessage+Found in:
> D:\Tomcat\webapps\juddi\WEB-INF\lib\saaj.jarLooking for:
> javax.xml.rpc.Service+Found in:
>
> D:\Tomcat\webapps\juddi\WEB-INF\lib\jaxrpc.jarLooking for:
> org.apache.axis.transport.http.AxisServlet+Found in:
>
> D:\Tomcat\webapps\juddi\WEB-INF\lib\axis.jarLooking for:
> org.apache.commons.discovery.Resource+Found in:
>
> D:\Tomcat\webapps\juddi\WEB-INF\lib\commons-discovery.jarLooking for:
> org.apache.commons.logging.Log+Found in:
>
> D:\Tomcat\bin\commons-logging-api.jarLooking for:
> org.apache.log4j.Layout+Found in: D:\Tomcat\webapps\juddi\WEB-
>
> INF\lib\log4j-1.2.8.jarLooking for:
> com.ibm.wsdl.factory.WSDLFactoryImpl+Found in:
D:\Tomcat\webapps\juddi\WEB-
>
> INF\lib\wsdl4j.jarLooking for: javax.xml.parsers.SAXParserFactory+Found in
> an unknown locationLooking for:
>
> javax.activation.DataHandler+Found in:
> D:\j2sdk1.4.2_04\jre\lib\ext\activation.jar
>
> jUDDI Dependencies: Resource & Properties Files
> Looking for: log4j.properties+Found in:
> D:\Tomcat\webapps\juddi\WEB-INF\classes\log4j.propertiesLooking for:
>
> juddi.properties+Found in:
> D:\Tomcat\webapps\juddi\WEB-INF\classes\juddi.properties
>
> jUDDI DataSource Check
> + Got a JNDI Context!
> + Got a JDBC DataSource (dsname=java:comp/env/jdbc/juddiDB)
> + Got a JDBC Connection!
> + SELECT COUNT(*) FROM PUBLISHER = 1
>
>
> jUDDI Properties
> juddi.adminEmailAddress: admin@juddi.org
> juddi.adminURL: http://localhost:8080/juddi/admin
> juddi.authFactory: org.juddi.auth.simple.SimpleAuthenticatorFactory
> juddi.dataStoreFactory: org.juddi.datastore.jdbc.JDBCDataStoreFactory
> juddi.inquiryURL: http://localhost:8080/juddi/inquiry
> juddi.jdbcDriver: com.mysql.jdbc.Driver
> juddi.jdbcPassword: juddi
> juddi.jdbcURL: jdbc:mysql://localhost/juddi
> juddi.jdbcUser: juddi
> juddi.maxMessageSize: 2097152
> juddi.maxNameElementsAllowed: 5
> juddi.maxNameLength: 255
> juddi.operatorName: jUDDI.org
> juddi.operatorSiteURL: http://localhost:8080/juddi
> juddi.publishURL: http://localhost:8080/juddi/publish
> juddi.transportClass: org.juddi.transport.axis.AxisTransport
> juddi.useConnectionPool: false
> juddi.uuidgenFactory: org.juddi.uuidgen.jvm.JavaUUIDGenFactory
>
> Second,my classpath is set as:
>
.;D:\j2sdk1.4.2_04\jre\lib\rt.jar;D:\j2sdk1.4.2_04\lib\dt.jar;D:\j2sdk1.4.2_
04
>
>
>
\lib\tools.jar;D:\MssqlJdbc\lib\msbase.jar;D:\MssqlJdbc\lib\msutil.jar;D:\Ms
sqlJdbc\lib\mssqlserver.jar;D:\lib\uddi4j.jar;D:\
>
>
>
lib\activation.jar;D:\lib\axis.jar;D:\lib\castor-0.9.3.9-xml.jar;D:\lib\comm
ons-logging.jar;
>
>
>
D:\lib\dom.jar;D:\lib\jaas.jar;D:\lib\jaxp-api.jar;D:\lib\jaxr-api.jar;D:\li
b\jaxr-impl.jar;D:\lib\jaxrpc-api.jar;
>
>
>
D:\lib\jaxrpc-impl.jar;D:\lib\jaxrpc-sec.jar;D:\lib\jaxrpc-spi.jar;D:\lib\js
se.jar;D:\lib\mail.jar;D:\lib\saaj-api.jar;
>
>
>
D:\lib\saaj-impl.jar;D:\lib\sax.jar;D:\lib\soap.jar;D:\lib\wsi-client.jar;D:
\lib\xalan.jar;D:\lib\xercesImpl.jar;
>
>
>
D:\lib\xmlsec.jar;D:\lib\xsltc.jar;D:\lib\juddi.jar;D:\lib\commons-discovery
.jar
>
>
> Following, I run BusinessEntityExample.class with Configurator.class and
> samples.prop,then exeception happened:
> E:\lb\workfolder\uddi\entity02>java BusinessEntityExample
>
> *********** Running BusinessEntityExample ***********
>
> Get authtoken
> Exception in thread "main" java.lang.NoClassDefFoundError:
> javax/xml/namespace/Q
> Name
>         at
> org.apache.axis.deployment.wsdd.WSDDConstants.<clinit>(WSDDConstants.
> java:111)
>         at
> org.apache.axis.configuration.FileProvider.configureEngine(FileProvid
> er.java:209)
>         at org.apache.axis.AxisEngine.init(AxisEngine.java:187)
>         at org.apache.axis.AxisEngine.<init>(AxisEngine.java:172)
>         at org.apache.axis.client.AxisClient.<init>(AxisClient.java:88)
>         at org.apache.axis.client.Service.getAxisClient(Service.java:143)
>         at org.apache.axis.client.Service.<init>(Service.java:152)
>         at org.uddi4j.transport.ApacheAxisTransport.send(Unknown Source)
>         at org.uddi4j.transport.TransportBase.send(Unknown Source)
>         at org.uddi4j.client.UDDIProxy.send(Unknown Source)
>         at org.uddi4j.client.UDDIProxy.get_authToken(Unknown Source)
>         at BusinessEntityExample.run(BusinessEntityExample.java:76)
>         at BusinessEntityExample.main(BusinessEntityExample.java:54)
>
> My samples.prop key values:
> inquiryURL = http://localhost:8080/juddi/inquiry
> publishURL = http://localhost:8080/juddi/publish
> userid = juddi
> password = juddi
> TransportClassName=org.uddi4j.transport.ApacheAxisTransport
> logEnabled=false
> handlerPackageName=com.sun.net.ssl.internal.www.protocol
> securityClassName=com.sun.net.ssl.internal.ssl.Provider
> businessName=Sample Business
> serviceName=Sample Service
> tmodelName=Sample TModel
> sampleEntityName=S
> assertionRelationship=peer-peer
>
> Have I missed set some enviroments in classpath?
>
> From: Feng yuan <fe...@comp.nus.edu.sg>
> Subject: what will I do before running the uddi4j?
> Date: Thu, 27 May 2004 21:50:15 +0800
> Content-Type: text/plain;
> charset="gb2312"
>
> Hi,
>
> There is a sample.PROP file in the sample source code directory. And
> Configurator.java is also a hint for you.
> You can look through those files.
>
> Cheers,
> Feng
> ----- Original Message ----- 
> From: "Meloro, John" <Me...@Pragmatics.com>
> To: <ju...@ws.apache.org>
> Sent: Thursday, May 27, 2004 9:45 PM
> Subject: RE: what will I do before running the uddi4j?
>
>
> What is the error?
>
> -----Original Message-----
> From: libinwell@hotmail.com [mailto:libinwell@hotmail.com]
> Sent: Thursday, May 27, 2004 9:40 AM
> To: juddi-user@ws.apache.org
> Subject: what will I do before running the uddi4j?
>
>
> hello everyone,
> I'm new to juddi.When I run the uddi4j programme,there always come with
> some error.
> Maybe I miss setting some enviroments k,I think.
> I have jws1.3,jdk1.4,ant,uddi4j.I can see the page
> http:\\loacoalhost:8080\juddi\happyjuddi.jasp
> and there is nothing wrong.
> Give me some advises please!
>
> _________________________________________________________________
> 享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com
>
>
>