How To Trim the extra data that CCF2.6 injects into the query string
1- Writing a web adapter
public override bool DoAction(Microsoft.Ccf.Csr.HostedWebApplication.WebAction action,ref string data)
{
data = System.Web.HttpUtility.UrlEncode(data);
return base.DoAction (action, ref data);
}
2- In the agent desktop config file : <addkey=”EmptyParamData” value=”true” />
If you want to know all the parameters of the Agent Desktop please have a look on app.config.localfor example