I get this error after a fresh setup of the startersite, when i test if the diffrent webservices are running.
Server Error in '/OrdersWebService' Application.
Commerce Server 2007
I get this error after a fresh setup of the startersite, when i test if the diffrent webservices are running.
Server Error in '/OrdersWebService' Application.
Philip,
There's a web.config setting packaged up with both the CSharpSite and the StarterSite pup files which has an external database dependency. The offending line of code appears as follows:
<
orders honorStatus="true" newOrderStatus="NewOrder" sqlCommandTimeoutSeconds="60" sqlLongRunningCommandTimeoutSeconds="28800">I typically fix this by opening up SQL Server Management Studio and expanding the [Site Name]_transactionsconfig database. In a complete site installation, you'll see the following records in the AllowedStatus table:
Cancelled |
InProcess |
NewOrder |
Rejected |
Shipped |
Submitted |
In your case, you're just going to be greeted with NULL. Just go ahead and type NewOrder into that null record and hit enter, and your error should be fixed.
Works like a charm :)
Best Regards
Philip