Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv23063
Modified Files:
WebServiceProxyFactory.cs
Log Message:
Make WebServiceProxyFactory and WebServiceExporter easily customizable.
Index: WebServiceProxyFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services/WebServiceProxyFactory.cs,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** WebServiceProxyFactory.cs 7 Dec 2007 20:25:51 -0000 1.31
--- WebServiceProxyFactory.cs 22 Feb 2008 16:44:38 -0000 1.32
***************
*** 284,288 ****
/// Initializes factory object.
/// </summary>
! public void AfterPropertiesSet()
{
ValidateConfiguration();
--- 284,288 ----
/// Initializes factory object.
/// </summary>
! public virtual void AfterPropertiesSet()
{
ValidateConfiguration();
***************
*** 291,297 ****
#endregion
! #region Private Helper Methods
! private void GenerateProxy()
{
IProxyTypeBuilder builder;
--- 291,297 ----
#endregion
! #region Protected Methods
! protected void GenerateProxy()
{
IProxyTypeBuilder builder;
***************
*** 339,343 ****
}
! private void ValidateConfiguration()
{
if (ServiceUri == null && ProxyType == null)
--- 339,343 ----
}
! protected void ValidateConfiguration()
{
if (ServiceUri == null && ProxyType == null)
|