|
View:
New views
1 Messages
—
Rating Filter:
Alert me
|
|
|
Problem during installation ClassNotDefFoundErrorHi,
I'm trying to use jtrac on tomcat 5.5.23, jdk6.0 and ubuntu 7.04. I've downloaded jtrac2.1.0.zip and exctracted jtrac.war to tomcat/webapps. Then I've restarted tomcat and logged in as admin/admin. I can create new users, but when I try to create a new Space I got 'Internal Error'. The log from catalina.out follows. Your help is much appreciated. Best Regards. INFO: Deploying web application archive jtrac.war log4j:WARN No appenders could be found for logger (org.apache.commons.digester.Digester.sax). log4j:WARN Please initialize the log4j system properly. 2008-05-21 09:32:25,598 [main] INFO [info.jtrac.config.JtracConfigurer] - found 'jtrac-init.properties' on classpath, processing... 2008-05-21 09:32:25,600 [main] INFO [info.jtrac.config.JtracConfigurer] - locales available configured are 'en,de,el,es,es_AR,es_MX,fr,it,ja,nl,pl,pt_BR,ru,zh_CN,zh_TW' 2008-05-21 09:32:25,601 [main] INFO [info.jtrac.config.JtracConfigurer] - valid 'jtrac.home' property not available in 'jtrac-init.properties', trying system properties. 2008-05-21 09:32:25,601 [main] INFO [info.jtrac.config.JtracConfigurer] - valid 'jtrac.home' property not available in system properties, trying servlet init paramters. 2008-05-21 09:32:25,601 [main] WARN [info.jtrac.config.JtracConfigurer] - Servlet init paramter 'jtrac.home' does not exist. Will use 'user.home' directory '/home/user/.jtrac' 2008-05-21 09:32:25,601 [main] INFO [info.jtrac.config.JtracConfigurer] - directory does not exist, created '/home/user/.jtrac' 2008-05-21 09:32:25,601 [main] INFO [info.jtrac.config.JtracConfigurer] - directory does not exist, created '/home/user/.jtrac/attachments' 2008-05-21 09:32:25,602 [main] INFO [info.jtrac.config.JtracConfigurer] - directory does not exist, created '/home/user/.jtrac/indexes' 2008-05-21 09:32:25,602 [main] INFO [info.jtrac.config.JtracConfigurer] - properties file does not exist, created '/home/user/.jtrac/jtrac.properties' 2008-05-21 09:32:25,602 [main] INFO [info.jtrac.config.JtracConfigurer] - HSQLDB will be used. Finished creating '/home/user/.jtrac/jtrac.properties' 2008-05-21 09:32:25,603 [main] INFO [info.jtrac.config.JtracConfigurer] - found 'jtrac-version.properties' on classpath, processing... 2008-05-21 09:32:25,603 [main] INFO [info.jtrac.config.JtracConfigurer] - jtrac.version = '2.1.0' 2008-05-21 09:32:25,603 [main] INFO [info.jtrac.config.JtracConfigurer] - jtrac.timestamp = '200803022120' 2008-05-21 09:32:25,604 [main] INFO [info.jtrac.config.JtracConfigurer] - Loading properties file from file [/home/user/.jtrac/jtrac.properties] 2008-05-21 09:32:25,775 [main] INFO [info.jtrac.config.DataSourceFactoryBean] - embedded HSQLDB mode detected, switching on spring single connection data source 2008-05-21 09:32:28,679 [main] WARN [org.hibernate.util.JDBCExceptionReporter] - SQL Error: -22, SQLState: S0002 2008-05-21 09:32:28,679 [main] ERROR [org.hibernate.util.JDBCExceptionReporter] - Tabella non trovata in statement [select item0_.id as id0_, item0_.version as version0_, item0_.type as type0_, item0_.parent_id as parent4_0_, item0_.space_id as space5_0_, item0_.sequence_num as sequence6_0_, item0_.time_stamp as time7_0_, item0_.planned_effort as planned8_0_, item0_.logged_by as logged9_0_, item0_.assigned_to as assigned10_0_, item0_.summary as summary0_, item0_.detail as detail0_, item0_.status as status0_, item0_.severity as severity0_, item0_.priority as priority0_, item0_.cus_dbl_01 as cus16_0_, item0_.cus_dbl_02 as cus17_0_, item0_.cus_dbl_03 as cus18_0_, item0_.cus_int_01 as cus19_0_, item0_.cus_int_02 as cus20_0_, item0_.cus_int_03 as cus21_0_, item0_.cus_int_04 as cus22_0_, item0_.cus_int_05 as cus23_0_, item0_.cus_int_06 as cus24_0_, item0_.cus_int_07 as cus25_0_, item0_.cus_int_08 as cus26_0_, item0_.cus_int_09 as cus27_0_, item0_.cus_int_10 as cus28_0_, item0_.cus_str_01 as cus29_0_, item0_.cus_str_02 as cus30_0_, item0_.cus_str_03 as cus31_0_, item0_.cus_str_04 as cus32_0_, item0_.cus_str_05 as cus33_0_, item0_.cus_tim_01 as cus34_0_, item0_.cus_tim_02 as cus35_0_, item0_.cus_tim_03 as cus36_0_ from items item0_ where item0_.id=1] 2008-05-21 09:32:28,684 [main] WARN [info.jtrac.hibernate.HibernateJtracDao] - expected database schema does not exist, will create. Error is: could not execute query; nested exception is org.hibernate.exception.SQLGrammarException: could not execute query 2008-05-21 09:32:28,738 [main] INFO [info.jtrac.hibernate.SchemaHelper] - begin database schema creation ========================= create table attachments (id bigint generated by default as identity (start with 1), previous_id bigint, file_name varchar(255), file_prefix bigint, item_id bigint, primary key (id)) create table config (param varchar(255) not null, value varchar(255), primary key (param)) create table history (id bigint generated by default as identity (start with 1), version integer not null, type integer, item_id bigint not null, actual_effort double, attachment_id bigint, comment longvarchar, time_stamp timestamp, logged_by bigint not null, assigned_to bigint, summary varchar(255), detail longvarchar, status integer, severity integer, priority integer, cus_dbl_01 double, cus_dbl_02 double, cus_dbl_03 double, cus_int_01 integer, cus_int_02 integer, cus_int_03 integer, cus_int_04 integer, cus_int_05 integer, cus_int_06 integer, cus_int_07 integer, cus_int_08 integer, cus_int_09 integer, cus_int_10 integer, cus_str_01 varchar(255), cus_str_02 varchar(255), cus_str_03 varchar(255), cus_str_04 varchar(255), cus_str_05 varchar(255), cus_tim_01 timestamp, cus_tim_02 timestamp, cus_tim_03 timestamp, primary key (id)) create table item_items (id bigint generated by default as identity (start with 1), item_id bigint not null, related_item_id bigint not null, type integer, primary key (id)) create table item_tags (id bigint generated by default as identity (start with 1), tag_id bigint not null, type integer, item_id bigint, primary key (id)) create table item_users (id bigint generated by default as identity (start with 1), user_id bigint not null, type integer, item_id bigint, primary key (id)) create table items (id bigint generated by default as identity (start with 1), version integer not null, type integer, parent_id bigint, space_id bigint not null, sequence_num bigint, time_stamp timestamp, planned_effort double, logged_by bigint not null, assigned_to bigint, summary varchar(255), detail longvarchar, status integer, severity integer, priority integer, cus_dbl_01 double, cus_dbl_02 double, cus_dbl_03 double, cus_int_01 integer, cus_int_02 integer, cus_int_03 integer, cus_int_04 integer, cus_int_05 integer, cus_int_06 integer, cus_int_07 integer, cus_int_08 integer, cus_int_09 integer, cus_int_10 integer, cus_str_01 varchar(255), cus_str_02 varchar(255), cus_str_03 varchar(255), cus_str_04 varchar(255), cus_str_05 varchar(255), cus_tim_01 timestamp, cus_tim_02 timestamp, cus_tim_03 timestamp, primary key (id)) create table metadata (id bigint generated by default as identity (start with 1), version integer not null, type integer, name varchar(50), description longvarchar, parent_id bigint, xml_string longvarchar, primary key (id)) create table space_sequence (id bigint not null, next_seq_num bigint, primary key (id)) create table spaces (id bigint generated by default as identity (start with 1), version integer not null, type integer, prefix_code varchar(10), name varchar(50), description longvarchar, guest_allowed bit, metadata_id bigint, primary key (id), unique (prefix_code)) create table tags (id bigint generated by default as identity (start with 1), type integer, name varchar(255) not null, description longvarchar, primary key (id), unique (name)) create table user_space_roles (id bigint generated by default as identity (start with 1), user_id bigint, space_id bigint, role_key varchar(255) not null, primary key (id)) create table users (id bigint generated by default as identity (start with 1), type integer, parent bigint, login_name varchar(50) not null, name varchar(50), password varchar(255), email varchar(50), locale varchar(20), locked bit, metadata_id bigint, primary key (id), unique (login_name)) alter table attachments add constraint FKD3F3CBB0B57E4540 foreign key (item_id) references items alter table attachments add constraint FKD3F3CBB0761CC46C foreign key (previous_id) references attachments alter table history add constraint FK373FE4949F34E6BD foreign key (assigned_to) references users alter table history add constraint FK373FE494CD057065 foreign key (logged_by) references users alter table history add constraint FK373FE494B57E4540 foreign key (item_id) references items alter table history add constraint FK373FE494584066C0 foreign key (attachment_id) references attachments alter table item_items add constraint FK8B19EB94B57E4540 foreign key (item_id) references items alter table item_items add constraint FK8B19EB94AF302D2C foreign key (related_item_id) references items alter table item_tags add constraint FK806065C5B57E4540 foreign key (item_id) references items alter table item_tags add constraint FK806065C5AC3A5E54 foreign key (tag_id) references tags alter table item_users add constraint FK8BC291DCB57E4540 foreign key (item_id) references items alter table item_users add constraint FK8BC291DC2E9BEA40 foreign key (user_id) references users alter table items add constraint FK5FDE7C09F34E6BD foreign key (assigned_to) references users alter table items add constraint FK5FDE7C0CD057065 foreign key (logged_by) references users alter table items add constraint FK5FDE7C02EAA8854 foreign key (space_id) references spaces alter table items add constraint FK5FDE7C0B2C23C49 foreign key (parent_id) references items alter table metadata add constraint FKE52D7B2FD9D39965 foreign key (parent_id) references metadata alter table space_sequence add constraint FK5847EDAB4A0FA7B foreign key (id) references spaces alter table spaces add constraint FKCA95302D6205CC0 foreign key (metadata_id) references metadata alter table user_space_roles add constraint FK474D77D02EAA8854 foreign key (space_id) references spaces alter table user_space_roles add constraint FK474D77D02E9BEA40 foreign key (user_id) references users alter table users add constraint FK6A68E086205CC0 foreign key (metadata_id) references metadata alter table users add constraint FK6A68E08FC0C04DB foreign key (parent) references users 2008-05-21 09:32:28,857 [main] INFO [info.jtrac.hibernate.SchemaHelper] - end database schema creation =========================== 2008-05-21 09:32:28,857 [main] INFO [info.jtrac.hibernate.HibernateJtracDao] - inserting default admin user into database 2008-05-21 09:32:28,933 [main] INFO [info.jtrac.hibernate.HibernateJtracDao] - schema creation complete 2008-05-21 09:32:29,039 [main] INFO [info.jtrac.JtracImpl] - available locales configured {en=en - inglese, de=de - tedesco, el=el - greco, es=es - spagnolo, es_AR=es_AR - spagnolo (Argentina), es_MX=es_MX - spagnolo (Messico), fr=fr - francese, it=it - italiano, ja=ja - giapponese, nl=nl - neerlandese, pl=pl - polacco, pt_BR=pt_BR - portoghese (Brasile), ru=ru - russo, zh_CN=zh_CN - cinese (Cina), zh_TW=zh_TW - cinese (Taiwan)} 2008-05-21 09:32:29,061 [main] WARN [info.jtrac.mail.MailSender] - 'mail.server.host' config is null, mail sender not initialized 2008-05-21 09:32:29,061 [main] WARN [info.jtrac.JtracImpl] - invalid default locale configured = 'null', using en 2008-05-21 09:32:29,061 [main] INFO [info.jtrac.JtracImpl] - default locale set to 'en' 2008-05-21 09:32:29,063 [main] WARN [info.jtrac.JtracImpl] - invalid attachment max size 'null', using 5 2008-05-21 09:32:29,063 [main] INFO [info.jtrac.JtracImpl] - attachment max size set to 5 MB 2008-05-21 09:32:29,063 [main] WARN [info.jtrac.JtracImpl] - invalid session timeout 'null', using 30 2008-05-21 09:32:29,063 [main] INFO [info.jtrac.JtracImpl] - session timeout set to 30 minutes 2008-05-21 09:32:29,686 [main] INFO [info.jtrac.wicket.JtracApplication] - casProxyTicketValidator not found in application context, CAS single-sign-on is not being used 21-mag-2008 9.32.30 org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] 21-mag-2008 9.32.30 org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 21-mag-2008 9.32.30 org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 21-mag-2008 9.32.30 org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 21-mag-2008 9.32.30 org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 21-mag-2008 9.32.30 org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(/usr/java/apache-tomcat-5.5.23/webapps/standard-statistiche-web/WEB-INF/lib/servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class - Unable to find config file. Creating new servlet engine config file: /WEB-INF/server-config.wsdd - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. 21-mag-2008 9.32.31 org.apache.coyote.http11.Http11BaseProtocol start INFO: Starting Coyote HTTP/1.1 on http-8080 21-mag-2008 9.32.31 org.apache.jk.common.ChannelSocket init INFO: JK: ajp13 listening on /0.0.0.0:8009 21-mag-2008 9.32.31 org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/18 config=null 21-mag-2008 9.32.31 org.apache.catalina.storeconfig.StoreLoader load INFO: Find registry server-registry.xml at classpath resource 21-mag-2008 9.32.31 org.apache.catalina.startup.Catalina start INFO: Server startup in 13166 ms 2008-05-21 09:33:28,735 [http-8080-Processor24] INFO [info.jtrac.config.ProviderManagerFactoryBean] - not using ldap authentication 2008-05-21 09:33:51,334 [http-8080-Processor24] ERROR [org.apache.wicket.RequestCycle] - Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at component [MarkupContainer [Component id = form, page = info.jtrac.wicket.SpaceFieldListPage, path = 8:form.SpaceFieldListPage $SpaceFieldsForm, isVisible = true, isVersioned = true]] threw an exception org.apache.wicket.WicketRuntimeException: Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at component [MarkupContainer [Component id = form, page = info.jtrac.wicket.SpaceFieldListPage, path = 8:form.SpaceFieldListPage $SpaceFieldsForm, isVisible = true, isVersioned = true]] threw an exception at org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:194) at org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(ListenerInterfaceRequestTarget.java:73) at org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:90) at org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1166) at org.apache.wicket.RequestCycle.step(RequestCycle.java:1241) at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1316) at org.apache.wicket.RequestCycle.request(RequestCycle.java:493) at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:354) at org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:194) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870) at org.apache.coyote.http11.Http11BaseProtocol $Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:183) ... 26 more Caused by: java.lang.NoClassDefFoundError: org/jaxen/JaxenException at org.dom4j.xpath.DefaultXPath.parse(DefaultXPath.java:358) at org.dom4j.xpath.DefaultXPath.<init>(DefaultXPath.java:59) at org.dom4j.DocumentFactory.createXPath(DocumentFactory.java:230) at org.dom4j.tree.AbstractNode.createXPath(AbstractNode.java:207) at org.dom4j.tree.AbstractNode.selectNodes(AbstractNode.java:164) at info.jtrac.domain.WorkflowRenderer.stateExists(WorkflowRenderer.java:83) at info.jtrac.domain.WorkflowRenderer.addTransitions(WorkflowRenderer.java:93) at info.jtrac.domain.WorkflowRenderer.init(WorkflowRenderer.java:78) at info.jtrac.domain.WorkflowRenderer.<init>(WorkflowRenderer.java:46) at info.jtrac.wicket.SpacePermissionsPage $SpacePermissionsForm.<init>(SpacePermissionsPage.java:239) at info.jtrac.wicket.SpacePermissionsPage.<init>(SpacePermissionsPage.java:48) at info.jtrac.wicket.SpaceFieldListPage$SpaceFieldsForm $5.onSubmit(SpaceFieldListPage.java:192) at org.apache.wicket.markup.html.form.Form.delegateSubmit(Form.java:1322) at org.apache.wicket.markup.html.form.Form.onFormSubmitted(Form.java:776) ... 31 more [ERROR] The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService org.apache.axis2.AxisFault: The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:64) at org.apache.axis2.engine.Phase.invoke(Phase.java:333) at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:264) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:163) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:131) 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:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870) at org.apache.coyote.http11.Http11BaseProtocol $Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) [ERROR] The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService org.apache.axis2.AxisFault: The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:64) at org.apache.axis2.engine.Phase.invoke(Phase.java:333) at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:264) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:163) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:131) 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:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870) at org.apache.coyote.http11.Http11BaseProtocol $Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) [ERROR] The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService org.apache.axis2.AxisFault: The service cannot be found for the endpoint reference (EPR) http://192.168.0.64:8080/axis2/services/DynPkgOTAService at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:64) at org.apache.axis2.engine.Phase.invoke(Phase.java:333) at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:264) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:163) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:131) 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:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870) at org.apache.coyote.http11.Http11BaseProtocol $Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool $ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ j-trac-users mailing list j-trac-users@... https://lists.sourceforge.net/lists/listinfo/j-trac-users |
| Free embeddable forum powered by Nabble | Forum Help |