-
Notifications
You must be signed in to change notification settings - Fork 0
/
WSSWebRequest.cs
217 lines (197 loc) · 5.98 KB
/
WSSWebRequest.cs
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
namespace WebServiceStudio
{
using System;
using System.IO;
using System.Net;
public class WSSWebRequest : WebRequest
{
private static RequestProperties requestProperties;
private MemoryStream stream;
private WebRequest webRequest;
public WSSWebRequest(WebRequest webRequest)
{
this.webRequest = webRequest;
this.stream = new NoCloseMemoryStream();
}
public override IAsyncResult BeginGetRequestStream(AsyncCallback callback, object asyncState)
{
throw new NotSupportedException();
}
public override IAsyncResult BeginGetResponse(AsyncCallback callback, object asyncState)
{
throw new NotSupportedException();
}
public override Stream EndGetRequestStream(IAsyncResult result)
{
throw new NotSupportedException();
}
public override WebResponse EndGetResponse(IAsyncResult result)
{
throw new NotSupportedException();
}
public override Stream GetRequestStream()
{
return this.stream;
}
public override WebResponse GetResponse()
{
WebResponse response4;
requestProperties.contentType = this.webRequest.ContentType;
requestProperties.soapAction = this.webRequest.Headers["SOAPAction"];
requestProperties.url = this.webRequest.RequestUri.ToString();
if (this.webRequest.Method.ToUpper() == "POST")
{
requestProperties.Method = RequestProperties.HttpMethod.POST;
Stream requestStream = this.webRequest.GetRequestStream();
requestStream.Write(this.stream.GetBuffer(), 0, (int) this.stream.Length);
requestStream.Close();
this.stream.Position = 0L;
requestProperties.requestPayLoad = MessageTracer.ReadMessage(this.stream, requestProperties.contentType);
}
else if (this.webRequest.Method.ToUpper() == "GET")
{
requestProperties.Method = RequestProperties.HttpMethod.GET;
}
try
{
WSSWebResponse response2 = new WSSWebResponse(this.webRequest.GetResponse());
requestProperties.responsePayLoad = response2.DumpResponse();
response4 = response2;
}
catch (WebException exception)
{
if (exception.Response != null)
{
WSSWebResponse response = new WSSWebResponse(exception.Response);
requestProperties.responsePayLoad = response.DumpResponse();
throw new WebException(exception.Message, exception, exception.Status, response);
}
requestProperties.responsePayLoad = exception.ToString();
throw;
}
catch (Exception exception2)
{
requestProperties.responsePayLoad = exception2.ToString();
throw;
}
return response4;
}
public override string ConnectionGroupName
{
get
{
return this.webRequest.ConnectionGroupName;
}
set
{
this.webRequest.ConnectionGroupName = value;
}
}
public override long ContentLength
{
get
{
return this.webRequest.ContentLength;
}
set
{
this.webRequest.ContentLength = value;
}
}
public override string ContentType
{
get
{
return this.webRequest.ContentType;
}
set
{
this.webRequest.ContentType = value;
}
}
public override ICredentials Credentials
{
get
{
return this.webRequest.Credentials;
}
set
{
this.webRequest.Credentials = value;
}
}
public override WebHeaderCollection Headers
{
get
{
return this.webRequest.Headers;
}
set
{
this.webRequest.Headers = value;
}
}
public override string Method
{
get
{
return this.webRequest.Method;
}
set
{
this.webRequest.Method = value;
}
}
public override bool PreAuthenticate
{
get
{
return this.webRequest.PreAuthenticate;
}
set
{
this.webRequest.PreAuthenticate = value;
}
}
public override IWebProxy Proxy
{
get
{
return this.webRequest.Proxy;
}
set
{
this.webRequest.Proxy = value;
}
}
internal static RequestProperties RequestTrace
{
get
{
return requestProperties;
}
set
{
requestProperties = value;
}
}
public override Uri RequestUri
{
get
{
return this.webRequest.RequestUri;
}
}
public override int Timeout
{
get
{
return this.webRequest.Timeout;
}
set
{
this.webRequest.Timeout = value;
}
}
}
}