You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juddi.apache.org by "Viens, Steve" <St...@FMR.COM> on 2003/08/11 11:07:04 UTC

RE: [juddi-Developers] RE: [juddi-Users] Unknown Source SaveBusin essExample

Hmmm... Should be "org.juddi.datastore.jdbc" or perhaps the import it's
referring to isn't needed.

Steve

-----Original Message-----
From: Andy Cutright [mailto:Andy.Cutright@borland.com] 
Sent: Monday, August 11, 2003 11:17 AM
To: juddi-developers@lists.sourceforge.net
Subject: RE: [juddi-Developers] RE: [juddi-Users] Unknown Source
SaveBusinessExample


HEAD isn't compiling .. 

      "AddressLineTable.java":     [javac]
C:/temp/juddi/src/java/org/juddi/datastore/jdbc/AddressLineTable.java:23
: package org.juddi.util.jdbc does not exist at line 23

cheers,
andy



> -----Original Message-----
> From: Viens, Steve [mailto:Stephen.Viens@FMR.COM] 
> Sent: Monday, August 11, 2003 7:30 AM
> To: juddi-developers@lists.sourceforge.net; 'Subrahmanya, Noida'
> Subject: [juddi-Developers] RE: [juddi-Users] Unknown Source 
> SaveBusinessExample
> 
> 
> (I'll assume you're using 0.8.0)
> 
> It looks like you're throwing a RegistryException somewhere 
> and code within
> AxisProcesser's catch-block is not checking DispositionReport 
> for 'null'
> before attempting to add 'generic' and 'operator' values to it. 
> 
> If one of the committers could please replace the following code in
> AxisProcessor we should be able to avoid the 
> NullPointerException and see
> information about the original Exception that's being thrown. 
> (I don't have
> access to CVS here)...
> 
> 
> 
> Replace this (in the AxisProcesser constructor):
> 
>     catch(RegistryException rex)
>     {
>       String fCode = rex.getFaultCode();
>       String fString = rex.getFaultString();
>       String fActor = rex.getFaultActor();    
>         
>       DispositionReport dispRpt = rex.getDispositionReport();
>       dispRpt.setGeneric(generic);
>       dispRpt.setOperator(Config.getOperator());
>       
> 	monitor.addMonitorFault( fString );
>       response = createFault(fCode,fString,fActor,dispRpt);
>     }
> 
> 
> 
> With this:
> 
>     catch(RegistryException rex)
>     {
>       String fCode = rex.getFaultCode();
>       String fString = rex.getFaultString();
>       String fActor = rex.getFaultActor();    
>         
>       DispositionReport dispRpt = rex.getDispositionReport();
>       if (dispRpt != null)
>       {
>         dispRpt.setGeneric(generic);
>         dispRpt.setOperator(Config.getOperator());
>       }
>       
> 	monitor.addMonitorFault( fString );
>       response = createFault(fCode,fString,fActor,dispRpt);
>     }
> 
> 
> 
> Steve
> 
> 
> -----Original Message-----
> From: Viens, Steve 
> Sent: Monday, August 11, 2003 8:53 AM
> To: 'juddi-users@lists.sourceforge.net'
> Subject: RE: [juddi-Users] Unknown Source SaveBusinessExample
> 
> 
> Sorry to ask again but exactly which version of jUDDI are you 
> using again? 
> 
> Are you using 0.8.0 or are you building from CVS?
> 
> Steve
> 
> -----Original Message-----
> From: Subrahmanya, Noida [mailto:subrahmanya@noida.hcltech.com] 
> Sent: Monday, August 11, 2003 3:39 AM
> To: juddi-users@lists.sourceforge.net
> Subject: RE: [juddi-Users] Unknown Source SaveBusinessExample
> 
> 
> After setting log4j.rootCategory=DEBUG, LOGFILE i get 
> following in juddi.log
> file. I have tried to run all uddi4j samples. I get problem in finding
> service,bussiness, tModel, binding etc. For example while running
> SaveBusinessExample i get,
> *********** Running SaveBusinessExample ***********
> 
> Get authtoken
> Returned authToken:authToken:7FBC5730-CBCE-11D7-9730-F3AC83123E31
> 
> Save 'Sample Business'
> Returned businessKey:8079DAD0-CBCE-11D7-9AD0-AA6101D23113
> 
> Listing businesses starting with S after we publish
> java.lang.NullPointerException
>         at org.uddi4j.UDDIElement.<init>(Unknown Source)
>         at org.uddi4j.response.BusinessList.<init>(Unknown Source)
>         at org.uddi4j.client.UDDIProxy.find_business(Unknown Source)
>         at SaveBusinessExample.run(Unknown Source)
>         at SaveBusinessExample.main(Unknown Source)
> 
> with following exception stack trace in juddi.log file.
> 
> 2003-08-11 13:06:22,060 [Thread-6] DEBUG org.apache.axis.EXCEPTIONS -
> AxisFault:
> 2003-08-11 13:06:22,080 [Thread-6] DEBUG 
> org.apache.axis.utils.NSStack -
> NSPush (32)
> 2003-08-11 13:06:22,090 [Thread-6] DEBUG
> org.apache.axis.i18n.ProjectResourceBundle -
> org.apache.axis.i18n.resource::handleGetObject(empty00)
> 2003-08-11 13:06:22,090 [Thread-6] DEBUG 
> org.apache.axis.utils.NSStack -
> NSPop (empty)
> AxisFault
>  faultCode: 
> {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
>  faultSubcode: 
>  faultString: java.lang.NullPointerException
>  faultActor: 
>  faultNode: 
>  faultDetail: 
> 	{http://xml.apache.org/axis/}stackTrace:
> java.lang.NullPointerException
> 	at
> org.juddi.transport.axis.AxisProcessor.&lt;init&gt;(AxisProces
> sor.java:175)
> 	at 
> org.juddi.transport.axis.AxisHandler.invoke(AxisHandler.java:60)
> 	at
> org.apache.axis.strategies.InvocationStrategy.visit(Invocation
> Strategy.java:
> 71)
> 	at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
> 	at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
> 	at
> org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
> 	at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
> 	at
> org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.
> java:854)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at
> org.apache.axis.transport.http.AxisServletBase.service(AxisSer
> vletBase.java:
> 339)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(Application
> FilterChain.java:247)
> 	at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterCh
> ain.java:193)
> 	at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.ja
> va:256)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.ja
> va:191)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardContext.invoke(StandardContex
> t.java:2415)
> 	at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHost
> Valve.java:180
> )
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi
> spatcherValve.
> java:171)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:641)
> 	at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport
> Valve.java:172
> )
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:641)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEn
> gineValve.java
> :174)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.
> java:223)
> 	at
> org.apache.coyote.http11.Http11Processor.process(Http11Process
> or.java:594)
> 	at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle
> r.processConne
> ction(Http11Protocol.java:392)
> 	at
> org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi
> nt.java:565)
> 	at
> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
> ThreadPool.jav
> a:619)
> 	at java.lang.Thread.run(Thread.java:536)
> 
> 
> java.lang.NullPointerException
> 	at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
> 	at org.apache.axis.server.AxisServer.invoke(AxisServer.java:360)
> 	at
> org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.
> java:854)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> 	at
> org.apache.axis.transport.http.AxisServletBase.service(AxisSer
> vletBase.java:
> 339)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 	at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(Application
> FilterChain.java:247)
> 	at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterCh
> ain.java:193)
> 	at
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.ja
> va:256)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.ja
> va:191)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardContext.invoke(StandardContex
> t.java:2415)
> 	at
> org.apache.catalina.core.StandardHostValve.invoke(StandardHost
> Valve.java:180
> )
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi
> spatcherValve.
> java:171)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:641)
> 	at
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport
> Valve.java:172
> )
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:641)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEn
> gineValve.java
> :174)
> 	at
> org.apache.catalina.core.StandardPipeline$StandardPipelineValv
> eContext.invok
> eNext(StandardPipeline.java:643)
> 	at
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:480)
> 	at
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
> 	at
> org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.
> java:223)
> 	at
> org.apache.coyote.http11.Http11Processor.process(Http11Process
> or.java:594)
> 	at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle
> r.processConne
> ction(Http11Protocol.java:392)
> 	at
> org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi
> nt.java:565)
> 	at
> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
> ThreadPool.jav
> a:619)
> 	at java.lang.Thread.run(Thread.java:536)
> Caused by: java.lang.NullPointerException
> 	at
> org.juddi.transport.axis.AxisProcessor.<init>(AxisProcessor.java:175)
> 	at 
> org.juddi.transport.axis.AxisHandler.invoke(AxisHandler.java:60)
> 	at
> org.apache.axis.strategies.InvocationStrategy.visit(Invocation
> Strategy.java:
> 71)
> 	at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
> 	at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
> 	at
> org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
> 	at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
> 	... 33 more
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG 
> org.apache.axis.SOAPPart - Enter:
> SOAPPart ctor(FORM_FAULT)
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG
> org.apache.axis.i18n.ProjectResourceBundle -
> org.apache.axis.i18n.resource::handleGetObject(setMsgForm)
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG 
> org.apache.axis.SOAPPart - Setting
> current message form to: FORM_FAULT (currentMessage is now
> org.apache.axis.AxisFault)
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG 
> org.apache.axis.SOAPPart - Exit:
> SOAPPart ctor()
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG 
> org.apache.axis.SOAPPart - Enter:
> SOAPPart::getAsBytes
> 2003-08-11 13:06:22,100 [Thread-6] DEBUG 
> org.apache.axis.SOAPPart - Enter:
> SOAPPart::getAsString
> 2003-08-11 13:06:22,120 [Thread-6] DEBUG
> org.apache.axis.i18n.ProjectResourceBundle -
> org.apache.axis.i18n.resource::handleGetObject(addBody00)
> 2003-08-11 13:06:22,120 [Thread-6] DEBUG 
> org.apache.axis.message.SOAPBody -
> Adding body element to message...
> 2003-08-11 13:06:22,120 [Thread-6] DEBUG
> org.apache.axis.i18n.ProjectResourceBundle -
> org.apache.axis.i18n.resource::handleGetObject(register00)
> 2003-08-11 13:06:22,130 [Thread-6] DEBUG
> org.apache.axis.encoding.SerializationContextImpl - register 
> 'soapenv' -
> 'http://schemas.xmlsoap.org/soap/envelope/'
> 
> 
> With Thanks and Regards,
>  
> B. Subrahmanya Nayak
> Member Technical Staff,
> HCL Technologies Ltd.,
> Net Centric Division,
> B-41, A-11,Sector 16,
> Noida - 201301
> Ph: 120-2510701/702/813 Extn: 3028
> Homepage: http://www.subrahmanya.50megs.com
> 
> Disclaimer:
> 
> This document is intended for transmission to the named 
> recipient only. If
> you are not that person, you should note that legal rights 
> reside in this
> document and you are not authorized to access, read, 
> disclose, copy, use or
> otherwise deal with it and any such actions are prohibited and may be
> unlawful. The views expressed in this document are not 
> necessarily those of
> HCL Technologies Ltd. Notice is hereby given that no representation,
> contract or other binding obligation shall be created by this 
> e-mail, which
> must be interpreted accordingly. Any representations, 
> contractual rights or
> obligations shall be separately communicated in writing and 
> signed in the
> original by a duly authorized officer of the relevant company.
> 
> 
> 
> -----Original Message-----
> From: Anou Manavalan [mailto:amanaval@sybase.com]
> Sent: Friday, August 08, 2003 09:29 PM
> To: juddi-users@lists.sourceforge.net
> Subject: Re: [juddi-Users] Unknown Source SaveBusinessExample
> 
> 
> Could you make the log debug in the log4j.properties file ? 
> That would give
> more details in the juddi.log on where it is failing instead 
> of just the
> error.
> # Set root category priority to DEBUG and its appender to LOGFILE.
> 
> log4j.rootCategory=DEBUG, LOGFILE
> 
> 
> 
> -Anou
> 
> ----- Original Message -----
> From: "Subrahmanya, Noida" <su...@noida.hcltech.com>
> To: <ju...@lists.sourceforge.net>
> Sent: Friday, August 08, 2003 7:43 AM
> Subject: RE: [juddi-Users] Unknown Source SaveBusinessExample
> 
> 
> > Hi,
> > The publisher ID is the user ID. That now proceeds up to 
> following out
> put,
> > *********** Running SaveBusinessExample ***********
> >
> > Get authtoken
> > Returned authToken:authToken:630BE630-C9A5-11D7-A892-C966EEFDA0AF
> >
> > Save 'Sample Business'
> > Returned businessKey:634BFC70-C9A5-11D7-A892-F24AEFA7CFE6
> >
> > Listing businesses starting with S after we publish
> > Exception in thread "main" java.lang.NoSuchMethodError:
> > org.apache.axis.Message.getSOAPPart()Lorg/apache/axis/SOAPPart;
> >         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.find_business(Unknown Source)
> >         at SaveBusinessExample.run(Unknown Source)
> >         at SaveBusinessExample.main(Unknown Source)
> >
> > and at juddi.log file i have message like,
> >  [A DispositionReport was not present] 2003-08-08 
> 19:02:40,930 [Thread-4]
> > ERROR org.juddi.function.FindBusinessFunction - 
> RegistryException: Invalid
> > attribute name: "BUSINESS_KEY".
> >  SOAPFault Actor: null
> >  SOAPFault Code: null
> >  SOAPFault String: Invalid attribute name: "BUSINESS_KEY".
> >
> > With Thanks and Regards,
> >
> > B. Subrahmanya Nayak
> > Member Technical Staff,
> >
> >
> >
> > -----Original Message-----
> > From: Andy Cutright [mailto:Andy.Cutright@borland.com]
> > Sent: Friday, August 08, 2003 06:45 PM
> > To: juddi-users@lists.sourceforge.net
> > Subject: RE: [juddi-Users] Unknown Source SaveBusinessExample
> >
> >
> > also if you could enable logging on the client side, that 
> would show us
> > the userid you're using, etc. there's a property value within
> > samples.prop 'logEnabled', set that to 'true':
> >
> > logEnabled=true
> >
> > cheers,
> > andy
> >
> > > -----Original Message-----
> > > From: Subrahmanya, Noida [mailto:subrahmanya@noida.hcltech.com]
> > > Sent: Friday, August 08, 2003 5:57 AM
> > > To: juddi-users@lists.sourceforge.net
> > > Subject: RE: [juddi-Users] Unknown Source SaveBusinessExample
> > >
> > >
> > > There was an problem with DDL statements. I was using
> > > incorrect DDL for
> > > PUBLISHER table.
> > > But now i am having following message in juddi.log file,'
> > >
> > > 2003-08-08 18:29:59,980 [Thread-6] ERROR
> > > org.juddi.function.GetAuthTokenFunction - RegistryException:
> > > user ID: public
> > >  SOAPFault Actor:
> > >  SOAPFault Code: Client
> > >  SOAPFault String: Client Error
> > >  Operator: null
> > >  >Errno: 10150
> > >  >Error Code: E_unknownUser
> > >  >Error Info Text: The user ID and password pair passed in a
> > > get_authToken
> > > message is not known to the Operator Site or is not valid.
> > >
> > > In which table i should have the entry for user id.-public?
> > > With Thanks and Regards,
> > >
> > > B. Subrahmanya Nayak
> > > Member Technical Staff,
> > >
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: Jonathan D Wilson [mailto:jdw100@ecs.soton.ac.uk]
> > > Sent: Friday, August 08, 2003 05:55 PM
> > > To: juddi-users@lists.sourceforge.net
> > > Subject: Re: [juddi-Users] Unknown Source SaveBusinessExample
> > >
> > >
> > > I was deffinately there at one point, it was posted here a
> > > while back. I
> > > followed the fix posted, but I remember people mentioning a
> > > whether it
> > > was temporary or not, maybe that was a workaround though
> > > rather than a
> > > proper fix.
> > >
> > > Jon Wilson
> > >
> > > Steve Viens wrote:
> > > > Hmmm... It was meant as a convenience method ... A
> > > NullPointerException
> > > > is not very convenient!
> > > >
> > > > I'll confirm that it has/hasn't been fixed.
> > > >
> > > > Steve
> > > >
> > > > -----Original Message-----
> > > > From: juddi-users-admin@lists.sourceforge.net
> > > > [mailto:juddi-users-admin@lists.sourceforge.net] On Behalf
> > > Of Jonathan D
> > > > Wilson
> > > > Sent: Friday, August 08, 2003 7:27 AM
> > > > To: juddi-users@lists.sourceforge.net
> > > > Subject: Re: [juddi-Users] Unknown Source SaveBusinessExample
> > > >
> > > >
> > > > I think 0.71 claimed to have the fix and just realeased as I was
> > > > testing, but I found it was still there???
> > > >
> > > > Jon Wilson
> > > >
> > > > Steve Viens wrote:
> > > >
> > > >>Thanks Jon,
> > > >>
> > > >>I took a quick look and I think this is *great* feedback.
> > > We're always
> > > >
> > > >
> > > >>trying to make the installation process easier (and of
> > > course doc is
> > > >>the last thing to come out of an open-source project).
> > > >>
> > > >>I took a look at the source to make sure the Contacts
> > > constructor bug
> > > >>you mention has been fixed (it looks like it has been).
> > > >>
> > > >>Steve
> > > >>
> > > >>-----Original Message-----
> > > >>From: juddi-users-admin@lists.sourceforge.net
> > > >>[mailto:juddi-users-admin@lists.sourceforge.net] On Behalf
> > > Of Jonathan
> > > >
> > > >
> > > >>D Wilson
> > > >>Sent: Friday, August 08, 2003 6:42 AM
> > > >>To: juddi-users@lists.sourceforge.net
> > > >>Subject: Re: [juddi-Users] Unknown Source SaveBusinessExample
> > > >>
> > > >>
> > > >>I have documented my install of jUDDI on tomcat, infact it
> > > includes a
> > > >>few other things as well. Hope it helps. I had several
> > > problems during
> > > >
> > > >
> > > >>my install and found that some of the installation
> > > documentation was a
> > > >
> > > >
> > > >>bit scattered, I didn't find a definitive guide.
> > > >>
> > > >>I hope this helps to see if you have jUDDI set up correctly.
> > > >>
> > > >>Jon Wilson
> > > >>
> > > >>Steve Viens wrote:
> > > >>
> > > >>
> > > >>>I'd like to help you out but there's not enough
> > > information in this
> > > >>>stack trace to determining what's happening.
> > > >>>
> > > >>>Get authtoken
> > > >>>java.lang.NullPointerException
> > > >>>       at org.uddi4j.UDDIElement.<init>(Unknown Source)
> > > >>>       at org.uddi4j.response.AuthToken.<init>(Unknown Source)
> > > >>>       at 
> org.uddi4j.client.UDDIProxy.get_authToken(Unknown Source)
> > > >>>       at SaveBusinessExample.run(Unknown Source)
> > > >>>       at SaveBusinessExample.main(Unknown Source)
> > > >>>Running sample FindBusinessExample.java gives following output
> > > >>>
> > > >>>There's nothing here to indicate that your jUDDI install is the
> > > >>>problem.
> > > >>>This could easily be a UDDI4j configuration problem. You
> > > can try the
> > > >>>SaveBusinessExample against one of the public registries
> > > to rule out
> > > >>>UDDI4j configuration issues.
> > > >>>
> > > >>>Of course, I'm not saying that jUDDI isn't the problem ...
> > > only that
> > > >>>we
> > > >>>can't tell from the info you've provided. You'll need to
> > > look in the
> > > >>>juddi.log for that info.  look at the log4j.properties
> > > file that's in
> > > >>>juddi/WEB-INF/classes to determine where it's being 
> created. If it
> > > >>
> > > >>just
> > > >>
> > > >>
> > > >>>says "juddi.log" and you're running under Tomcat then
> > > you'll probably
> > > >>>find it under /tomcat-home/bin (where tomcat-home is 
> your Tomcat
> > > >>
> > > >>install
> > > >>
> > > >>
> > > >>>directory).
> > > >>>
> > > >>>Steve
> > > >>>
> > > >>>-----Original Message-----
> > > >>>*From:* juddi-users-admin@lists.sourceforge.net
> > > >>>[mailto:juddi-users-admin@lists.sourceforge.net] *On Behalf Of
> > > >>>*Subrahmanya, Noida
> > > >>>*Sent:* Friday, August 08, 2003 1:18 AM
> > > >>>*To:* juddi-users@lists.sourceforge.net
> > > >>>*Subject:* RE: [juddi-Users] Unknown Source SaveBusinessExample
> > > >>>
> > > >>>Yes, I have an entry in PUBLISHER table. and also i am getting
> > > >>>following
> > > >>>in "happyjuddi.jsp" page.
> > > >>>+ SELECT COUNT(*) FROM PUBLISHER = 1
> > > >>>
> > > >>>
> > > >>>With Thanks and Regards,
> > > >>>
> > > >>>*B. Subrahmanya Nayak*
> > > >>>
> > > >>>   -----Original Message-----
> > > >>>   *From:* Viens, Steve [mailto:Stephen.Viens@FMR.COM]
> > > >>>   *Sent:* Thursday, August 07, 2003 08:29 PM
> > > >>>   *To:* 'juddi-users@lists.sourceforge.net'
> > > >>>   *Subject:* RE: [juddi-Users] Unknown Source 
> SaveBusinessExample
> > > >>>
> > > >>>   Also, If you look at the "happyjuddi.jsp" page you 
> should see
> > > >>>   something like the following under the "*jUDDI
> > > DataSource Check*"
> > > >>>   section.
> > > >>>
> > > >>>   + SELECT COUNT(*) FROM PUBLISHER = 1
> > > >>>   If PUBLISHER = 0 then you'll need to insert a value into the
> > > >>>   PUBLISHER table.
> > > >>>
> > > >>>   We're recently begun work to extend the jUDDI API to allow
> > > >>>   management of publishers (this is not part of the UDDI API).
> > > >>>
> > > >>>   Steve
> > > >>>
> > > >>>       -----Original Message-----
> > > >>>       *From:* Anou Manavalan [mailto:amanaval@sybase.com]
> > > >>>       *Sent:* Thursday, August 07, 2003 8:50 AM
> > > >>>       *To:* juddi-users@lists.sourceforge.net
> > > >>>       *Subject:* Re: [juddi-Users] Unknown Source
> > > >>>SaveBusinessExample
> > > >>>
> > > >>>       Do you have an entry in the publisher table ?  
> The user sent
> > > >>
> > > >>for
> > > >>
> > > >>
> > > >>>       authentication, should have been added to the
> > > publisher table.
> > > >>>       Check the Deployment guide, it mentions about it.
> > > >>>
> > > >>>       Could you also make the log4j props to debug 
> and get more
> > > >>
> > > >>info,
> > > >>
> > > >>
> > > >>>       'cos in any case, there should not be a null pointer
> > > >>>exception.
> > > >>>
> > > >>>       regards,
> > > >>>       -Anou
> > > >>>
> > > >>>           ----- Original Message -----
> > > >>>           *From:* Subrahmanya, Noida
> > > >>>           <ma...@noida.hcltech.com>
> > > >>>           *To:* juddi-users@lists.sourceforge.net
> > > >>>           <ma...@lists.sourceforge.net>
> > > >>>           *Sent:* Thursday, August 07, 2003 6:20 AM
> > > >>>           *Subject:* RE: [juddi-Users] Unknown Source
> > > >>>SaveBusinessExample
> > > >>>
> > > >>>           Hi,
> > > >>>           I am using juddi 0.8.0. I setup my database
> > > totalxml with
> > > >>>           it. I am able to run happyjuddi.jsp successfully.
> > > >>>           But now i want to add test cases for this.  i
> > > am trying to
> > > >>>           execute uddi4 samples on juddi registry server i get
> > > >>>           following exception while running the sample
> > > >>>           SaveBusinessExample.java  What would be the reason?.
> > > >>>
> > > >>>           *********** Running SaveBusinessExample ***********
> > > >>>
> > > >>>           Get authtoken
> > > >>>           java.lang.NullPointerException
> > > >>>                   at 
> org.uddi4j.UDDIElement.<init>(Unknown Source)
> > > >>>                   at 
> org.uddi4j.response.AuthToken.<init>(Unknown
> > > >>
> > > >>Source)
> > > >>
> > > >>
> > > >>>                   at
> > > >>
> > > >>org.uddi4j.client.UDDIProxy.get_authToken(Unknown
> > > >>
> > > >>
> > > >>>           Source)
> > > >>>                   at SaveBusinessExample.run(Unknown Source)
> > > >>>                   at SaveBusinessExample.main(Unknown Source)
> > > >>>           Running sample FindBusinessExample.java 
> gives following
> > > >>>output
> > > >>>
> > > >>>           *********** Running FindBusinessExample ***********
> > > >>>
> > > >>>           With Thanks and Regards,
> > > >>>
> > > >>>           *B. Subrahmanya Nayak*
> > > >>>
> > > >>>           *From:* Viens, Steve [mailto:Stephen.Viens@FMR.COM]
> > > >>>           *Sent:* Tuesday, July 01, 2003 08:11 PM
> > > >>>           *To:* 'juddi-users@lists.sourceforge.net'
> > > >>>           *Subject:* RE: [juddi-Users] Unknown Source
> > > >>>
> > > >>>               There is a 0.7.1 release available now 
> (I built it
> > > >>
> > > >>over
> > > >>
> > > >>
> > > >>>               the weekend) No need to pull from CVS.
> > > >>>
> > > >>>               Steve
> > > >>>
> > > >>>                   -----Original Message-----
> > > >>>                   *From:* Anou Manavalan
> > > [mailto:anou@trysybase.com]
> > > >>>                   *Sent:* Tuesday, July 01, 2003 10:10 AM
> > > >>>                   *To:* juddi-users@lists.sourceforge.net
> > > >>>                   *Subject:* RE: [juddi-Users] Unknown Source
> > > >>>
> > > >>>                   If I remember right, this problem was
> > > solved and a
> > > >>>                   bug fix is already in place for the
> > > nullptr.  Did
> > > >>>                   you get the files from CVS ? or is it
> > > the release
> > > >>>                   code ? There were a number of fixes
> > > that has been
> > > >>>                   made after the release, so getting the
> > > files from
> > > >>>                   CVS should help.
> > > >>>
> > > >>>                   regards,
> > > >>>                   -Anou
> > > >>>
> > > >>>                       -----Original Message-----
> > > >>>                       *From:*
> > > >>
> > > >>juddi-users-admin@lists.sourceforge.net
> > > >>
> > > >>[mailto:juddi-users-admin@lists.sourceforge.net]*On
> > > >>
> > > >>
> > > >>>                       Behalf Of *Roberto Baldascino
> > > >>>                       *Sent:* Tuesday, July 01, 2003 3:07 AM
> > > >>>                       *To:* juddi-users@lists.sourceforge.net
> > > >>>                       *Subject:* [juddi-Users] Unknown Source
> > > >>>
> > > >>>                       I've installed juddi in Tomcat 4.1
> > > with mysql,
> > > >>>                       and happyjuddi.jsp tells me
> > > everything is ok.
> > > >>>                       Using uddi4j, FindBusinessExample is ok.
> > > >>>                       But publishing a
> > > >>>                       webservice by 
> SaveBusinessExample it breaks
> > > >>
> > > >>and
> > > >>
> > > >>
> > > >>>                       throws the next exception:
> > > >>>                       *********** Running SaveBusinessExample
> > > >>
> > > >>***********
> > > >>
> > > >>
> > > >>>                       Get authtoken
> > > >>>                       Returned
> > > >>>
> > > >>
> > > >>authToken:authToken:425FEE30-AB9C-11D7-AE30-E9204C5EC8BA
> > > >>
> > > >>
> > > >>>                       Save 'Sample Business'
> > > >>>                               at
> > > >>
> > > >>org.uddi4j.UDDIElement.<init>(Unknown
> > > >>
> > > >>
> > > >>>                       Source)
> > > >>>                               at
> > > >>>
> > > >>
> > > >>org.uddi4j.response.BusinessDetail.<init>(Unknown
> > > >>
> > > >>
> > > >>>                       Source)
> > > >>>                               at
> > > >>>
> > > >>
> > > >>org.uddi4j.client.UDDIProxy.save_business(Unknown
> > > >>
> > > >>
> > > >>>                       Source)
> > > >>>                               at
> > > >>>
> > > >>
> > > >>SaveBusinessExample.run(SaveBusinessExample.java:94)
> > > >>
> > > >>
> > > >>>                               at
> > > >>>
> > > >>>SaveBusinessExample.main(SaveBusinessExample.java:53)
> > > >>>
> > > >>>                       The Tomcat Log is:
> > > >>>
> > > >>>                       Bootstrap: Create Catalina server
> > > >>>                       - Loading registry information
> > > >>>                       - Creating new Registry instance
> > > >>>                       - Creating MBeanServer
> > > >>>                       - Initializing Coyote HTTP/1.1 
> on port 8080
> > > >>>                       Bootstrap: Starting service
> > > >>>                       Starting service Tomcat-Standalone
> > > >>>                       Apache Tomcat/4.1.24
> > > >>>                       - 
> SimpleAuthenticatorFactory.init() called.
> > > >>>                       - JDBCDataStoreFactory.init() called.
> > > >>>                       - JavaUUIDGenFactory.init() called.
> > > >>>                       - Starting Coyote HTTP/1.1 on port 8080
> > > >>>                       - JK2: ajp13 listening on /0.0.0.0:8009
> > > >>>                       - Jk running ID=0 time=0/60
> > > >>>                       config=C:\Programmi\Apache Group\Tomcat
> > > >>>                       4.1\conf\jk2.properties
> > > >>>                       Bootstrap: Service started
> > > >>>                       - select from PUBLISHER table:
> > > >>>                       SELECT PUBLISHER_NAME,ADMIN 
> FROM PUBLISHER
> > > >>
> > > >>WHERE
> > > >>
> > > >>
> > > >>>                       PUBLISHER_ID=?
> > > >>>                       PUBLISHER_ID=juddi
> > > >>>                       - Generated token
> > > >>>
> > > >>
> > > >>'authToken:749F6840-ABA0-11D7-A891-E2724B1C5FFF'
> > > >>
> > > >>
> > > >>>                       for user: 'juddi/Juddiuser'
> > > >>>                       - insert into PUBLISHER table:
> > > >>>                       INSERT INTO AUTH_TOKEN
> > > >>>
> > > >>
> > > >>(AUTH_TOKEN,PUBLISHER_ID,PUBLISHER_NAME,CREATED,LAST_USED,NU
> > > MBER_OF_US
> > > >>ES
> > > >>,TOKEN_STATE)
> > > >>
> > > >>
> > > >>>                       VALUES (?,?,?,?,?,0,1)
> > > >>>
> > > >>
> > > >>AUTH_TOKEN=authToken:749F6840-ABA0-11D7-A891-E2724B1C5FFF
> > > >>
> > > >>
> > > >>>                       PUBLISHER_ID=juddi
> > > >>>                       PUBLISHER_NAME=Juddiuser
> > > >>>                       CREATED=2003-07-01 10:46:07.064
> > > >>>                       LAST_USED=2003-07-01 10:46:07.064
> > > >>>                       NUMBER_OF_USES=1
> > > >>>                       TOKEN_STATE=1
> > > >>>                       - release a JDBC connection back
> > > into the the
> > > >>>                       DataSource connection pool.
> > > >>>                       - select from AUTH_TOKEN table:
> > > >>>                       SELECT PUBLISHER_ID,PUBLISHER_NAME FROM
> > > >>>                       AUTH_TOKEN WHERE AUTH_TOKEN=?
> > > >>>
> > > >>
> > > >>AUTH_TOKEN=authToken:749F6840-ABA0-11D7-A891-E2724B1C5FFF
> > > >>
> > > >>
> > > >>>                       - select LAST_USED from 
> AUTH_TOKEN table:
> > > >>>                       SELECT LAST_USED FROM AUTH_TOKEN WHERE
> > > >>
> > > >>AUTH_TOKEN=?
> > > >>
> > > >>AUTH_TOKEN=authToken:749F6840-ABA0-11D7-A891-E2724B1C5FFF
> > > >>
> > > >>
> > > >>>                       - update AUTH_TOKEN table:
> > > >>>                       UPDATE AUTH_TOKEN SET
> > > >>>                       
> LAST_USED=?,NUMBER_OF_USES=NUMBER_OF_USES+1
> > > >>>                       WHERE AUTH_TOKEN=?
> > > >>>
> > > >>
> > > >>AUTH_TOKEN=authToken:749F6840-ABA0-11D7-A891-E2724B1C5FFF
> > > >>
> > > >>
> > > >>>                       LAST_USED=2003-07-01 10:46:07.665
> > > >>>                       - java.lang.NullPointerException
> > > >>>                       - release a JDBC connection back
> > > into the the
> > > >>>                       DataSource connection pool.
> > > >>>
> > > >>>                       The file samples.prop of uddi4j 
> classes is:
> > > >>>
> > > >>>                       # Property file used to set 
> parameters for
> > > >>>                       UDDI4J samples
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # inquiryURL: The URL for the 
> inquiry API of
> > > >>
> > > >>the
> > > >>
> > > >>
> > > >>>                       target UDDI registry
> > > >>>                       # publishURL: URL for the 
> publish API of the
> > > >>>                       target UDDI registry
> > > >>>                       # A list of UDDI URLs is on the
> > > UDDI4J website
> > > >>>                       http://www.uddi4j.org/
> > > >>>                       #
> > > >>>                       # A typical entry would be of the form
> > > >>>                       # 
> inquiryURL=http://company.com/uddi_node
> > > >>>                       #
> > > >>
> > > >>publishURL=https://company.com/uddi_publish_node
> > > >>
> > > >>
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       inquiryURL =
> > > >>>                       http://192.168.11.236:8080/juddi/inquiry
> > > >>>                       publishURL =
> > > >>>                       http://192.168.11.236:8080/juddi/publish
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Userid to use when running the publish
> > > >>>                       samples. Userid/passwords should
> > > >>>                       # not generally be stored in clear text
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       userid = juddi
> > > >>>                       password = password
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Transport classname. 
> Typically defined on
> > > >>>                       commandline as
> > > >>>                       # -Dorg.uddi4j.TransportClassName=xxx.
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>#TransportClassName=org.uddi4j.transport.ApacheSOAPTransport
> > > >>
> > > >>TransportClassName=org.uddi4j.transport.ApacheAxisTransport
> > > >>
> > > >>
> > > >>>                       #
> > > >>>
> > > >>
> > > >>TransportClassName=org.uddi4j.transport.HPSOAPTransport
> > > >>
> > > >>
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Debug log enabled or not.
> > > Typically defined
> > > >>
> > > >>on
> > > >>
> > > >>
> > > >>>                       command line as
> > > >>>                       # -Dorg.uddi4j.logEnabled=true
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       logEnabled=false
> > > >>>                       # logEnabled=true
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Values used to determine the
> > > implementation
> > > >>
> > > >>of
> > > >>
> > > >>
> > > >>>                       JSSE to use. Provided
> > > >>>                       # for convenience, this is typically
> > > >>
> > > >>configured
> > > >>
> > > >>
> > > >>>                       within the jdk
> > > >>>                       # in JAVA_HOME\jre\lib\security
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Sun JSSE implementation
> > > >>>
> > > >>
> > > >>handlerPackageName=com.sun.net.ssl.internal.www.protocol
> > > >>
> > > >>securityClassName=com.sun.net.ssl.internal.ssl.Provider
> > > >>
> > > >>
> > > >>>                       # IBM JSSE implementation
> > > >>>                       #
> > > >>>
> > > >>
> > > >>handlerPackageName=com.ibm.net.ssl.internal.www.protocol
> > > >>
> > > >>
> > > >>>                       #
> > > securityClassName=com.ibm.jsse.JSSEProvider
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # UDDI names to use within 
> samples. Samples
> > > >>
> > > >>may
> > > >>
> > > >>
> > > >>>                       or maynot use these values,
> > > >>>                       # Check the source for the sample
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       businessName=Sample Business
> > > >>>                       serviceName=Sample Service
> > > >>>                       tmodelName=Sample TModel
> > > >>>                       sampleEntityName=S
> > > >>>                       assertionRelationship=peer-peer
> > > >>>                       #
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>                       # Additional values can be added as
> > > needed as
> > > >>
> > > >>a
> > > >>
> > > >>
> > > >>>                       convenient repository
> > > >>>                       # for data relevant to the 
> UDDI4J samples
> > > >>>                       #
> > > >>>
> > > >>>
> > > >>
> > > >>------------------------------------------------------------
> > > ----------
> > > >>-
> > > >>
> > > >>
> > > >>>
> > > >>>
> > > >>>                       How i can solve my problems?
> > > >>>
> > > >>>                       Regards
> > > >>
> > > >>
> > > >>
> > > >>
> > > >>
> > > >>
> > > >>-------------------------------------------------------
> > > >>This SF.Net email sponsored by: Free pre-built ASP.NET
> > > sites including
> > > >
> > > >
> > > >>Data Reports, E-commerce, Portals, and Forums are available now.
> > > >>Download today and enter to win an XBOX or Visual Studio .NET.
> > > >>http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspn
> > > et_072303_
> > > >>01/01
> > > >>_______________________________________________
> > > >>juddi-users mailing list
> > > >>juddi-users@lists.sourceforge.net
> > > >>https://lists.sourceforge.net/lists/listinfo/juddi-users
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > -------------------------------------------------------
> > > > This SF.Net email sponsored by: Free pre-built ASP.NET
> > > sites including
> > > > Data Reports, E-commerce, Portals, and Forums are available now.
> > > > Download today and enter to win an XBOX or Visual Studio .NET.
> > > >
> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> > > _072303_01
> > > > /01
> > > > _______________________________________________
> > > > juddi-users mailing list
> > > > juddi-users@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/juddi-users
> > > >
> > > >
> > > >
> > > >
> > > > -------------------------------------------------------
> > > > This SF.Net email sponsored by: Free pre-built ASP.NET
> > > sites including
> > > > Data Reports, E-commerce, Portals, and Forums are available now.
> > > > Download today and enter to win an XBOX or Visual Studio .NET.
> > > >
> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> > > _072303_01/01
> > > > _______________________________________________
> > > > juddi-users mailing list
> > > > juddi-users@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/juddi-users
> > >
> > >
> > >
> > >
> > > -------------------------------------------------------
> > > This SF.Net email sponsored by: Free pre-built ASP.NET 
> sites including
> > > Data Reports, E-commerce, Portals, and Forums are available now.
> > > Download today and enter to win an XBOX or Visual Studio .NET.
> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> > > _072303_01/01
> > > _______________________________________________
> > > juddi-users mailing list
> > > juddi-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/juddi-users
> > >
> > >
> > > -------------------------------------------------------
> > > This SF.Net email sponsored by: Free pre-built ASP.NET 
> sites including
> > > Data Reports, E-commerce, Portals, and Forums are available now.
> > > Download today and enter to win an XBOX or Visual Studio .NET.
> > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> > > _072303_01/01
> > > _______________________________________________
> > > juddi-users mailing list
> > > juddi-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/juddi-users
> > >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email sponsored by: Free pre-built ASP.NET 
> sites including
> > Data Reports, E-commerce, Portals, and Forums are available now.
> > Download today and enter to win an XBOX or Visual Studio .NET.
> >
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> _072303_01/01
> > _______________________________________________
> > juddi-users mailing list
> > juddi-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/juddi-users
> >
> >
> > -------------------------------------------------------
> > This SF.Net email sponsored by: Free pre-built ASP.NET 
> sites including
> > Data Reports, E-commerce, Portals, and Forums are available now.
> > Download today and enter to win an XBOX or Visual Studio .NET.
> >
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> _072303_01/01
> > _______________________________________________
> > juddi-users mailing list
> > juddi-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/juddi-users
> >
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> _072303_01/01
> _______________________________________________
> juddi-users mailing list
> juddi-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/juddi-users
> 
> 
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> _072303_01/01
> _______________________________________________
> juddi-users mailing list
> juddi-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/juddi-users
> 
> 
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet
> _072303_01/01
> _______________________________________________
> juddi-developers mailing list
> juddi-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/juddi-developers
> 


-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
juddi-developers mailing list
juddi-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/juddi-developers