api - org.mule.module.launcher.DeploymentInitException: SAXParseException: Premature end of file -


i using mule api gateway , have deployed package in it. in api gateway org.mule.module.launcher.deploymentinitexception: saxparseexception: premature end of file.

i have tried in version 1.3.0 , 3.8.0. in both got same error.

please me.

file :

<http:connector name="httpconnector" />  <esper:config name="espermodule" configuration="esper-config.xml" />  <mxml:dom-to-xml-transformer name="domtoxmltransformer" />  <flow name="websocket-esper-bridge">     <http:inbound-endpoint address="niohttp://localhost:8080/websocket/events"         exchange-pattern="one-way">         <http:websocket path="events" />     </http:inbound-endpoint>     <custom-processor         class="com.mulesoft.demo.mule.websocket.esperwebsocketupdatelistener">         <spring:property name="espermodule" ref="espermodule" />         <spring:property name="httpconnector" ref="httpconnector" />         <spring:property name="domtoxmltransformer" ref="domtoxmltransformer" />     </custom-processor> </flow>  <flow name="signupeventsgenerator">     <poll frequency="3000">         <set-payload value="&lt;signup id='fake' /&gt;"/>     </poll>      <mxml:xml-to-dom-transformer returnclass="org.w3c.dom.document" />     <esper:send eventname="signupevent" eventpayload-ref="#[message.payload]" /> </flow> 

this current known issue 3.8.0. error not descriptive means missing schema declaration component. post entire xml file contents? it's 1 you're using, http, esper, mxml. hth


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -