Skip to content

Commit

Permalink
2004-06-01 Gert Driesen <drieseng@users.sourceforge.net>
Browse files Browse the repository at this point in the history
	* HttpSoapWebServiceHandler.cs: Removed unused variables.
	* SoapHeaderAttribute.cs: Added Obsolete attribute.

svn path=/trunk/mcs/; revision=28616
  • Loading branch information
slluis committed Jun 1, 2004
1 parent bc88cf6 commit d939457
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
@@ -1,3 +1,8 @@
2004-06-01 Gert Driesen <drieseng@users.sourceforge.net>

* HttpSoapWebServiceHandler.cs: Removed unused variables.
* SoapHeaderAttribute.cs: Added Obsolete attribute.

2004-05-24 Lluis Sanchez Gual <lluis@ximian.com>

* SoapClientMessage.cs: Get the MethodInfo from the corresponding
Expand Down
Expand Up @@ -301,10 +301,6 @@ void SerializeFault (HttpContext context, SoapServerMessage requestMessage, Exce
SoapException soex = ex as SoapException;
if (soex == null) soex = new SoapException (ex.Message, SoapException.ServerFaultCode, ex);

MethodStubInfo stubInfo;
object server;
Stream stream;

SoapServerMessage faultMessage;
if (requestMessage != null)
faultMessage = new SoapServerMessage (context.Request, soex, requestMessage.MethodStubInfo, requestMessage.Server, requestMessage.Stream);
Expand Down
Expand Up @@ -42,6 +42,11 @@ public SoapHeaderAttribute (string memberName)
set { memberName = value; }
}

#if NET_1_1
[Obsolete ("This property will be removed from a future"
+ " version. The presence of a particular header"
+ " in a SOAP message is no longer enforced", false)]
#endif
public bool Required {
get { return required; }
set { required = value; }
Expand Down

0 comments on commit d939457

Please sign in to comment.