Difference between revisions of "C"
From Rackspace Email & Apps API
(New page: public string LoginUserWebmail(string domain,string user)<br> {<br> string s="";<br> int r;<br> <br> try {<br> // This calls your SOAP method<br> r=obj.LoginUserWebmail(reseller_username,r...) |
(No difference)
|
Latest revision as of 15:56, 25 August 2008
public string LoginUserWebmail(string domain,string user)
{
string s="";
int r;
try {
// This calls your SOAP method
r=obj.LoginUserWebmail(reseller_username,reseller_password,domain,user,refs);
if (r == 1)
return s;
else
return String.Empty;
} // End of try
catch(Exception ex)
{
throw new Exception("Biz.EmailService.LoginUserWebmail." + ex.Message);
}
}