To configure custom web forms for .NET 4:
-
Use
WorkflowGen.My.dll
in version 3.x. -
Use a .NET 4 application pool.
-
Define or update the following nodes in the web form’s
web.config
:<configuration> <system.web> <httpRuntime requestValidationMode="2.0"></httpRuntime> <pages validateRequest="false" enableSessionState="true" clientIDMode="AutoID" controlRenderingCompatibilityVersion="3.5"></pages> </system.web> </configuration>
-
If your web form’s authentication mode is configured with the built-in WorkflowGen authentication, then make sure to use the
Advantys.My.dll
andAdvantys.Security.dll
files from version 6.x in the web form’s\bin
folder.
Note: These instructions apply only to configuring web forms to run properly without configuration errors. They do not cover potential migration or compatibility issues that may arise due to changes in the latest version of WorkflowGen.My. You must fully retest all of your web forms before production.