Discussion:
OrderProcess fails with Payment error
(too old to reply)
d***@blueyonder.co.uk
2006-10-27 09:04:18 UTC
Permalink
Hi all,

Haven't posted for a few days, but have run up against another wcs v6 ee odditity.

I have this problem, the orderprocess fails, but this only occurs in one extended site, other extended sites are fine. I've check the policy table and entries are the same.

The errors being thrown are with com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl and DoPaymentActionsCompatiblePolicyCmdImpl

I'm using the out of the box offline v6 payment plugin, here are some highlights from the trace.out, any ideas?

One more questions, what's happened to the source code in v6, in 5.6.1, i'd go and look at the source for DoPaymentCLCmdImpl performExecute to give me hints, but can't find the source in the v6 development environment, are we back to the days of decompiling code?

[27/10/06 09:50:12:453 BST] 0000008f CommerceSrvr E com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl performExecute CMN0409E: The following error has occurred during processing: {0}.
[27/10/06 09:50:12:484 BST] 0000008f CommerceSrvr E DoPaymentActionsCompatiblePolicyCmdImpl performExecute() CWXCP3061E: Failed when do DoPaymentActionsPolicyCmd
Correlation Identity: 28304cd0-6598-11db-aba9-83cd4541b86f
Additional Data:
null
Current exception:
Message:
_ERR_GENERIC
Stack trace:
com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.
at com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl.performExecute(DoPaymentCLCmdImpl.java:300)

//edited//

[27/10/06 09:50:12:516 BST] 0000008f CommerceSrvr E com.ibm.commerce.event.impl.ECEventUtilities raiseCommonBaseEvent(CommonBaseEvent cbe) CMN0409E: The following error has occurred during processing: {0}.java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

//edited//

Caused by: com.ibm.commerce.exception.ECSystemException: Failed when do DoPaymentActionsPolicyCmd
at com.ibm.commerce.payment.actions.commands.DoPaymentActionsCompatiblePolicyCmdImpl.performExecute(DoPaymentActionsCompatiblePolicyCmdImpl.java:418)

//edited//

[27/10/06 09:50:12:547 BST] 0000008f CommerceSrvr E com.ibm.commerce.command.ECCommandTarget executeCommand CMN0420E: The following command exception has occurred during processing: "java.lang.RuntimeException: com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.".java.lang.RuntimeException: com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.
at com.ibm.commerce.event.impl.ECEventPublisherImpl.publishEventSynchronously(ECEventPublisherImpl.java:89)
geo
2006-10-31 15:27:37 UTC
Permalink
No source any more. V6 was a major rewrite in a number of areas including
the one you mention. Many of the V6 commands do not decompile completely,
but I do not recall if this is one of them.

This looks like a data error. I would look at the policies for the store
having the error.
Post by d***@blueyonder.co.uk
Hi all,
Haven't posted for a few days, but have run up against another wcs v6 ee odditity.
I have this problem, the orderprocess fails, but this only occurs in one
extended site, other extended sites are fine. I've check the policy table
and entries are the same.
The errors being thrown are with
com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl and
DoPaymentActionsCompatiblePolicyCmdImpl
I'm using the out of the box offline v6 payment plugin, here are some
highlights from the trace.out, any ideas?
One more questions, what's happened to the source code in v6, in 5.6.1,
i'd go and look at the source for DoPaymentCLCmdImpl performExecute to
give me hints, but can't find the source in the v6 development
environment, are we back to the days of decompiling code?
[27/10/06 09:50:12:453 BST] 0000008f CommerceSrvr E
com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl performExecute
CMN0409E: The following error has occurred during processing: {0}.
[27/10/06 09:50:12:484 BST] 0000008f CommerceSrvr E
Failed when do DoPaymentActionsPolicyCmd
Correlation Identity: 28304cd0-6598-11db-aba9-83cd4541b86f
null
_ERR_GENERIC
com.ibm.commerce.exception.ECSystemException: The following error has
occurred during processing: {0}.
at
com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl.performExecute(DoPaymentCLCmdImpl.java:300)
//edited//
[27/10/06 09:50:12:516 BST] 0000008f CommerceSrvr E
com.ibm.commerce.event.impl.ECEventUtilities
raiseCommonBaseEvent(CommonBaseEvent cbe) CMN0409E: The following error
{0}.java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
//edited//
Caused by: com.ibm.commerce.exception.ECSystemException: Failed when do
DoPaymentActionsPolicyCmd
at
com.ibm.commerce.payment.actions.commands.DoPaymentActionsCompatiblePolicyCmdImpl.performExecute(DoPaymentActionsCompatiblePolicyCmdImpl.java:418)
//edited//
[27/10/06 09:50:12:547 BST] 0000008f CommerceSrvr E
com.ibm.commerce.command.ECCommandTarget executeCommand CMN0420E: The
com.ibm.commerce.exception.ECSystemException: The following error has
occurred during processing: {0}.
at
com.ibm.commerce.event.impl.ECEventPublisherImpl.publishEventSynchronously(ECEventPublisherImpl.java:89)
d***@blueyonder.co.uk
2006-11-01 08:48:15 UTC
Permalink
thanks for this, bit of a gutter at the lack of source combined with the sketchy documentation you sometimes get in the information center! yeah, agree must be data driven as store specific, but haven't tracked it down yet (has slipped down the list as this is still in development!)...
d***@blueyonder.co.uk
2006-11-01 17:31:07 UTC
Permalink
after looking and looking again, indeed, was a typo between the store policy entry and the entry in payment plugin xml (SimpleOfflinePlugin.xml)

thanks for the input!

Robert Brown
2006-11-01 15:34:34 UTC
Permalink
I'll throw out a guess based on your comment with extended site. I'm
still ramping up on v6 in many areas.

All extended sites (hosted stores) leverage the STOREREL table in their
definition of shared assets with other stores. Perhaps there is a
difference between the working extended stores and the one that doesn't
in STOREREL since there are classes referencing contract (that include
payment policies) in the STRELTYP table.

R
Post by d***@blueyonder.co.uk
Hi all,
Haven't posted for a few days, but have run up against another wcs v6 ee odditity.
I have this problem, the orderprocess fails, but this only occurs in one extended site, other extended sites are fine. I've check the policy table and entries are the same.
The errors being thrown are with com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl and DoPaymentActionsCompatiblePolicyCmdImpl
I'm using the out of the box offline v6 payment plugin, here are some highlights from the trace.out, any ideas?
One more questions, what's happened to the source code in v6, in 5.6.1, i'd go and look at the source for DoPaymentCLCmdImpl performExecute to give me hints, but can't find the source in the v6 development environment, are we back to the days of decompiling code?
[27/10/06 09:50:12:453 BST] 0000008f CommerceSrvr E com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl performExecute CMN0409E: The following error has occurred during processing: {0}.
[27/10/06 09:50:12:484 BST] 0000008f CommerceSrvr E DoPaymentActionsCompatiblePolicyCmdImpl performExecute() CWXCP3061E: Failed when do DoPaymentActionsPolicyCmd
Correlation Identity: 28304cd0-6598-11db-aba9-83cd4541b86f
null
_ERR_GENERIC
com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.
at com.ibm.commerce.payment.commands.DoPaymentCLCmdImpl.performExecute(DoPaymentCLCmdImpl.java:300)
//edited//
[27/10/06 09:50:12:516 BST] 0000008f CommerceSrvr E com.ibm.commerce.event.impl.ECEventUtilities raiseCommonBaseEvent(CommonBaseEvent cbe) CMN0409E: The following error has occurred during processing: {0}.java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
//edited//
Caused by: com.ibm.commerce.exception.ECSystemException: Failed when do DoPaymentActionsPolicyCmd
at com.ibm.commerce.payment.actions.commands.DoPaymentActionsCompatiblePolicyCmdImpl.performExecute(DoPaymentActionsCompatiblePolicyCmdImpl.java:418)
//edited//
[27/10/06 09:50:12:547 BST] 0000008f CommerceSrvr E com.ibm.commerce.command.ECCommandTarget executeCommand CMN0420E: The following command exception has occurred during processing: "java.lang.RuntimeException: com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.".java.lang.RuntimeException: com.ibm.commerce.exception.ECSystemException: The following error has occurred during processing: {0}.
at com.ibm.commerce.event.impl.ECEventPublisherImpl.publishEventSynchronously(ECEventPublisherImpl.java:89)
d***@blueyonder.co.uk
2006-11-01 17:30:08 UTC
Permalink
thanks for these pointers, good info to have, have now resolved it, was a typo between the store policy entry and the entry in payment plugin xml (SimpleOfflinePlugin.xml)

once again, thanks for the input though, yeah find myself on a learning curve again with v6!
Loading...