Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17785
Modified Files:
WebServiceProxyFactory.cs
Log Message:
Allow web service base type to be configurable in WebServiceExporter. Added tests.
Added tests for the same feature in WebServiceProxyFactory (already implementated).
Index: WebServiceProxyFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services/WebServiceProxyFactory.cs,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** WebServiceProxyFactory.cs 7 Dec 2007 13:33:49 -0000 1.29
--- WebServiceProxyFactory.cs 7 Dec 2007 15:43:46 -0000 1.30
***************
*** 105,110 ****
/// <summary>
! /// Gets or sets the BaseType that proxy should inherit.
/// </summary>
public Type ClientProtocolType
{
--- 105,113 ----
/// <summary>
! /// Gets or sets the base type that web service proxy should inherit.
/// </summary>
+ /// <remarks>
+ /// Default is <see cref="System.Web.Services.Protocols.SoapHttpClientProtocol"/>
+ /// </remarks>
public Type ClientProtocolType
{
|