Differences between revisions 1 and 2
Revision 1 as of 2011-12-10 04:20:01
Size: 535
Editor: 165-242
Comment: Python Remoting
Revision 2 as of 2011-12-10 04:27:31
Size: 337
Editor: 165-242
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
        public string base64Encode(string data)
        {
            try
            {
                byte[] encData_byte = new byte[data.Length];
                encData_byte = System.Text.Encoding.UTF8.GetBytes(data);
                string encodedData = Convert.ToBase64String(encData_byte);
                return encodedData;
            }
            catch (Exception e)
            {
                throw new Exception("Error in base64Encode" + e.Message);
            }
        }
== pyBead Description ==
Line 16: Line 3:


Convert.FromBase64String
Web server based python object transport. This is a CGI script / MOD_WSGI script that allows you to remote your own code through Apache or other web servers. Example client runs best with urllib3 for persistence however will also work with standard library urllib2. Turn Apache into your application server.

pyBead Description

Web server based python object transport. This is a CGI script / MOD_WSGI script that allows you to remote your own code through Apache or other web servers. Example client runs best with urllib3 for persistence however will also work with standard library urllib2. Turn Apache into your application server.

pyBead (last edited 2011-12-10 04:28:13 by 165-242)

Unable to edit the page? See the FrontPage for instructions.