From: Nishanth Aravamudan <[email protected]> In FC18, the AfeClient-shell fails to launch for a couple of different reasons. First, the dev jar is gwt-dev.jar not gwt-dev-linux.jar. Second, the HostedMode instance is actually running on port 8888 by default, not 8000.
Signed-off-by: Nishanth Aravamudan <[email protected]> Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- frontend/client/AfeClient-shell | 2 +- frontend/client/EmbeddedTkoClient-shell | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/client/AfeClient-shell b/frontend/client/AfeClient-shell index 04293e8..139854b 100755 --- a/frontend/client/AfeClient-shell +++ b/frontend/client/AfeClient-shell @@ -1,4 +1,4 @@ #!/bin/sh APPDIR=`dirname $0`; GWTDIR=`$APPDIR/gwt_dir`; -java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-incubator.jar" com.google.gwt.dev.HostedMode -ea -startupUrl http://localhost:8000/afe/server/autotest.AfeClient/AfeClient.html "$@" autotest.AfeClient +java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-dev.jar:$GWTDIR/gwt-incubator.jar" com.google.gwt.dev.HostedMode -startupUrl http://localhost:8888/afe/server/autotest.AfeClient/AfeClient.htm diff --git a/frontend/client/EmbeddedTkoClient-shell b/frontend/client/EmbeddedTkoClient-shell index 9239fff..1a33b04 100755 --- a/frontend/client/EmbeddedTkoClient-shell +++ b/frontend/client/EmbeddedTkoClient-shell @@ -1,4 +1,4 @@ #!/bin/sh APPDIR=`dirname $0`; GWTDIR=`$APPDIR/gwt_dir`; -java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-incubator.jar" com.google.gwt.dev.HostedMode -ea -startupUrl http://localhost:8000/new_tko/server/autotest.EmbeddedTkoClient/EmbeddedTkoClientTest.html "$@" autotest.EmbeddedTkoClient +java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-dev.jar:$GWTDIR/gwt-incubator.jar" com.google.gwt.dev.HostedMode -startupUrl http://localhost:8888/new_tko/server/autotest.EmbeddedTkoClient/EmbeddedTkoClientTest.html -- 1.8.1.2 _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
