1

我将 Tomcat 配置为应用程序服务器,使用 Eclipse 和 oData Web 服务的 Tridion 部署程序。我在tomcat中部署了两个应用程序,TridionUpload和cd_webservice。现在我可以成功发布了。但我无法找到已发布的 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"/>
4

1 回答 1

7

您能否检查 typeMapping 节点,例如 -

<ItemTypes defaultStorageId="defaultdb" cached="false">
<Item typeMapping="Page" cached="false" storageId="defaultFile">
<Publication Id="XYZ" defaultStorageId="brokerFile" cached="false"></Publication>
</Item>

如果您没有指定<Item typeMapping="Page“,默认情况下页面将进入数据库,这里是“defaultdb”。

于 2012-10-10T12:56:16.860 回答