问题描述
我想在Python中发送一个soap请求以获得响应。
我有WSDL
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage',module: 'junit-vintage-engine'
}
implementation 'org.springdoc:springdoc-openapi-ui:1.4.3'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.kafka:spring-kafka'
implementation 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
}
并且:
<wsdl:operation name="getCDUsstatus">
<soap:operation soapAction="http://tempuri.org/getCDUsstatus" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
并且:
<wsdl:message name="getCDUsstatusSoapIn">
<wsdl:part name="parameters" element="tns:getCDUsstatus" />
</wsdl:message>
<wsdl:message name="getCDUsstatusSoapOut">
<wsdl:part name="parameters" element="tns:getCDUsstatusResponse" />
</wsdl:message>
最后,
<wsdl:operation name="getCDUsstatus">
<wsdl:input message="tns:getCDUsstatusSoapIn" />
<wsdl:output message="tns:getCDUsstatusSoapOut" />
</wsdl:operation>
请问如何在Python中发送肥皂请求?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)