You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
619 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<!--
service name:和webservice类名通常一致provider里面的参数表示Java RPC通信机制
parametername:表示完全限定名的名字可以随便写value:表示webservice类的完全限定名
-->
<service name="LoginService" provider="java:RPC">
<parameter name="className" value="com.zky.orcl.webservice.LoginService"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>