Skip to content

Commit

Permalink
Merge pull request WebGoat#223 from WebGoat/features/221
Browse files Browse the repository at this point in the history
Fixed the classnames in the wsdd config file (moved to different pack…
  • Loading branch information
nbaars committed Mar 28, 2016
2 parents 765b212 + 042a626 commit a52df28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webgoat-container/src/main/webapp/WEB-INF/server-config.wsdd
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
<handler name="Authenticate" type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/>
<service name="WSDLScanning" provider="java:RPC">
<parameter name="allowedMethods" value="getFirstName, getLastName, getCreditCard, getLoginCount"/>
<parameter name="className" value="org.owasp.webgoat.lessons.WSDLScanning"/>
<parameter name="className" value="org.owasp.webgoat.plugin.WSDLScanning"/>
</service>
<service name="SoapRequest" provider="java:RPC">
<parameter name="allowedMethods" value="getFirstName, getLastName, getCreditCard, getLoginCount"/>
<parameter name="className" value="org.owasp.webgoat.lessons.SoapRequest"/>
<parameter name="className" value="org.owasp.webgoat.plugin.SoapRequest"/>
</service>
<service name="AdminService" provider="java:MSG">
<parameter name="allowedMethods" value="AdminService"/>
Expand All @@ -47,7 +47,7 @@
</service>
<service name="WsSqlInjection" provider="java:RPC">
<parameter name="allowedMethods" value="getCreditCard"/>
<parameter name="className" value="org.owasp.webgoat.lessons.WsSqlInjection"/>
<parameter name="className" value="org.owasp.webgoat.plugin.WsSqlInjection"/>
</service>
<transport name="http">
<requestFlow>
Expand Down

0 comments on commit a52df28

Please sign in to comment.