Jian,
Thanks for the code workaround.
Everyone,
Jian developed a code workaround for our problem that can be messing up 
other plugins installed at this version of WSM. The RQL Connector was 
failing to recognize SSL applied to the calling program. A line of code 
needs to be commented out and replaced with a hard code assignment in the 
plugin file //rqlconnector/rqlactionwebservce.aspx. Apply this to all your 
troubled plugins and see if this works.
Here's the code snippet:
 private string SendRqlToWebService(string Rql)
{
if (string.IsNullOrEmpty(Rql))
return "";
 //string WebServiceUri = GetWebServiceUrl();
string WebServiceUri = 
"*https://localhost/cms/WebService/RqlWebService.svc*<https://localhost/cms/WebService/RqlWebService.svc>
";
 string Response = SendRqlToWebService(WebServiceUri, Rql);
 return Response;
}

-- 
You received this message because you are subscribed to the Google Groups 
"RedDot CMS Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/reddot-cms-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to