Could not generate WSDL! There is no SOAP service at this location

异常描述:使用axis发布webservice时,访问WSDL时报出Could not generate WSDL! There is no SOAP service at this location。
异常原因:.wsdd部署文件配置错误
异常解决:
<handler type="java:org.apache.axis.handlers.http.URLMapper"
		name="URLMapper" />
	<!-- Services from SSOService WSDL service -->
	<service>
        .......
        </service>
	<transport name="http">
		<requestFlow>
			<handler type="URLMapper" />
		</requestFlow>
	</transport>

在.wsdd文件中加上handler和transport区域

你可能感兴趣的:(xml,webservice,SOAP)