Hey
I also experienced problems when trying to use the original build.xml, given
with the red5 0.6RC2.
When I try to use "ant server" on a clean installation of Red5 0.6RC2 it
fails:
Output:
    [echo] java.home is C:\Programme\Java\jdk1.5.0_09\jre and the target
version is 1.6

clean:
  [delete] Deleting directory E:\server\Red5\webapps\echo\WEB-INF\classes
  [delete] Deleting directory E:\server\Red5\webapps\echo\WEB-INF\lib
  [delete] Deleting directory
E:\server\Red5\webapps\fitcDemo\WEB-INF\classes
  [delete] Deleting directory E:\server\Red5\webapps\fitcDemo\WEB-INF\lib
  [delete] Deleting directory
E:\server\Red5\webapps\oflaDemo\WEB-INF\classes
  [delete] Deleting directory E:\server\Red5\webapps\oflaDemo\WEB-INF\lib
  [delete] Deleting directory E:\server\Red5\webapps\test\WEB-INF\classes
  [delete] Deleting directory E:\server\Red5\webapps\test\WEB-INF\lib
  [delete] Deleting directory
E:\server\Red5\webapps\tutorial\WEB-INF\classes
  [delete] Deleting directory E:\server\Red5\webapps\tutorial\WEB-INF\lib

prepare:
   [mkdir] Created dir: E:\server\Red5\bin
   [mkdir] Created dir: E:\server\Red5\dist
   [mkdir] Created dir: E:\server\Red5\bin\testcases
   [mkdir] Created dir: E:\server\Red5\bin\testcases\testreports
   [mkdir] Created dir: E:\server\Red5\webapps\echo\WEB-INF\classes
   [mkdir] Created dir: E:\server\Red5\webapps\echo\WEB-INF\lib
   [mkdir] Created dir: E:\server\Red5\webapps\fitcDemo\WEB-INF\classes
   [mkdir] Created dir: E:\server\Red5\webapps\fitcDemo\WEB-INF\lib
   [mkdir] Created dir: E:\server\Red5\webapps\oflaDemo\WEB-INF\classes
   [mkdir] Created dir: E:\server\Red5\webapps\oflaDemo\WEB-INF\lib
   [mkdir] Created dir: E:\server\Red5\webapps\test\WEB-INF\classes
   [mkdir] Created dir: E:\server\Red5\webapps\test\WEB-INF\lib
   [mkdir] Created dir: E:\server\Red5\webapps\tutorial\WEB-INF\classes
   [mkdir] Created dir: E:\server\Red5\webapps\tutorial\WEB-INF\lib

-java6.check:

-junit.check:

compile:
    [echo] Javac version: 1.6
    [echo] Compiler adapter name: modern
    [echo] java.home is C:\Programme\Java\jdk1.5.0_09\jre and the target
version is 1.6

compile_core:
    [echo] java.home is C:\Programme\Java\jdk1.5.0_09\jre and the target
version is 1.6

compile_core_compatibility:
   [javac] Compiling 366 source files to E:\server\Red5\bin
   [javac] javac: invalid target release: 1.6
   [javac] Usage: javac <options> <source files>
   [javac] where possible options include:
   [javac]   -g                         Generate all debugging info
   [javac]   -g:none                    Generate no debugging info
   [javac]   -g:{lines,vars,source}     Generate only some debugging info
   [javac]   -nowarn                    Generate no warnings
   [javac]   -verbose                   Output messages about what the
compiler is doing
   [javac]   -deprecation               Output source locations where
deprecated APIs are used
   [javac]   -classpath <path>          Specify where to find user class
files
   [javac]   -cp <path>                 Specify where to find user class
files
   [javac]   -sourcepath <path>         Specify where to find input source
files
   [javac]   -bootclasspath <path>      Override location of bootstrap
class files
   [javac]   -extdirs <dirs>            Override location of installed
extensions
   [javac]   -endorseddirs <dirs>       Override location of endorsed
standards path
   [javac]   -d <directory>             Specify where to place generated
class files
   [javac]   -encoding <encoding>       Specify character encoding used by
source files
   [javac]   -source <release>          Provide source compatibility with
specified release
   [javac]   -target <release>          Generate class files for specific
VM version
   [javac]   -version                   Version information
   [javac]   -help                      Print a synopsis of standard
options
   [javac]   -X                         Print a synopsis of nonstandard
options
   [javac]   -J<flag>                   Pass <flag> directly to the runtime
system


BUILD FAILED
E:\server\Red5\build.xml:150: The following error occurred while executing
this line:
E:\server\Red5\build.xml:303: Compile failed; see the compiler error output
for details.

Total time: 5 seconds

Content of these lines:
Line 150: <antcall target="compile_core_compatibility" inheritAll="true"
inheritRefs="true" />
Line 303: />
Line 303 in context:
<target name="compile_core_compatibility" unless="java6.installed">
       <javac
           sourcepath=""
           srcdir="${src.dir}"
           destdir="${classes.dir}"
           classpathref="project_compatibility.classpath"

           optimize="${build.optimize}"
           verbose="${build.verbose}"
           fork="${build.fork}"
           nowarn="${build.nowarn}"
           deprecation="${build.deprecation}"

           debug="${debug.state}"
           compiler="${compiler}"
           source="${java.target_version}"
           target="${java.target_version}"
           memoryMaximumSize="1024m"
           excludes="**/*.jsp,com/sun/**,org/red5/server/script/**"
           listfiles="false"
           />   !THIS IS LINE 303!
   </target>

I don't know what i did wrong,

Max

On 3/31/07, Max Gieselmann <[EMAIL PROTECTED]> wrote:

Hey,
thank you, for your fast response but (I don't know why) the space does
not exist in my local sourcecode.
So the problem persists anymore.

Max


On 3/31/07, Manuel R.G. <[EMAIL PROTECTED]> wrote:
>
> Hi Max, if you copied/pasted your flash code, next line will never
> return true:
>
>     if(info.code == "NetConnection.Connect.Success ")
>
> since ".Success " is followed by a space.
> If so, try removing that space first...
>
> Hope this was the problem
>
> 2007/3/30, Max Gieselmann <[EMAIL PROTECTED]>:
> > Hey,
> >  I just wanted to make the little application, described in the
> > HOWTO-NewApplications.txt.
> >  For creating this application I used Eclipse and did not experience
> any
> > Problems.
> > I named this project "vc".
> >
> > My weapps structure looks like this:
> > webapps
> > -vc
> > --WEB-INF
> > ---src
> > ----vc
> > -----application.java
> > ---classes
> > ----vc
> > -----application.class
> > ---build.xml
> > ---log4j.properties
> > ---red5-web.properties
> > ---red5-web.xml
> > ---web.xml
> >
> > I also edited the last four config files. But I am not really sure
> whether
> > my beans are correct, so I will attach this file at the end of this
> mail.
> > The build.xml exactly contains what I read here:
> > http://www.mail-archive.com/[email protected]/msg05546.html.
> > I changed the value for target.jar from "nameofyourapp.jar" to "vc.jar".
> >
> > When I execute ant it says:
> > Buildfile: build.xml
> >
> > build:
> >
> > BUILD SUCCESSFUL
> > Total time: 2 seconds
> >
> > Sounds good ;).
> >
> > I restarted my Red5 server, and created a Flashapplication:
> >
> > nc = new NetConnection();
> > nc.connect("rtmp://localhost/vc");
> > RunCode = function(){
> > nc.call("add", nc, 1, 2);
> > }
> > nc.onStatus = function(info){
> >     if(info.code == "NetConnection.Connect.Success "){
> >          connect.text="verbunden";
> >            RunCode();
> >     }
> > }
> >
> > But I cannot establish a Netconnection to the vc applikation.
> Establishing a
> > Netconnection to one of the demoapplications works fine. So there is
> no
> > general error in my Red5 configuration.
> >
> > I think there is a mistake i made because I did not understood what I
> was
> > doing ;).
> >
> > Thank you very much,
> > Max
> >
> > red5-web.xml:
> > <?xml version="1.0" encoding="UTF-8"?>
> > <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "
> > http://www.springframework.org/dtd/spring-beans.dtd";>
> > <beans>
> >
> >     <bean id="placeholderConfig"
> > class="
> org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
> > ">
> >         <property name="location" value="/WEB-INF/red5-web.properties"
> />
> >     </bean>
> >
> >     <bean id="web.context" class=" org.red5.server.Context "
> >         autowire="byType" />
> >
> >     <bean id="web.scope" class="org.red5.server.WebScope"
> >          init-method="register">
> >         <property name="server" ref=" red5.server" />
> >         <property name="parent" ref="global.scope" />
> >         <property name="context" ref=" web.context" />
> >         <property name="handler" ref=" web.handler" />
> >         <property name="contextPath" value="${webapp.contextPath}" />
> >         <property name="virtualHosts" value="${ webapp.virtualHosts}"
> />
> >     </bean>
> >
> >     <bean id="web.handler"
> >         class="org.red5.server.webapp.vc.application"
> >         singleton="true" />
> >
> >     <!-- this will support calling methods through
> "myhandler.<methodName>"
> >     <bean id="myhandler.service"
> >         class="the.path.to.my.ServiceHandler "
> >         singleton="true" /> -->
> >
> > </beans>
> >
> >
> >
> > _______________________________________________
> > Red5 mailing list
> > [email protected]
> > http://osflash.org/mailman/listinfo/red5_osflash.org
> >
> >
>
> _______________________________________________
> Red5 mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/red5_osflash.org
>


_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to