1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
//------------------------------------------------------------------------------
// <copyright file="SoapServerMethod.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Services.Protocols {
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Web.Services;
using System.Web.Services.Description;
using System.Xml;
using System.Xml.Serialization;
using System.Security;
using System.Security.Permissions;
using System.Security.Policy;
using System.Web.Services.Diagnostics;
[PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")]
public sealed class SoapServerMethod {
//
// Internal field visibility is maintained for
// compatibility with existing code.
//
internal LogicalMethodInfo methodInfo;
internal XmlSerializer returnSerializer;
internal XmlSerializer parameterSerializer;
internal XmlSerializer inHeaderSerializer;
internal XmlSerializer outHeaderSerializer;
internal SoapHeaderMapping[] inHeaderMappings;
internal SoapHeaderMapping[] outHeaderMappings;
internal SoapReflectedExtension[] extensions;
internal object[] extensionInitializers;
internal string action;
internal bool oneWay;
internal bool rpc;
internal SoapBindingUse use;
internal SoapParameterStyle paramStyle;
internal WsiProfiles wsiClaims;
public SoapServerMethod() {
}
public SoapServerMethod(Type serverType, LogicalMethodInfo methodInfo) {
this.methodInfo = methodInfo;
//
// Set up the XmlImporter, the SoapImporter, and acquire
// the ServiceAttribute on the serverType for use in
// creating a SoapReflectedMethod.
//
WebServiceAttribute serviceAttribute = WebServiceReflector.GetAttribute(serverType);
string serviceNamespace = serviceAttribute.Namespace;
bool serviceDefaultIsEncoded = SoapReflector.ServiceDefaultIsEncoded(serverType);
SoapReflectionImporter soapImporter = SoapReflector.CreateSoapImporter(serviceNamespace, serviceDefaultIsEncoded);
XmlReflectionImporter xmlImporter = SoapReflector.CreateXmlImporter(serviceNamespace, serviceDefaultIsEncoded);
//
// Add some types relating to the methodInfo into the two importers
//
SoapReflector.IncludeTypes(methodInfo, soapImporter);
WebMethodReflector.IncludeTypes(methodInfo, xmlImporter);
//
// Create a SoapReflectedMethod by reflecting on the
// LogicalMethodInfo passed to us.
//
SoapReflectedMethod soapMethod = SoapReflector.ReflectMethod(methodInfo, false, xmlImporter, soapImporter, serviceNamespace);
//
// Most of the fields in this class are ----ed in from the reflected information
//
ImportReflectedMethod(soapMethod);
ImportSerializers(soapMethod, GetServerTypeEvidence(serverType));
ImportHeaderSerializers(soapMethod);
}
public LogicalMethodInfo MethodInfo {
get {
return methodInfo;
}
}
public XmlSerializer ReturnSerializer {
get {
return returnSerializer;
}
}
public XmlSerializer ParameterSerializer {
get {
return parameterSerializer;
}
}
public XmlSerializer InHeaderSerializer {
get {
return inHeaderSerializer;
}
}
public XmlSerializer OutHeaderSerializer {
get {
return outHeaderSerializer;
}
}
//
//
public SoapHeaderMapping[] InHeaderMappings {
get {
return inHeaderMappings;
}
}
//
//
public SoapHeaderMapping[] OutHeaderMappings {
get {
return outHeaderMappings;
}
}
/*
* WSE3 does not require access to Extension data
*
public SoapReflectedExtension[] Extensions
{
get
{
return extensions;
}
}
public object[] ExtensionInitializers
{
get
{
return extensionInitializers;
}
}
*/
public string Action {
get {
return action;
}
}
public bool OneWay {
get {
return oneWay;
}
}
public bool Rpc {
get {
return rpc;
}
}
public SoapBindingUse BindingUse {
get {
return use;
}
}
public SoapParameterStyle ParameterStyle {
get {
return paramStyle;
}
}
public WsiProfiles WsiClaims {
get {
return wsiClaims;
}
}
[SecurityPermission(SecurityAction.Assert, ControlEvidence = true)]
private Evidence GetServerTypeEvidence(Type type) {
return type.Assembly.Evidence;
}
private List<XmlMapping> GetXmlMappingsForMethod(SoapReflectedMethod soapMethod) {
List<XmlMapping> mappings = new List<XmlMapping>();
mappings.Add(soapMethod.requestMappings);
if (soapMethod.responseMappings != null) {
mappings.Add(soapMethod.responseMappings);
}
mappings.Add(soapMethod.inHeaderMappings);
if (soapMethod.outHeaderMappings != null) {
mappings.Add(soapMethod.outHeaderMappings);
}
return mappings;
}
private void ImportReflectedMethod(SoapReflectedMethod soapMethod) {
this.action = soapMethod.action;
this.extensions = soapMethod.extensions;
this.extensionInitializers = SoapReflectedExtension.GetInitializers(this.methodInfo, soapMethod.extensions);
this.oneWay = soapMethod.oneWay;
this.rpc = soapMethod.rpc;
this.use = soapMethod.use;
this.paramStyle = soapMethod.paramStyle;
this.wsiClaims = soapMethod.binding == null ? WsiProfiles.None : soapMethod.binding.ConformsTo;
}
private void ImportHeaderSerializers(SoapReflectedMethod soapMethod) {
List<SoapHeaderMapping> inHeaders = new List<SoapHeaderMapping>();
List<SoapHeaderMapping> outHeaders = new List<SoapHeaderMapping>();
for (int j = 0; j < soapMethod.headers.Length; j++) {
SoapHeaderMapping mapping = new SoapHeaderMapping();
SoapReflectedHeader soapHeader = soapMethod.headers[j];
mapping.memberInfo = soapHeader.memberInfo;
mapping.repeats = soapHeader.repeats;
mapping.custom = soapHeader.custom;
mapping.direction = soapHeader.direction;
mapping.headerType = soapHeader.headerType;
if (mapping.direction == SoapHeaderDirection.In)
inHeaders.Add(mapping);
else if (mapping.direction == SoapHeaderDirection.Out)
outHeaders.Add(mapping);
else {
inHeaders.Add(mapping);
outHeaders.Add(mapping);
}
}
this.inHeaderMappings = inHeaders.ToArray();
if (this.outHeaderSerializer != null)
this.outHeaderMappings = outHeaders.ToArray();
}
private void ImportSerializers(SoapReflectedMethod soapMethod, Evidence serverEvidence) {
//
// Keep track of all XmlMapping instances we need for this method.
//
List<XmlMapping> mappings = GetXmlMappingsForMethod(soapMethod);
//
// Generate serializers from those XmlMappings
//
XmlMapping[] xmlMappings = mappings.ToArray();
TraceMethod caller = Tracing.On ? new TraceMethod(this, "ImportSerializers") : null;
if (Tracing.On) Tracing.Enter(Tracing.TraceId(Res.TraceCreateSerializer), caller, new TraceMethod(typeof(XmlSerializer), "FromMappings", xmlMappings, serverEvidence));
XmlSerializer[] serializers = null;
if (AppDomain.CurrentDomain.IsHomogenous) {
serializers = XmlSerializer.FromMappings(xmlMappings);
}
else {
#pragma warning disable 618 // If we're in a non-homogenous domain, legacy CAS mode is enabled, so passing through evidence will not fail
serializers = XmlSerializer.FromMappings(xmlMappings, serverEvidence);
#pragma warning restore 618
}
if (Tracing.On) Tracing.Exit(Tracing.TraceId(Res.TraceCreateSerializer), caller);
int i = 0;
this.parameterSerializer = serializers[i++];
if (soapMethod.responseMappings != null) {
this.returnSerializer = serializers[i++];
}
this.inHeaderSerializer = serializers[i++];
if (soapMethod.outHeaderMappings != null) {
this.outHeaderSerializer = serializers[i++];
}
}
}
}
|