5 Replies Latest reply on Sep 6, 2007 9:28 AM by rukus

    ConfigEditor error 2032

    rukus

      Good day to all
      when i try to "Save Configuration" in ConfigEditor tool there is Error # 2032 - what is it means?

      P.S. JbossESB-Server 4.2 MR3 used...

        • 1. Re: ConfigEditor error 2032
          rukus

          there is log:

          15:45:36,328 ERROR [[UploadConfig]] Servlet.service() for servlet UploadConfig threw exception
          javax.servlet.ServletException: Unable to find config XML to overwrite: Quickstart_helloworld.esb
           at org.jboss.configapp.UploadServlet.doPost(UploadServlet.java:40)
           at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
           at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
           at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
           at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
           at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
           at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
           at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
           at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580)
           at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
           at java.lang.Thread.run(Thread.java:619)



          • 2. Re: ConfigEditor error 2032
            derek.adams

            It looks like you are trying to save a config back into a zipped deployment. The only two modes supported from the config editor are saving to a -esb.xml file or an exploded .esb deployment. Try unzipping the .esb archive in the deploy directory and see if it works for you.

            • 3. Re: ConfigEditor error 2032
              rukus

               

              "derek.adams" wrote:
              It looks like you are trying to save a config back into a zipped deployment. The only two modes supported from the config editor are saving to a -esb.xml file or an exploded .esb deployment. Try unzipping the .esb archive in the deploy directory and see if it works for you.

              yep - thanks - thats it
              i've tried to change source code to enable support for zipped deployment but unfortunately when servlet executes looks like .esb archive becomes read-only.... hmmm.... why??

              • 4. Re: ConfigEditor error 2032
                derek.adams

                I know that other zipped components like wars and sars are exploded into a work directory when jboss deploys them. Not sure if that is the case for .esb archives though. Still, the archive file itself shouldn't be read-only since you can hot-deploy a new one over it. What is the error message you are getting?

                • 5. Re: ConfigEditor error 2032
                  rukus

                   

                  "derek.adams" wrote:
                  I know that other zipped components like wars and sars are exploded into a work directory when jboss deploys them. Not sure if that is the case for .esb archives though. Still, the archive file itself shouldn't be read-only since you can hot-deploy a new one over it. What is the error message you are getting?


                  i've used truezip api and there is
                  Caused by: de.schlichtherle.io.ArchiveFileSystem$ArchiveReadOnlyException: Archive file is read-only!

                  but if i use java.io.File seems like all ok
                  Thanks anyway!