Date Posted:
Product: E-Notebook Enterprise
Product: E-Notebook Enterprise
Problem:
After migrating our ELN system to a different server we get the following error in Waiting Documents for every ELN user.
"Error Initializing Field Waiting Documents: The underlying connection was closed: An unexpected error occurred on a receive."
Solution:
A possible cause for this is that the ELN_PARAMETERS table is still pointing to the old server. In order to fix this do the following:
1- Connect to SQL Plus as system
2- Execute
ALTER table ELNShema.ELN_PARAMETERS disable all triggers;
UPDATE ELNShema.ELN_PARAMETERS set data=’http://newservername/csdocstore/csdocstore.asmx?WSDL’ where name=’lta_wsdlfile’;
ALTER table ELNShema.ELN_PARAMETERS enable all triggers;
Comments
0 comments
Article is closed for comments.