Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Services
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27849
Modified Files:
WebServiceExporter.cs
Log Message:
Try to de-couple the url from the actual object definition name in WebServiceExporter [SPRNET-762]
Index: WebServiceExporter.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Services/WebServiceExporter.cs,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** WebServiceExporter.cs 27 Mar 2008 11:11:49 -0000 1.32
--- WebServiceExporter.cs 7 Apr 2008 11:00:24 -0000 1.33
***************
*** 151,155 ****
public string Name
{
! get { return (_name != null ? _name : objectName); }
set { _name = value; }
}
--- 151,162 ----
public string Name
{
! get
! {
! if (_name == null)
! {
! _name = WebUtils.GetPageName(objectName);
! }
! return _name;
! }
set { _name = value; }
}
|