我使用WCF服务库来实现简单的Web服务并且它可以工作,但我发现WCF使用WS-Security标准来保护SOAP消息。
在我的项目中,我必须构建简单的Web服务,然后使用不同的方法来增强此Web服务以保护它,但不使用< wsss>
我不知道我选择实现Web服务是否使用wcf,或者我必须使用其他方法来实现。我必须处理SOAP消息本身以保护SOAP消息。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace WcfBookAddress
{
[ServiceContract]
public interface IService1
{
[OperationContract]
string GetData(int value);
[OperationContract]
Boolean AddAddress(string vname, string vFatherName, string vstreet, string vcity, Int64 vphoneNo);
[OperationContract]
DataSet GetAllAddress();
[OperationContract]
DataSet GetAddressbyName(string vName);
[OperationContract]
CompositeType GetDataUsingDataContract(CompositeType composite);
// TODO: Add your service operations here
}
// Use a data contract as illustrated in the sample below to add composite types to service operations
[DataContract]
public class CompositeType
{
bool boolValue = true;
string stringValue = "Hello ";
[DataMember]
public bool BoolValue
{
get { return boolValue; }
set { boolValue = value; }
}
[DataMember]
public string StringValue
{
get { return stringValue; }
set { stringValue = value; }
}
}
}