使用apache tomcat 7服务器部署Worklight V6项目

时间:2013-11-06 12:44:12

标签: ibm-mobilefirst

我正在使用worklight v6.0,apache tomcat 7.0和MySQL 5.5.24。我用android环境创建了一个示例应用程序,并将整个项目导出为war文件。我已经使用下面的ant脚本部署了。

Ant-Script.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="install">
<taskdef resource="com/worklight/ant/defaults.properties">
 <classpath>
  <pathelement location="C:/Program Files/IBM/Worklight_6/WorklightServer/worklight-ant.jar"/>
 </classpath>
</taskdef>

<target name="databases">
<configuredatabase kind="Worklight">
  <mysql database="WRKLGHT" server="{IP Address}" user="worklight" password="worklight">
    <dba user="root" password=""/>
    <client hostname="{IP Address}"/>        
  </mysql>
  <driverclasspath>
    <pathelement location="E:/mysql-connector-java-5.1.8-bin.jar"/>
  </driverclasspath>
</configuredatabase>
<configuredatabase kind="WorklightReports">
  <mysql database="WLREPORT" server="{IP Address}" user="worklight" password="worklight">
    <dba user="root" password=""/>
    <client hostname="{IP Address}"/>        
  </mysql>
  <driverclasspath>
    <pathelement location="E:/mysql-connector-java-5.1.8-bin.jar"/>
  </driverclasspath>
</configuredatabase>
</target>

<target name="install">
<configureapplicationserver shortcutsDir="/tmp/shortcuts">
  <project warfile="E:/war_files/TestApps.war"/>
  <!-- Here you can define values which override the 
       default values of Worklight configuration properties -->
  <property name="serverSessionTimeout" value="10"/> 
  <applicationserver>
    <tomcat installdir="E:/apache-tomcat-7.0.30"/>
  </applicationserver>
  <database kind="Worklight">
    <mysql database="WRKLGHT" server="{IP Address}" user="worklight" password="worklight"/>
    <driverclasspath>
      <pathelement location="E:/mysql-connector-java-5.1.8-bin.jar"/>
    </driverclasspath>
  </database>
  <database kind="WorklightReports">
    <mysql database="WLREPORT" server="{IP Address}" user="worklight"  password="worklight"/>
    <driverclasspath>
      <pathelement location="E:/mysql-connector-java-5.1.8-bin.jar"/>
    </driverclasspath>
  </database>
 </configureapplicationserver>
</target>  
</project>

使用此脚本取得成功后。

我试过这个网址“http:// {IP Address}:8088 / worklight /”

但我没有得到任何输出。它显示没有内容的移动浏览器模拟器。 帮助我解决这个问题。

提前致谢!

1 个答案:

答案 0 :(得分:0)

我不太关注...如果你访问了这个你提到的网址,你就会收到错误(!)。在Worklight 6.0中使用的正确URL是:http://{ip-address}:8088/worklight/console

只有这样才能进入Worklight Console,您可以从中预览应用程序。

另请注意,Worklight 6.0中的默认端口为10080,因此如果您打算使用8088,请确保已相应更新相关属性。