由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - 用Web Service,当client调用Server的API的时候,
相关主题
.NET 入门系列(2)--Web Services,XML,SOAP超级脑残的Windows Remote WMI Access authentication
web service Re: .NET 入门系列(1)--什么是.NETRequiredFieldValidator是什么时候做validate的?
How : asp.net C# applcation notification message from server to client, Please!WEB API能替代WCF不
ASP.NET 4.0 WEB API design 的best practiceDirectory.GetFiles() is not working on client computer
Office 2007 Office Open XML Format New Line你们都做server side validation?
vb.net编程序让另几台电脑直接控制的仪器运行error run ASP.NET WEB API C# on Visual Studio 2013 (转载)
ASP.NET Cassini Sample Web Server诚心请教:如果有点vb&c++基础,学vb .net要多久
Help ASP.NET!!!Can two web services consume each other?
相关话题的讨论汇总
话题: api话题: server话题: service话题: web话题: 数据
进入DotNet版参与讨论
1 (共1页)
w***w
发帖数: 88
1
用Web Service,当client调用Server的API的时候,
API自己可以修改Server这边的数据吗?
例如
string ChangeServerData(string ID, string data)
{
// ...
如果数据是保存在SQL的,ID 的数据应该可以被修改。
但是如果这里用file储存的,ID的数据就不能在server被改动?好像会有安全性问
题?
如果数据是用XML储存,在Server的ID的数据可以通过这个API被修改吗?
return "谢谢";
}
L*********r
发帖数: 92
2
For web service, when client call a service API, the call is invoked against
of the proxy of the server API. The business logic of the API is executed
in the context of remote server.
l*****a
发帖数: 166
3
能不能修改取决于server设置和程序。用file和xml需要grant file system
permission, 一般安全漏洞大一些。
L*********r
发帖数: 92
4
you are right on that it depends on the ws-security and server configuration.
but it is same between database and file in view of security. it is not
safer to using database than using file.

【在 l*****a 的大作中提到】
: 能不能修改取决于server设置和程序。用file和xml需要grant file system
: permission, 一般安全漏洞大一些。

b****u
发帖数: 1027
5
agree with LifeAsWater, file system can be considered a big database system
itself.
1 (共1页)
进入DotNet版参与讨论
相关主题
Can two web services consume each other?Office 2007 Office Open XML Format New Line
A permission problem?vb.net编程序让另几台电脑直接控制的仪器运行
What is SmartClient?ASP.NET Cassini Sample Web Server
General Q: Web Server Load Balance and DB Server (转载)Help ASP.NET!!!
.NET 入门系列(2)--Web Services,XML,SOAP超级脑残的Windows Remote WMI Access authentication
web service Re: .NET 入门系列(1)--什么是.NETRequiredFieldValidator是什么时候做validate的?
How : asp.net C# applcation notification message from server to client, Please!WEB API能替代WCF不
ASP.NET 4.0 WEB API design 的best practiceDirectory.GetFiles() is not working on client computer
相关话题的讨论汇总
话题: api话题: server话题: service话题: web话题: 数据