Tomcat をアプリケーション サーバーとして構成し、Eclipse と oData Web サービスを使用して Tridion デプロイヤーを構成しました。Tomcat に TridionUpload と cd_webservice の 2 つのアプリケーションをデプロイしました。これで無事公開できました。しかし、公開された html ページを見つけることができません。公開されたページを表示するにはどうすればよいですか? 助けてください。
TridionUpload アプリケーションの cd_storage_config.xml での構成:
<Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="defaultFile" defaultFilesystem="false">
<Root Path="D:\Tridion\Temp" />
<!--<Root Path="c:\temp"/>-->
</Storage>
<Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="defaultDataFile" defaultFilesystem="true" defaultStorage="true">
<Root Path="D:\Tridion\Temp\Data" />
<!--<Root Path="c:\temp\data"/>-->
</Storage>
<Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="tomcatFS" defaultFilesystem="false">
<Root Path="D:\Program Files (x86)\apache-tomcat-6.0.35\webapps" />
</Storage>
cd_deployer_config.xml での構成:
<Queue>
<Location Path="D:\Tridion\ContentDelivery_Incoming\TridionUpload" WindowSize="20" Workers="10" Cleanup="true" Interval="2s"/>
<!--<Location Path="c:\tridion\work\http" WindowSize="10" Workers="10" Cleanup="true" Interval="30s"/> -->
</Queue>
<!-- Configure the HTTPSReceiver to store incoming package in specified location, and configure if deployer should run in process -->
<HTTPSReceiver MaxSize="10000000" Location="D:/Tridion/ContentDelivery_Incoming/TridionUpload" InProcessDeploy="true"/>