Symptoms
After upgrading to K2 4.6.11, although Smartforms loads; all controls are not populating with data. SmartObjects does execute successfully from the SmartObject Service Tester tool and return data. The following error is logged:
00339: "68924345","2016-06-28 14:12:08","Error","","1034","","SourceCode.Hosting.Server.Runtime.HostServerBroker.InternalMarshal","1034 Logging Framework Error, MsgID=1034 (Message Not Found)","system","::1","DLX:c:program files (x86)k2 blackpearlhost serverBin","68924345","2969c74c74d44a7ab362e49ff3cb98a7",""
Diagnoses
The <connectionStrings /> section in the web.config file for the Designer and Runtime site was missing the HostServer connection string.
Resolution
The HostServer connection string was added to the empty <connectionStrings /> section as follow:
Empty node:
<connectionStrings />
Changed to:
<connectionStrings>
<add name="HostServer" connectionString="Integrated=True;IsPrimaryLogin=True;Authenticate=True;EncryptedPassword=False;Host=k2.denallix.com;Port=5555" />
</connectionStrings>