phpgroupware-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Phpgroupware-developers] XML RPX in PHPGroupware


From: Shajee
Subject: Re: [Phpgroupware-developers] XML RPX in PHPGroupware
Date: Fri, 18 Jun 2004 05:02:46 -0700

Dear Markus
Hello!
                        I a trying to excess other methods(notes) using xml
rpc after sucessfully calling the login method. I am sending the sessionid &
kp3 as http headers to phpgroupware\xmlrpc.php. However it's returning back

"Fault Response: 1001 Session expired"

What could be the reason. Is there any specific way of sending the sessionid
for authentification. I think for going further into query data from phpgw
the sessionid & kp3 have to authenticated at each subsequent calls.

Below is the code snippet that i am using

[XmlRpcMethod("notes.bonotes.listmethods")]
  public XmlRpcStruct listmethods()
  {
   return (XmlRpcStruct)xmlRpcClient.Invoke(this,"listmethods");


  }


  private void Button1_Click(object sender, System.EventArgs e)
  {
   try
   {

   //sessionid & kp3 id being saved in session variables on login call
    string sessionid = Session["sessionid"].ToString();
   string kp3 = Session["kp3"].ToString();
    string http_auth;
    http_auth= sessionid+":"+kp3;
    xmlRpcClient.Headers.Add(http_auth);

    XmlRpcStruct valueStr;
    valueStr = listmethods();
    Response.Write(valueStr);

   }

   catch (Exception  ex)
   {

    Response.Write(ex.Message);

   }
  }

Thanks & Regards
Shajee




reply via email to

[Prev in Thread] Current Thread [Next in Thread]