All the sources codes "Yet it works !"page 4
C#
July 19, 2014 am31 04:40
#113
// on the webservice client
Hashtable params = new Hashtable
{
"IsActive", true.ToString();
...
};
service.someMethod(params);
// on the webservice
if (hs["IsActive"].ToString().ToLower().Equals("true"))
{
...
}
C++
July 15, 2014 am31 11:27
#119
int multiplyBy10(int number)
{
std::stringstream str;
str << number << '0';
str >> number;
return number;
}
PHP
July 07, 2014 am31 06:43
#154
<?php
$hash = sha1(crc32(md5($_POST['password'])));
?>