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

  • SEARCH
  • Home
  • 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 7855855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T20:30:32+00:00 2026-06-02T20:30:32+00:00

I’m trying to a build a Red5 server sample using the tutorial here .

  • 0

I’m trying to a build a Red5 server sample using the tutorial here. I have done all the things including adding red5.jar, commons-logging-1.1.1.jar but when i try to build the my own jar file using ant I get the following errors!

Buildfile: C:\Users\MediaStudio\workspace\Sample\build.xml
clean:
compile:
    [javac] C:\Users\MediaStudio\workspace\Sample\build.xml:8: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 1 source file to C:\Users\MediaStudio\workspace\Sample\classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.5
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:4: error: package org.apache.commons.logging does not exist
    [javac] import org.apache.commons.logging.Log;
    [javac]                                  ^
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:5: error: package org.apache.commons.logging does not exist
    [javac] import org.apache.commons.logging.LogFactory;
    [javac]                                  ^
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:6: error: package org.red5.server.adapter does not exist
    [javac] import org.red5.server.adapter.ApplicationAdapter;
    [javac]                               ^
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:7: error: package org.red5.server.api does not exist
    [javac] import org.red5.server.api.IConnection;
    [javac]                           ^
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:8: error: package org.red5.server.api does not exist
    [javac] import org.red5.server.api.IScope;
    [javac]                           ^
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:12: error: cannot find symbol
    [javac] public class Application extends ApplicationAdapter{
    [javac]                                  ^
    [javac]   symbol: class ApplicationAdapter
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:14: error: cannot find symbol
    [javac] private static final Log log = LogFactory.getLog(Application.class);
    [javac]                      ^
    [javac]   symbol:   class Log
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:17: error: cannot find symbol
    [javac] public boolean appStart(IScope app){
    [javac]                         ^
    [javac]   symbol:   class IScope
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:26: error: cannot find symbol
    [javac] public boolean roomStart(IScope room){
    [javac]                          ^
    [javac]   symbol:   class IScope
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:35: error: cannot find symbol
    [javac] public boolean roomConnect(IConnection conn, Object params[]){
    [javac]                            ^
    [javac]   symbol:   class IConnection
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:44: error: cannot find symbol
    [javac] public void roomDisconnect(IConnection conn){
    [javac]                            ^
    [javac]   symbol:   class IConnection
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:50: error: cannot find symbol
    [javac] public void appDisconnect(IConnection conn){
    [javac]                           ^
    [javac]   symbol:   class IConnection
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:14: error: cannot find symbol
    [javac] private static final Log log = LogFactory.getLog(Application.class);
    [javac]                                ^
    [javac]   symbol:   variable LogFactory
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:18: error: cannot find symbol
    [javac] if(super.appStart(app) == false){
    [javac]    ^
    [javac]   symbol:   variable super
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:27: error: cannot find symbol
    [javac] if(super.roomStart(room) == false){
    [javac]    ^
    [javac]   symbol:   variable super
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:36: error: cannot find symbol
    [javac] if(super.roomConnect(conn, params) == false){
    [javac]    ^
    [javac]   symbol:   variable super
    [javac]   location: class Application
    [javac] C:\Users\MediaStudio\workspace\Sample\src\org\xyz\Application.java:45: error: cannot find symbol
    [javac] super.roomDisconnect(conn);
    [javac] ^
    [javac]   symbol:   variable super
    [javac]   location: class Application
    [javac] 17 errors
    [javac] 1 warning

BUILD FAILED
C:\Users\MediaStudio\workspace\Sample\build.xml:8: Compile failed; see the compiler error output for details.

I’m using the classic version of Eclipse (not sure if it’s important or not but!)

  • 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-06-02T20:30:34+00:00Added an answer on June 2, 2026 at 8:30 pm

    I solved this problem by adding the classpath attribute to the javac command inside the build file pointing to the right jar files like the line below:

    classpath="${lib.dir}/red5.jar:${lib.dir}/commons-logging-1.1.1.jar"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
We're building an app, our first using Rails 3, and we're having to build
I have a text area in my form which accepts all possible characters from
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have thousands of HTML files to process using Groovy/Java and I need to
I am trying to loop through a bunch of documents I have to put
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i

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.