Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ServerApp
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv31509
Modified Files:
App.config
Log Message:
Fixed aop schema namespace.
Index: App.config
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ServerApp/App.config,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** App.config 8 Aug 2007 03:13:30 -0000 1.3
--- App.config 21 Sep 2007 13:30:31 -0000 1.4
***************
*** 24,28 ****
<parsers>
! <parser namespace="http://www.springframework.net/schema/aop"
type="Spring.Aop.Config.AopNamespaceParser, Spring.Aop"
schemaLocation="assembly://Spring.Aop/Spring.Aop.Config/spring-aop-1.1.xsd" />
--- 24,28 ----
<parsers>
! <parser namespace="http://www.springframework.net/aop"
type="Spring.Aop.Config.AopNamespaceParser, Spring.Aop"
schemaLocation="assembly://Spring.Aop/Spring.Aop.Config/spring-aop-1.1.xsd" />
***************
*** 31,40 ****
<objects xmlns="http://www.springframework.net"
! xmlns:aop="http://www.springframework.net/schema/aop">
!
! <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
! <property name="pattern" value="Spring.WcfQuickStart.*"/>
! </object>
!
<!-- Service definition -->
<object id="calculator"
--- 31,36 ----
<objects xmlns="http://www.springframework.net"
! xmlns:aop="http://www.springframework.net/aop">
!
<!-- Service definition -->
<object id="calculator"
***************
*** 47,60 ****
</object>
!
<object id="perfAdvice" type="Spring.WcfQuickStart.SimplePerformanceInterceptor, Spring.WcfQuickStart.ServerApp">
<property name="Prefix" value="Service Layer Performance"/>
</object>
!
<aop:config>
-
-
<aop:advisor pointcut-ref="serviceOperation" advice-ref="perfAdvice"/>
-
</aop:config>
--- 43,56 ----
</object>
! <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
! <property name="pattern" value="Spring.WcfQuickStart.*"/>
! </object>
!
<object id="perfAdvice" type="Spring.WcfQuickStart.SimplePerformanceInterceptor, Spring.WcfQuickStart.ServerApp">
<property name="Prefix" value="Service Layer Performance"/>
</object>
!
<aop:config>
<aop:advisor pointcut-ref="serviceOperation" advice-ref="perfAdvice"/>
</aop:config>
|