Yes thats the same thread I just posted, I think things are getting confused though due to google changing their groups layout Just save this to a asmx file <%@ WebService Language="C#" Class="RDCMSXMLServer" %> using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols;
[WebService(Namespace = "http://your.site.com/path/")] //[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class RDCMSXMLServer : System.Web.Services.WebService { [WebMethod] public string Execute(string RQLQuery, ref string RQLError) { Type RdXmlServerType = Type.GetTypeFromProgID("RDCMSServer.XmlServer"); object RdXmlServer = Activator.CreateInstance(RdXmlServerType); object[] Arguments = { RQLQuery, RQLError }; return RdXmlServerType.InvokeMember("Execute", System.Reflection.BindingFlags.InvokeMethod, null, RdXmlServer, Arguments).ToString(); } } Then put that in the same folder as teh other RQL soap services Call the execute method on teh in teh same way you would using teh Rqlservice, but this service will return all teh information the Loginservice/RqlService should (but doesnt) -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en.
