2 Replies Latest reply on Jun 10, 2010 10:27 AM by tomeicher

    Service Registry

    malmit

      Does the JBoss ESB Registry only allow the storage of EPRs?  I'm looking at the JBoss Registry Javadoc API and it only contains methods to query and register EPRs.  I'm trying to store my WSDL and XSD files and would like to use the JBoss Registry to do that.  Is that possible?  Or do I need to invest in another registry because that JBoss ESB registry doesn't support this?  Anyone have any luck doing this?

       

      Thanks in advanced!

      Tim

        • 1. Re: Service Registry
          kconner

          We only use it to store EPRs but it is UDDI (jUDDI) under the covers.  We certainly don't prevent you from adding other information into it.

           

          Kev

          • 2. Re: Service Registry
            tomeicher

            If you deploy the Spring integration, you can of course use that for you own lookups like

             

            private static final ApplicationContext ctxt =

                new ClassPathXmlApplicationContext("classpath:/META-INF/myspringappcontext.xml");

            ...

            ctxt.getBean("...");

             

            Cheers, Tom.