We are having several branches in our Teamsite and under each branch we have the same set of categories and datatypes.
The flow for our application is invoking of DCT from a JSP
using a CCI URL which takes SequenceNumber as parameter
in the queryString.
We tried doing the following
(1)
http://kceist02/iw/webdesk/newdcr?&SequenceNumber=1000117&iw_tdt=DCT/LeafPage&area_path=/default/main/sprint/sales_and_marketing/businesswholesale/Local_Business/WORK/Marketing/Marketing_Communications/WORKAREA/Marketing_Communications_WA We get the right workarea but we loose the sequenceNumber passed as queryString.
The reason being it internally redirects to
http://kceist02/iw/webdesk/templating/DatacaptureServletwhich does not forward our variable.
So we tried using the second option
(2)
http://kceist02/iw/webdesk/templating/DatacaptureServlet/newdcr?iw_tdt=DCT/LeafPage&iw_action=newdcr&area_path=/default/main/sprint/sales_and_marketing/businesswholesale/Local_Business/WORK/Marketing/Marketing_Communications/WORKAREA/Marketing_Communications_WA&SequenceNumber=1000122 Using this we loose the work area to which we want to redirect and frequently errors out with message
Category DCT does not exist in workarea /default/main/sprint/sales_and_marketing/businesswholesale/Local_Business/WORK/Marketing/Marketing_Communications/WORKAREA/Marketing_Communications_WA
As u see the error and the address URL do not have any co-relation.
Please let me if u have come across similar problem.