目前我在类文件本身中存储了我的C#mysql连接信息,这看起来并不聪明,因为最终用户可以简单地使用像.NET Reflector这样的反射器来调试源代码,以防它和&# #39;没有被吓倒。
现在,stackoverflow上的用户建议创建一个操作数据库的Web服务。最终用户使用的软件只需使用用户的凭据通过Web服务对自身进行身份验证,然后使用它来访问资源。
现在我遇到以下问题,我的服务器在linux ubuntu上运行,并且已经存储了一个使用plesk创建的网站。
我知道我可以使用http://www.mono-project.com/在linux上托管web服务。但是我从来没有这样做,因为我总是使用PHP来做这些事情,而且我对如何将ac #web-service上传到ssh服务器上安装的单声道版本感到困惑。
我可以在winforms应用程序中使用类似下面的PHP代码作为C#Web服务吗?
PHP代码:
<?php
class webService extends database
{
// Web service constructor
public function __construct($username, $password, $uniqueId, $versionId)
{
$this->username = $username;
$this->password = $password;
$this->salt = 'xxx';
$this->hash = 'xxx';
$this->uniqueId = $uniqueid;
$this->versionId = $versionId;
}
// Web service functions to check database values
// Web service user account check function
private function userCheck()
{
$this->connect();
$userCheck = $this->execute_query("SELECT username, password FROM Users WHERE username = '" . $this->username . "' AND password = '" . $this->hash . "'");
if($userCheck && mysqli_num_rows($userCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service unique id check function
private function uniqueCheck()
{
$this->connect();
$uniqueCheck = $this->execute_query("SELECT username, uniqueid FROM Users WHERE username = '" . $this->username . "' AND uniqueid = '" . $this->uniqueId . "'");
if($uniqueCheck && mysqli_num_rows($uniqueCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service first run check function
private function firstRunCheck()
{
$this->connect();
$firstRunCheck = $this->execute_query("SELECT username, firstrun FROM Users WHERE username = '" . $this->username . "' AND firstrun = '0'");
if($firstRunCheck && mysqli_num_rows($firstRunCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service user disabled check function
private function disabledUserCheck()
{
$this->connect();
$disabledUserCheck = $this->execute_query("SELECT disabled FROM Users WHERE username = '" . $this->username . "' AND disabled = '1'");
if($disabledUserCheck && mysqli_num_rows($disabledUserCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service update required check function
private function updateRequiredCheck()
{
$this->connect();
$updateRequiredCheck = $this->execute_query("SELECT requiredupdate FROM requiredupdate WHERE version = '" . $this->versionId . "' AND requiredupdate = 1");
if($updateRequiredCheck && mysqli_num_rows($updateRequiredCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service premium check function
private function userPremiumCheck()
{
$this->connect();
$userPremiumCheck = $this->execute_query("SELECT premium FROM Users WHERE username = '" . $this->username . "' AND premium = 1");
if($userPremiumCheck && mysqli_num_rows($userPremiumCheck) > 0)
{
return 'true';
}
else
{
return 'false';
}
}
// Web service functions to update database values
// Web service update first run parameters function
private function firstRunUpdate()
{
$firstRunCheck = $this->firstRunCheck();
if($firstRunCheck == 'true')
{
$this->connect();
$this->execute_query("UPDATE Users SET uniqueid = '" . $this->uniqueId . "', firstrun = '1' WHERE username = '" . $this->username . "'");
return 'true';
}
else
{
return 'false';
}
}
function to_xml(SimpleXMLElement $object, array $data)
{
foreach ($data as $key => $value) {
if (is_array($value)) {
$new_object = $object->addChild($key);
to_xml($new_object, $value);
} else {
$object->addChild($key, $value);
}
}
}
// Web service handler function
public function webService()
{
$userCheck = $this->userCheck();
if($userCheck == 'true')
{
$userArray = array (
'username' => $this->username,
'authentificated' => $this->userCheck(),
'firstRun' => $this->firstRunCheck(),
'firstRunUpdated' => $this->firstRunUpdate(),
'uniqueIdCheck' => $this->uniqueCheck(),
'Premium' => $this->userPremiumCheck(),
'Disabled' => $this->disabledUserCheck(),
'updateRequired' => $this->updateRequiredCheck()
);
}
else
{
$userArray = array (
'username' => $this->username,
'userCheck' => $this->userCheck()
);
}
echo str_replace("\/", "/", json_encode($userArray, JSON_PRETTY_PRINT));
}
}
?>
或者如何创建可以在我的应用程序中使用的PHP Web服务?
PHP脚本的当前响应如下所示:
{ "username": "dane", "authentificated": "true", "firstRun": "false", "firstRunUpdated": "false", "uniqueIdCheck": "true", "Premium": "true", "Disabled": "false", "updateRequired": "false" }
答案 0 :(得分:3)
RômuloM。Farias的回答很明显。
但是,您可能需要更多解释,并且第一次“手动”做一些事情可能会有所帮助,这样当您使用框架进行繁忙工作时,您可以了解“引擎盖下”正在发生的事情。您。所以我放弃了答案:
...
看起来你正走在正确的轨道上,你想要做什么的基本结构(MySQL凭证和访问是在服务器端处理的。)
没有理由需要在服务器上运行任何C#,因为你的客户端应用程序是WinForms。 Web服务的重点是允许不同的平台轻松地相互通信。
可以将Web服务视为返回数据而非HTML的网站。 (实际上它是相反的:网站或网页只是一种返回html的特定网络服务)
因此,您现在需要的是让您的WinFroms应用程序能够通过Web服务与您在上面发布的PHP代码进行对话。换句话说,我们希望将您在Web服务中获得的PHP代码包装起来,然后让您的WinForms应用程序使用Web服务。
请记住,为了安全起见,您必须确保使用SSL并执行POST,而不是GET(即密码必须在邮件正文中加密,而不是粘贴在URL上!)
以下是一些有关创建PHP Web服务的教程(必须存在更好的内容): https://davidwalsh.name/web-service-php-mysql-xml-json https://www.codeproject.com/Tips/671437/Creating-Web-Service-Using-PHP-Within-Minutes
有很多方法可以从C#中使用Web服务。 RestSharp可能是理想的。
请注意,您可能会选择SOAP或JSON作为格式。因此,请查找使用相同格式的Web服务教程和使用者教程。 (构建一个可以返回不同格式的Web服务,具体取决于客户端请求的理想情况,但更高级。我在PHP中没有相关的教程)
(在此上下文中,“API”与“web服务”同义,但请注意“API”也可能具有完全不同的含义)
看起来你可能还有很长的路要走,但不要担心,一旦你的第一个例子正常工作,使用相同的方法做各种各样的方法会很快捷方便好东西。
答案 1 :(得分:1)