Search code examples
tridiontridion-2011

Not able to locate the published html page from Tridion


I configured Tomcat as application server, Tridion deployer using eclipse and oData Web Service. I deployed two application in tomcat, TridionUpload and cd_webservice. Now I could publish successfully. But I am not able to locate the published html page. How can I view the published page? Please help.

Configuration in cd_storage_config.xml in TridionUpload application:

<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>

Configuration in 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"/>

Solution

  • Could you please check typeMapping node for example -

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

    if you have not specified the <Item typeMapping="Page",by default page will go in to the database here it is "defaultdb".