Venkat, I'm on Freenode irc #juddi, if you want more interactive help
On Fri, Jan 3, 2014 at 9:34 AM, Alex O'Ree <spyhunte...@gmail.com> wrote: > https://github.com/UDDI/juddi/wiki/GuideUsingthejUDDIGUI > > https://github.com/UDDI/juddi/wiki/GuideConfigurationServer (there's a > section towards the bottom for configuring juddi-gui > > SSL is turned on by default, however its not required. Also the import > from wadl/wsdl has an ignore ssl feature, see if that helps > > On Fri, Jan 3, 2014 at 9:26 AM, Venkat (NEU) <neu...@gmail.com> wrote: >> i now have a wadl for my WS and also have juddi-gui running locally. looks >> like the SSL is the default. can i run the local instance without ssl? does >> changing the uddi.xml (under WEB-INF/classes/META-INF) resolve this? >> >> also when i try to add a new business or add services from wadl, i am >> getting errors (possibly related to ssl above). i see a lot of in >> catalina.out >> >> Jan 3, 2014 8:55:53 AM org.apache.juddi.webconsole.hub.UddiHub >> HandleException >> SEVERE: null >> >> can you point me to some documentation for how to use the gui and how to >> configure some of the settings? >> >> >> >> >> On Thu, Jan 2, 2014 at 11:00 AM, Alex O'Ree <spyhunte...@gmail.com> wrote: >>> >>> >>> http://stackoverflow.com/questions/6514837/is-it-possible-for-spring-restful-services-to-privde-a-wadl-or-something-similar >>> >>> That article hints on how to generate wadl's based on Spring. >>> >>> juddi-gui has a user facing function that for wadl2uddi. Basically you >>> just punch in the url and it will register everything for you. >>> >>> If that doesn't work out, you'll have to register manually, either >>> using the juddi-gui or you can write some code for it such as this >>> >>> http://svn.apache.org/repos/asf/juddi/trunk/juddi-examples/simple-publish/src/main/java/org/apache/juddi/example/publish/SimplePublish.java >>> >>> >>> On Thu, Jan 2, 2014 at 10:50 AM, Venkat (NEU) <neu...@gmail.com> wrote: >>> > Alex >>> > >>> > Thanks for all the help. The demo is what i am looking to set up. Is >>> > this >>> > code available or is this already in the svn (i assume this was >>> > customized >>> > from some base code). >>> > >>> > Also any recommendations on how to generate Spring MVC to WADL (s that >>> > registration code that you mentioned). There are a few opensource >>> > projects >>> > that I got from web, but wanted to know whether there are any >>> > recommended >>> > approach. Will juddi-gui do this work? >>> > >>> > Thanks >>> > Venkat >>> > >>> > >>> > >>> > On Tue, Dec 31, 2013 at 5:08 PM, Alex O'Ree <spyhunte...@gmail.com> >>> > wrote: >>> >> >>> >> Ok so no wadl and no wsdl, means that you need to just simply create >>> >> your own registration code. You can also use the juddi-gui that's >>> >> bundled with 3.2. It's a user interface that makes it somewhat simple >>> >> to register new stuff. >>> >> >>> >> See this link for a demo >>> >> http://uddiconsole-jbossoverlord.rhcloud.com/ >>> >> >>> >> Here's the most basic UDDI structure you need to register a service if >>> >> you're writing code: >>> >> businessEntity >>> >> --businessService >>> >> ---bindingTemplate >>> >> ----AccessPoint value=base url of your service >>> >> >>> >> does this help? More information on the data structures can be found >>> >> here: http://uddi.org/pubs/uddi-v3.0.2-20041019.htm >>> >> >>> >> >>> >> On Tue, Dec 31, 2013 at 5:00 PM, Venkat (NEU) <neu...@gmail.com> wrote: >>> >> > Sorry if i was not more clear initially. >>> >> > >>> >> > I don't have WADL. All I have are spring MVC apps, multiple apps I am >>> >> > looking for a WS registry to publish all my WS end points. So I was >>> >> > trying >>> >> > to create WADL myself and trying to deploy to juddi. >>> >> > >>> >> > All I am looking for is a registry for publishing/discovery purposes. >>> >> > Am >>> >> > I >>> >> > looking at the wrong tool ;-) >>> >> > >>> >> > >>> >> > >>> >> > On Tuesday, December 31, 2013, Alex O'Ree wrote: >>> >> >> >>> >> >> Maybe I'm confused as to what your goal is. >>> >> >> >>> >> >> Do you have WADLs or generated WADLs for your REST services? If you >>> >> >> do, you may be in luck. >>> >> >> jUDDI 3.2's client jar has a routine that parses a WADL file and >>> >> >> will >>> >> >> register the services for you. >>> >> >> >>> >> >> The Apache SVN is down for upgrades at the moment, but there's an >>> >> >> example of how to use it there. There's also this article. >>> >> >> https://github.com/UDDI/juddi/wiki/devMappingWADLandWSDLtoUDDI >>> >> >> >>> >> >> That code will automate most of the process and attach the services >>> >> >> to >>> >> >> a business. At that point, all you need is a list of URLs to the >>> >> >> WADL >>> >> >> files and a loop. >>> >> >> >>> >> >> >>> >> >> On Tue, Dec 31, 2013 at 2:45 PM, Venkat (NEU) <neu...@gmail.com> >>> >> >> wrote: >>> >> >> > I figured out a way but its messing up my existing code as i have >>> >> >> > to >>> >> >> > refactor a lot. I am looking for some tips as to how to publish >>> >> >> > them >>> >> >> > without >>> >> >> > overly modifying the existing codebase. >>> >> >> > >>> >> >> > >>> >> >> > On Tue, Dec 31, 2013 at 2:06 PM, Venkat (NEU) <neu...@gmail.com> >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> Alex >>> >> >> >> >>> >> >> >> I am making progress but running into some issues. I have a >>> >> >> >> spring >>> >> >> >> based >>> >> >> >> application that uses annotations. so re-creating the beans.xml >>> >> >> >> file >>> >> >> >> for cxf >>> >> >> >> seems to be redundant. Also I am not able to translate some of my >>> >> >> >> spring >>> >> >> >> beans that have annotations into bean definitions in the >>> >> >> >> beans.xml >>> >> >> >> file. >>> >> >> >> >>> >> >> >> I am sure someone must have figured this out. Also i have used >>> >> >> >> CXF >>> >> >> >> till >>> >> >> >> date. Any suggestions? >>> >> >> >> >>> >> >> >> Thanks >>> >> >> >> Venkat >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> On Tue, Dec 24, 2013 at 7:30 PM, Alex O'Ree >>> >> >> >> <spyhunte...@gmail.com> >>> >> >> >> wrote: >>> >> >> >>> >>> >> >> >>> Venkat >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> http://svn.apache.org/repos/asf/juddi/trunk/juddi-examples/simple-publish/ >>> >> >> >>> >>> >> >> >>> That link has a reasonable example of how to publish a basic >>> >> >> >>> service. >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> http://svn.apache.org/repos/asf/juddi/trunk/juddi-examples/uddi-annotations/ >>> >> >> >>> >>> >> >> >>> That link has an example for using Java annotations to decorate >>> >> >> >>> your >>> >> >> >>> REST class, along with a simple servlet listener that will >>> >> >> >>> automatically register when the REST class is deployed to a >>> >> >> >>> container >>> >> >> >>> and optionally remove it from UDDI when the container stops or >>> >> >> >>> the >>> >> >> >>> endpoint is redeployed. >>> >> >> >>> >>> >> >> >>> Here's a few other references that will help you (namely, what >>> >> >> >>> tModels >>> >> >> >>> are already defined) >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> http://svn.apache.org/repos/asf/juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> http://svn.apache.org/repos/asf/juddi/trunk/juddi-core/src/main/resources/juddi_install_data/UDDI_tModels.xml >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> >>> >> >> >>> On Tue, Dec 24, 2013 at 6:18 PM, Venkat <neu...@gmail.com> >>> >> >> >>> wrote: >>> >> >> >>> > Alex >>> >> >> >>> > >>> >> >> >>> > Ideally I want to publish REST services anytime. I am assuming >>> >> >> >>> > that >>> >> >> >>> > there >>> >> >> >>> > will is a UI piece which will help in listing the various REST >>> >> >> >>> > services >>> >> >> >>> > deployed. >>> >> >> >>> > >>> >> >> >>> > Is there any particular module (juddiv3-samples ?) in the >>> >> >> >>> > trunk >>> >> >> >>> > that >>> >> >> >>> > i >>> >> >> >>> > should be looking at? >>> >> >> >>> > >>> >> >> >>> > Thanks >>> >> >> >>> > -Venkat >>> >> >> >>> > >>> >> >> >>> > >>> >> >> >>> > >>> >> >> >>> > >>> >> >> >>> > On Tue, Dec 24, 2013 at 5:04 PM, Alex O'Ree >>> >> >> >>> > <spyhunte...@gmail.com> >>> >> >> >>> > wrote: >>> >> >> >>> >> >>> >> >> >>> >> You sure can. Are you looking for a register at start up and >>> >> >> >>> >> remove >>> >> >> >>> >> on >>> >> >> >>> >> shutdown? Or as one time registration? >>> >> >> >>> >> >>> >> >> >>> >> In either case, there's an example or two in the source trunk >>> >> >> >>> >> >>> >> >> >>> >> On Dec 24, 2013 11:12 AM, "Venkat" <neu...@gmail.com> wrote: >>> >> >> >>> >>> >>> >> >> >>> >>> Hi >>> >> >> >>> >>> >>> >> >> >>> >>> I am new to Juddi. I just installed and have it running on >>> >> >> >>> >>> tomcat. >>> >> >> >>> >>> Is >>> >> >> >>> >>> it >>> >> >> > >>> >> > >>> >> > >>> >> > >>> >> > -- >>> >> > -Venkat >>> >> > >>> >> > Sent via mobile device. Please excuse typos or brevity. >>> >> > >>> > >>> > >> >>