Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6741553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:44:18+00:00 2026-05-26T11:44:18+00:00

i am attempting to create my first mule server but i get an error

  • 0

i am attempting to create my first mule server but i get an error for any external scheme i try and include,

my Config file is as follows (working on Eclipse Indigo with mule standalone 3.2 installation):

<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:spring="http://www.springframework.org/schema/beans"
      xmlns:http="http://www.mulesoft.org/schema/mule/http"
      xmlns:vm="http://www.mulesoft.org/schema/mule/vm"
      xmlns:quartz="http://www.mulesoft.org/schema/mule/quartz"
      xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.2/mule.xsd
                  http://www.mulesoft.org/schema/mule/quartz http://www.mulesoft.org/schema/mule/quartz/current/mule-quartz.xsd
        http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/3.2/mule-http.xsd
        http://www.mulesoft.org/schema/mule/vm http://www.mulesoft.org/schema/mule/vm/3.2/mule-vm.xsd">


    <flow name="ChatListener">
        <quartz:inbound-endpoint jobName="eventTimer" repeatInterval="2000">
            <quartz:event-generator-job>
                <quartz:payload>Poll Chat DB</quartz:payload>
            </quartz:event-generator-job>
        </quartz:inbound-endpoint>
        <component>
            <singleton-object class="com.TimeLineListener.ChatListener" />
        </component>
        <vm:outbound-endpoint path="ChatMsgs" exchange-pattern="one-way"/>
    </flow>

    <flow name="TimeLineMsgSender">
        <composite-source>
            <!-- Incoming Chat Msgs -->
            <vm:inbound-endpoint path="ChatMsgs" exchange-pattern="one-way"/>

            <!-- Incoming SIEM Msgs -->
            <vm:inbound-endpoint path="SIEMMsgs" exchange-pattern="one-way"/>

            <!-- Incoming NMS Msgs -->
            <vm:inbound-endpoint path="NMSMsgs" exchange-pattern="one-way"/>
        </composite-source>

            <!-- Tested OutPut endpoint -->
         <stdio:outbound-endpoint system="OUT"/>


    </flow>


</mule>

and the errors i recieve are:

1.
The prefix "stdio" for element "stdio:outbound-endpoint" is not bound.  mule-config.xml ‪/ChatTester‬   line 41 XML Problem

2.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'vm:inbound-endpoint'. One of '{"http://www.mulesoft.org/schema/mule/core":abstract-inbound-endpoint}' is expected. mule-config.xml ‪/ChatTester‬   line 31 XML Problem

3.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'quartz:inbound-endpoint'. One of '{"http://www.mulesoft.org/schema/mule/core":description, "http://www.mulesoft.org/schema/mule/core":composite-source, "http://www.mulesoft.org/schema/mule/core":abstract-inbound-endpoint, "http://www.mulesoft.org/schema/mule/core":abstract-message-processor, "http://www.mulesoft.org/schema/mule/core":abstract-outbound-endpoint, "http://www.mulesoft.org/schema/mule/core":response}' is expected. mule-config.xml ‪/ChatTester‬   line 17 XML Problem

any idea what i”m doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T11:44:19+00:00Added an answer on May 26, 2026 at 11:44 am
    1.
    The prefix "stdio" for element "stdio:outbound-endpoint" is not bound.      mule-config.xml &#8234;/ChatTester&#8236;       line 41 XML Problem
    

    This one is easy: you’re missing the stdio namespace declaration.

    2.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'vm:inbound-endpoint'. One of '{"http://www.mulesoft.org/schema/mule/core":abstract-inbound-endpoint}' is expected. mule-config.xml &#8234;/ChatTester&#8236;       line 31 XML Problem
    
    3.
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'quartz:inbound-endpoint'. One of '{"http://www.mulesoft.org/schema/mule/core":description, "http://www.mulesoft.org/schema/mule/core":composite-source, "http://www.mulesoft.org/schema/mule/core":abstract-inbound-endpoint, "http://www.mulesoft.org/schema/mule/core":abstract-message-processor, "http://www.mulesoft.org/schema/mule/core":abstract-outbound-endpoint, "http://www.mulesoft.org/schema/mule/core":response}' is expected.     mule-config.xml &#8234;/ChatTester&#8236;       line 17 XML Problem
    

    For these ones: I don’t know. Maybe due to the mix of “current” and “3.2” you’re using in the namespace locations? Try only with “3.2” instead of current to see if it helps.

    Otherwise, nothing visibly crazy in your config 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was attempting to create a swap file: mkswap -f /var/swap I get "/var/swap
I'm attempting to create my first real C# application - a small pet project
I'm attempting to create my first WCF service. I've created the service and now
I'm attempting to create a client/server web-app. The client software is written in Objective-C
I'm attempting to create a table with the first cell left justified, and all
I am attempting to create a linked server from a 2005 to 2008 Microsoft
I'm attempting to create a simple example that would just alert the first 5
I am attempting to create my first OS-level GUI using wxPython. I have the
I am attempting to create my first ever app to be tested/deployed via: XCode
I'm attempting to create a custom calendar control that inherits from ASP.Net's built in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.