So, I'm trying to get the ant task deployed using the new fangled
stuff; It seems to fail horribly :(

Here is some of the (pertinent) output from the ant task:

resin-deploy:

BUILD FAILED
com.caucho.bam.RemoteConnectionFailedException: Failed to upgrade to HMTP
X


        at com.caucho.bam.hmtp.HmtpClient.connectImpl(HmtpClient.java:230)
        at com.caucho.bam.hmtp.HmtpClient.connect(HmtpClient.java:161)
        at com.caucho.server.admin.DeployClient.<init>(DeployClient.java:78)
        at com.caucho.ant.ResinDeploy.execute(ResinDeploy.java:145)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)


Here is what I am doing in my build file:
        <target name="resin-deploy" depends="war">
            <taskdef name="resin-deploy" classname="com.caucho.ant.ResinDeploy">
                <classpath>
                      <fileset dir="lib">
                          <include name="**"/>
                      </fileset>
                <fileset dir="${resin.dir}/lib/">
                                <include name="**"/>
                </fileset>
                </classpath>
            </taskdef>
                
                <resin-deploy warfile="${build.war.file}" server="127.0.0.1"
                         port="6800" user="admin" password="admin" />
        </target>

This is what is going on in the output of resin (not very interesting):

[09-05-05 00:02:46.941] {hmux-127.0.0.1:6800-3} TcpConnection[id=3,]
starting connection
TcpConnection[id=hmux-127.0.0.1:6800-3,null,ACCEPT], total=5
[09-05-05 00:02:46.941] {hmux-127.0.0.1:6800-3} Hmux[3] start request
[09-05-05 00:02:46.941] {hmux-127.0.0.1:6800-3} Hmux[3] channel-r 20302
[09-05-05 00:02:46.941] {hmux-127.0.0.1:6800-3} Hmux[3] N 17731
[09-05-05 00:03:52.456] {hmux-127.0.0.1:6800-3} Hmux[3] interrupted keepalive
[09-05-05 00:03:52.456] {hmux-127.0.0.1:6800-3} Hmux[3] close stream
[09-05-05 00:03:52.456] {hmux-127.0.0.1:6800-3} Hmux[3] X-w: exit socket

Any help would be appreciated :)

Thanks in advance,
Scott


_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to