[mule-user] Endpoint not found issue in the case of embeding mule in a webapp-mule3.2.1

281 views
Skip to first unread message

chris chris

unread,
Jan 8, 2012, 4:25:01 PM1/8/12
to us...@mule.codehaus.org
I am a newbie to mule world and was trying to embed mule in a web application and I was getting endpoint not found issue.
Using mule 3.2.1 version.

I could have used only servlet transport since it was not working, I've also tried the HTTP transport configuration.

*web.xml*

<!-- The Mule configuration is provided as a context parameter -->
<context-param>
<param-name>org.mule.config</param-name>
<param-value>/WEB-INF/mule-config.xml</param-value>
</context-param>

<!-- This listener will start up Mule inside the webapp -->
<listener>
<listener-class>org.mule.config.builders.MuleXmlBuilderContextListener</listener-class>
</listener>

<servlet>
<servlet-name>muleReceiverServlet</servlet-name>
<servlet-class>org.mule.transport.servlet.MuleReceiverServlet</servlet-class>
<load-on-startup>1</load-on-startup>

Responses from the servlet are of type HTML by default
<init-param>
<param-name>org.mule.servlet.default.content.type</param-name>
<param-value>text/html</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>muleReceiverServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>


*WEB-INF/mule-config.xml*

<servlet:connector name="servletConnector" servletUrl="http://localhost:8080" />
<servlet:endpoint name="inBound" path="name" connector-ref="servletConnector"/>

<flow name="flow1">
<servlet:inbound-endpoint ref="inBound" path="name" address="servlet://name" transformer-refs="HttpRequestToNameString" />
<echo-component/>
<file:outbound-endpoint path="C:\tmp" outputPattern="echo1#[function:datestamp]" />
</flow>

I was trying to hit the following url from browser to see if I can debug any of the transformers, but I was always getting the
following error.

http://localhost:8080/mule-integration-webapp/services/?name=foo

message: Endpoint "name" not found
org.mule.api.transport.NoReceiverForEndpointException: Endpoint "name" not found
at org.mule.transport.servlet.MuleReceiverServlet.getReceiverForURI(MuleReceiverServlet.java:267)
at org.mule.transport.servlet.MuleReceiverServlet.doAllMethods(MuleReceiverServlet.java:218)
at org.mule.transport.servlet.MuleReceiverServlet.doGet(MuleReceiverServlet.java:168)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
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.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
at java.lang.Thread.run(Thread.java:662)

Thanks in advance.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email


David Dossot

unread,
Jan 8, 2012, 4:58:06 PM1/8/12
to us...@mule.codehaus.org
Keep your web.xml as is then use this for mule-config.xml:

<flow name="flow1">
           <servlet:inbound-endpoint  path="name"  transformer-refs="HttpRequestToNameString" />
          <echo-component/>
           <file:outbound-endpoint      path="C:\tmp"    outputPattern="echo1#[function:datestamp]" />
</flow>

(no need for the global endpoint nor connector)

With this in place try:

http://localhost:8080/mule-integration-webapp/services/name?name=foo

HTH
D.

chris chris

unread,
Jan 9, 2012, 2:12:46 AM1/9/12
to us...@mule.codehaus.org
Hi David,

Tried with the following configuration as you suggested. It still getting the same error.

<flow name="flow1">
<servlet:inbound-endpoint path="name" transformer-refs="HttpRequestToNameString" />
<echo-component/>

<file:outbound-endpoint path="C:\Downloads" outputPattern="echo1#[function:datestamp]" />
</flow>
<custom-transformer name="HttpRequestToNameString" class="org.mule.example.hello.HttpRequestToNameString"/>


Thanks

David Dossot

unread,
Jan 9, 2012, 12:24:24 PM1/9/12
to us...@mule.codehaus.org
Hey Chris,

I took the time to test your configuration (ie. web.xml + below Mule config) and all is running fine.

Can you please share the log file that shows Mule's initialization + one failed call to your service?

Cheers,
D.

chris chris

unread,
Jan 10, 2012, 11:22:50 AM1/10/12
to us...@mule.codehaus.org
David,

Do you see any issues in the attached log?

David Dossot

unread,
Jan 10, 2012, 11:26:48 AM1/10/12
to us...@mule.codehaus.org
The attachment was lost in space: I didn't receive it here. Pastebin?

chris chris

unread,
Jan 10, 2012, 11:59:18 AM1/10/12
to us...@mule.codehaus.org
Here is mule initialization log.


2012-01-09 11:12:43,470 WARN [org.apache.activemq.store.jdbc.JDBCPersistenceAdapter] Database lock driver override not found for : [apache_derby_embedded_jdbc_driver]. Will use default implementation.
2012-01-09 11:12:43,476 INFO [org.apache.activemq.store.jdbc.DefaultDatabaseLocker] Attempting to acquire the exclusive lock to become the Master broker
2012-01-09 11:12:43,501 INFO [org.apache.activemq.store.jdbc.DefaultDatabaseLocker] Becoming the master on dataSource: org.apache.derby.jdbc.EmbeddedDataSource@43a142ec
2012-01-09 11:12:43,520 INFO [org.apache.activemq.broker.BrokerService] ActiveMQ 5.3.0 JMS Message Broker (mops.broker) is starting
2012-01-09 11:12:43,520 INFO [org.apache.activemq.broker.BrokerService] For help or more information please see: http://activemq.apache.org/
2012-01-09 11:12:58,496 ERROR [STDERR] SLF4J: Class path contains multiple SLF4J bindings.
2012-01-09 11:12:58,496 ERROR [STDERR] SLF4J: Found binding in [jar:file:/C:/jboss-4.2.3.GA-jdk6/server/slim/tmp/deploy/tmp5192398956830899452mops-mule-integration-webapp-exp.war/WEB-INF/lib/mule-module-logging-3.2.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
2012-01-09 11:12:58,496 ERROR [STDERR] SLF4J: Found binding in [jar:file:/C:/jboss-4.2.3.GA-jdk6/server/slim/tmp/deploy/tmp5192398956830899452mops-mule-integration-webapp-exp.war/WEB-INF/lib/slf4j-log4j12-1.5.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
2012-01-09 11:12:58,497 ERROR [STDERR] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2012-01-09 11:12:58,854 INFO [STDOUT] JRebel-Log4j: Starting to monitor Log4j configuration file at file:/C:/mdworkspace1/mops-mule-integration-webapp/target/classes/log4j.properties
2012-01-09 11:12:59,437 INFO [org.apache.activemq.store.journal.JournalPersistenceAdapter] Journal Recovery Started from: Active Journal: using 5 x 20.0 Megs at: C:\jboss-4.2.3.GA-jdk6\data\journal
2012-01-09 11:12:59,525 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] ConfigureListener.contextInitialized(/mops-mule-integration-webapp)
2012-01-09 11:12:59,525 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.displayConfiguration' - DISABLED
2012-01-09 11:12:59,525 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.validateXml' - DISABLED
2012-01-09 11:12:59,525 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.verifyObjects' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.forceLoadConfiguration' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableHtmlTagLibValidator' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.preferXHTML' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.compressViewState' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.compressJavaScript' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.externalizeJavaScript' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.sendPoweredByHeader' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableJSStyleHiding' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableScriptsInAttributeValues' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.writeStateAtFormEnd' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableLazyBeanValidation' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enabledLoadBundle11Compatibility' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableRestoreView11Compatibility' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.serializeServerState' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.enableViewStateIdRendering' - ENABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.registerConverterPropertyEditors' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.disableUnicodeEscaping' - DISABLED
2012-01-09 11:12:59,526 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1021: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.developmentMode' - DISABLED
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'javax.faces.STATE_SAVING_METHOD' set to 'server'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'javax.faces.DEFAULT_SUFFIX' set to '.jsp'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.numberOfViewsInSession' set to '15'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.numberOfLogicalViews' set to '15'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.injectionProvider' set to 'org.jboss.web.jsf.integration.injection.JBossInjectionProvider'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.responseBufferSize' set to '1024'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.clientStateWriteBufferSize' set to '8192'
2012-01-09 11:12:59,527 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] JSF1018: [/mops-mule-integration-webapp] Configuration option 'com.sun.faces.expressionFactory' set to 'com.sun.el.ExpressionFactoryImpl'
2012-01-09 11:12:59,542 DEBUG [javax.enterprise.resource.webcontainer.jsf.config] No FacesServlet found in deployment descriptor - bypassing configuration
2012-01-09 11:13:04,364 INFO [STDOUT] [01-09 11:13:04] INFO AbstractLifecycleManager [main]: Initialising RegistryBroker
2012-01-09 11:13:04,788 INFO [STDOUT] [01-09 11:13:04] INFO MuleApplicationContext [main]: Refreshing org.mule.config.spring.MuleApplicationContext@5dccb1dd: startup date [Mon Jan 09 11:13:04 PST 2012]; root of context hierarchy
2012-01-09 11:13:05,978 INFO [org.apache.activemq.store.journal.JournalPersistenceAdapter] Journal Recovered: 0 message(s) in transactions recovered.
2012-01-09 11:13:06,094 INFO [org.apache.activemq.broker.TransportConnector] Connector vm://localhost Started
2012-01-09 11:13:06,095 INFO [org.apache.activemq.broker.BrokerService] ActiveMQ JMS Message Broker (mops.broker, ID:krishna-pc-49823-1326136363567-0:0) started
2012-01-09 11:13:06,098 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'org.apache.activemq.xbean.XBeanBrokerService#0'
2012-01-09 11:13:06,103 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Returning cached instance of singleton bean 'lifecycleProcessor'
2012-01-09 11:13:06,113 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Returning cached instance of singleton bean 'org.apache.activemq.xbean.XBeanBrokerService#0'
2012-01-09 11:13:07,100 INFO [STDOUT] [01-09 11:13:07] INFO DecoratingAnnotatedServiceProcessor [main]: org.mule.config.AnnotationsParserFactory implementation not found in registry, annotations not enabled
2012-01-09 11:13:16,437 INFO [STDOUT] [01-09 11:13:16] INFO DecoratingAnnotatedServiceProcessor [main]: org.mule.config.AnnotationsParserFactory implementation not found in registry, annotations not enabled
2012-01-09 11:13:19,685 INFO [STDOUT] [01-09 11:13:19] INFO AutoConfigurationBuilder [main]: Configured Mule using "org.mule.config.builders.WebappMuleXmlConfigurationBuilder" with configuration resource(s): "[ConfigResource{resourceName='/WEB-INF/mule-config.xml'}]"
2012-01-09 11:13:19,691 INFO [STDOUT] [01-09 11:13:19] INFO TransactionalQueueManager [main]: Starting ResourceManager
2012-01-09 11:13:19,693 INFO [STDOUT] [01-09 11:13:19] INFO TransactionalQueueManager [main]: Started ResourceManager
2012-01-09 11:13:19,705 INFO [STDOUT] [01-09 11:13:19] INFO WrapperManagerAgent [main]: This JVM hasn't been launched by the wrapper, the agent will not run.
2012-01-09 11:13:19,851 INFO [STDOUT] [01-09 11:13:19] INFO DefaultMuleContext [main]:
**********************************************************************
* Application: MopsMuleServer *
* OS encoding: Cp1252, Mule encoding: UTF-8 *
* *
* Agents Running: *
* JMX Agent *
**********************************************************************
2012-01-09 11:13:19,853 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] Adding header name: X-Powered-By='Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181439)/JBossWeb-2.0'
2012-01-09 11:13:19,884 INFO [STDOUT] [01-09 11:13:19] INFO MuleReceiverServlet [main]: Default request timeout for GET methods is: 10000
2012-01-09 11:13:19,885 INFO [STDOUT] [01-09 11:13:19] INFO MuleReceiverServlet [main]: feedback is set to: true
2012-01-09 11:13:19,885 INFO [STDOUT] [01-09 11:13:19] INFO MuleReceiverServlet [main]: Default content type is: text/html
2012-01-09 11:13:19,885 INFO [STDOUT] [01-09 11:13:19] INFO MuleReceiverServlet [main]: Using payload param name: payload
2012-01-09 11:13:48,253 INFO [STDOUT] [01-09 11:13:48] INFO AbstractLifecycleManager [main]: Initialising connector: _generatedServletConnector
2012-01-09 11:13:48,333 INFO [STDOUT] [01-09 11:13:48] INFO ServletConnector [main]: Connected: ServletConnector
{
name=_generatedServletConnector
lifecycle=initialise
this=71fda7c
numberOfConcurrentTransactedReceivers=4
createMultipleTransactedReceivers=true
connected=true
supportedProtocols=[servlet, servlet:http, servlet:https]
serviceOverrides=<none>
}
2012-01-09 11:13:48,334 INFO [STDOUT] [01-09 11:13:48] INFO ServletConnector [main]: Starting: ServletConnector
{
name=_generatedServletConnector
lifecycle=initialise
this=71fda7c
numberOfConcurrentTransactedReceivers=4
createMultipleTransactedReceivers=true
connected=true
supportedProtocols=[servlet, servlet:http, servlet:https]
serviceOverrides=<none>
}
2012-01-09 11:13:48,339 INFO [STDOUT] [01-09 11:13:48] INFO AbstractLifecycleManager [main]: Starting connector: _generatedServletConnector
2012-01-09 11:13:48,351 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Initialized: {WebApplication: /C:/jboss-4.2.3.GA-jdk6/server/slim/tmp/deploy/tmp5192398956830899452mops-mule-integration-webapp-exp.war/, URL: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/tmp/deploy/tmp5192398956830899452mops-mule-integration-webapp-exp.war/, classLoader: java.net.FactoryURLClassLoader@27082c55:654847061} jboss.web:j2eeType=WebModule,name=//localhost/mops-mule-integration-webapp,J2EEApplication=none,J2EEServer=none
2012-01-09 11:13:48,351 DEBUG [org.jboss.web.WebModule] Started jboss.web.deployment:war=mops-mule-integration-webapp.war,id=-772942854
2012-01-09 11:13:48,351 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.web.deployment:war=mops-mule-integration-webapp.war,id=-772942854 dependent components: []
2012-01-09 11:13:48,359 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: mops-mule-integration-webapp.war
2012-01-09 11:13:48,359 DEBUG [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/mops-mule-integration-webapp.war
2012-01-09 11:13:48,359 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Watch URL for: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/mops-mule-integration-webapp.war -> file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/mops-mule-integration-webapp.war
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment (init step) of package at: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.JARDeployer] No META-INF or WEB-INF resource found, assuming it if for us
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.MainDeployer] using deployer org.jboss.deployment.JARDeployer@4069b25f
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.JARDeployer] looking for nested deployments in : file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,360 DEBUG [org.jboss.deployment.DeploymentInfo] createLoaderRepository from config: LoaderRepositoryConfig(repositoryName: JMImplementation:service=LoaderRepository,name=Default, repositoryClassName: null, configParserClassName: null, repositoryConfig: null)
2012-01-09 11:13:48,361 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@4edfe491, cl=org.jboss.mx.loading.UnifiedClassLoader3@4e0b495e{ url=file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/ ,addedOrder=0}
2012-01-09 11:13:48,361 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@4edfe491, cl=org.jboss.mx.loading.UnifiedClassLoader3@4e0b495e{ url=file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/ ,addedOrder=0}
2012-01-09 11:13:48,361 DEBUG [org.jboss.mx.loading.UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@4e0b495e{ url=file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/ ,addedOrder=0}
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] found 0 subpackages of file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] Watching new file: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] create step for deployment file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying deploy.last
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: deploy.last
2012-01-09 11:13:48,361 DEBUG [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,362 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Watch URL for: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/ -> file:/C:/jboss-4.2.3.GA-jdk6/server/slim/deploy/deploy.last/
2012-01-09 11:13:48,362 DEBUG [org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread] Notified that enabled: true
2012-01-09 11:13:48,362 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Started jboss.deployment:type=DeploymentScanner,flavor=URL
2012-01-09 11:13:48,363 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.deployment:type=DeploymentScanner,flavor=URL dependent components: []
2012-01-09 11:13:48,467 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: jboss-service.xml
2012-01-09 11:13:48,467 DEBUG [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-4.2.3.GA-jdk6/server/slim/conf/jboss-service.xml
2012-01-09 11:13:48,468 DEBUG [org.jboss.web.tomcat.service.JBossWeb] Saw org.jboss.system.server.started notification, starting connectors
2012-01-09 11:13:48,469 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Mon, 9 Jan 2012 11:13:48>
2012-01-09 11:13:48,469 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2012-01-09 11:13:48,471 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2012-01-09 11:13:48,472 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2012-01-09 11:13:48,488 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
2012-01-09 11:13:48,527 INFO [org.apache.coyote.ajp.AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
2012-01-09 11:13:48,554 INFO [org.jboss.system.server.Server] JBoss (MX MicroKernel) [4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181439)] Started in 2m:53s:175ms
2012-01-09 11:16:13,571 INFO [STDOUT] [01-09 11:16:13] ERROR MuleReceiverServlet [http-127.0.0.1-8080-3]: message: Endpoint "name" not found

2012-01-09 11:16:19,168 INFO [STDOUT] [01-09 11:16:19] ERROR MuleReceiverServlet [http-127.0.0.1-8080-1]: message: Endpoint "name" not found

---------------------------------------------------------------------

David Dossot

unread,
Jan 10, 2012, 12:09:06 PM1/10/12
to us...@mule.codehaus.org
Thanks!

Argl, Mule is logging in STDOUT and not at DEBUG level :(

What URL do you hit to try the service?

D.

chris chris

unread,
Jan 10, 2012, 12:40:35 PM1/10/12
to us...@mule.codehaus.org

David Dossot

unread,
Jan 10, 2012, 1:05:41 PM1/10/12
to us...@mule.codehaus.org
That is correct.

Beats me then :(

The only difference is that I run your config on Jetty but that shouldn't make a difference for a simple web-app like that.

As a last resort: could you make your WAR available somewhere for download so I can peek in it / try it?

D.

chris chris

unread,
Jan 10, 2012, 2:25:54 PM1/10/12
to us...@mule.codehaus.org
David,

I've sent you an email with uploaded war location details.
Let me know if you have any accessing issues.

Thanks

David Dossot

unread,
Jan 10, 2012, 6:13:47 PM1/10/12
to us...@mule.codehaus.org
OK so for the list's sake the issue was due to the fact the Spring 3.1.0.RELEASE was used. Please stick to Spring 3.0.x for Mule 3.2.1.

D.

chris chris

unread,
Jan 10, 2012, 6:33:04 PM1/10/12
to us...@mule.codehaus.org
Thanks Chris. Amazing find.
Reply all
Reply to author
Forward
0 new messages