Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11397
Modified Files:
WebServiceProxyFactory.cs
Log Message:
Fixed exception thrown by logging statement when serviceUri is null.
Index: WebServiceProxyFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services/Web/Services/WebServiceProxyFactory.cs,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** WebServiceProxyFactory.cs 8 Aug 2007 17:48:09 -0000 1.24
--- WebServiceProxyFactory.cs 7 Sep 2007 01:03:30 -0000 1.25
***************
*** 306,310 ****
if (LOG.IsDebugEnabled)
{
! LOG.Debug(String.Format("Generated client proxy type [{0}] for web service [{1}]", wrapper.FullName, serviceUri.Description));
}
--- 306,321 ----
if (LOG.IsDebugEnabled)
{
! if (serviceUri != null)
! {
! LOG.Debug(
! String.Format("Generated client proxy type [{0}] for web service [{1}]", wrapper.FullName,
! serviceUri.Description));
! }
! else if (proxyType != null)
! {
! LOG.Debug(
! String.Format("Generated client proxy type [{0}] for web service based on provided proxy type [{1}]", wrapper.FullName,
! proxyType.FullName));
! }
}
|