VijayaR
2006-12-14 02:38:10 UTC
Our client is at WC 5.6.1. When they try to use "OrderItemMove" command, they get 404 on "/OrderItemMove".
Below is the code snippet they are using to invoke the URL. This code works fine on a development machine, but not in a staging environment(which is an AIX box, WC, WAS are at the same level as the working box). This command is registered in URLREG and CMDREG tables, my client does not have any custom logic for "OrderItemMove".
Note: In the below snippet, I added extra space between <c: and param for readability...
-----------------------------------------------------------
<c:url var="MoveURL" value="OrderItemMove">
<c: param name="deleteIfEmpty" value="*" />
<c: param name="fromOrderId" value="*" />
<c: param name="toOrderId" value="." />
<c: param name="inAllocate" value="*n" />
<c: param name="inBackorder" value="*n" />
<c: param name="inRemerge" value="*" />
<c: param name="inMerge" value="*n" />
<c: param name="inReverse" value="*" />
<c: param name="outAllocate" value="*n" />
<c: param name="outBackorder" value="*n" />
<c: param name="outRemerge" value="*" />
<c: param name="outMerge" value="*n" />
<c: param name="outReverse" value="*" />
<c: param name="storeId" value="${storeId}" />
<c: param name="catalogId" value="${catalogId}" />
<c: param name="URL" value="OrderItemDisplay?storeId=${storeId}&catalogId=${catalogId}&orderId=.&orderItemId*
=&quantity*=" />
</c:url>
<meta http-equiv="Refresh" content="0;URL= <c:out value="${MoveURL}" />"/>
-----------------------------------------------------------
When this symptom occurs, there are no errors in the JVM logs.
Any ideas??
-thanks
Below is the code snippet they are using to invoke the URL. This code works fine on a development machine, but not in a staging environment(which is an AIX box, WC, WAS are at the same level as the working box). This command is registered in URLREG and CMDREG tables, my client does not have any custom logic for "OrderItemMove".
Note: In the below snippet, I added extra space between <c: and param for readability...
-----------------------------------------------------------
<c:url var="MoveURL" value="OrderItemMove">
<c: param name="deleteIfEmpty" value="*" />
<c: param name="fromOrderId" value="*" />
<c: param name="toOrderId" value="." />
<c: param name="inAllocate" value="*n" />
<c: param name="inBackorder" value="*n" />
<c: param name="inRemerge" value="*" />
<c: param name="inMerge" value="*n" />
<c: param name="inReverse" value="*" />
<c: param name="outAllocate" value="*n" />
<c: param name="outBackorder" value="*n" />
<c: param name="outRemerge" value="*" />
<c: param name="outMerge" value="*n" />
<c: param name="outReverse" value="*" />
<c: param name="storeId" value="${storeId}" />
<c: param name="catalogId" value="${catalogId}" />
<c: param name="URL" value="OrderItemDisplay?storeId=${storeId}&catalogId=${catalogId}&orderId=.&orderItemId*
=&quantity*=" />
</c:url>
<meta http-equiv="Refresh" content="0;URL= <c:out value="${MoveURL}" />"/>
-----------------------------------------------------------
When this symptom occurs, there are no errors in the JVM logs.
Any ideas??
-thanks