如何在Grinder中提交SOAP请求

如何在Grinder中提交SOAP请求,soap,jython,grinder,Soap,Jython,Grinder,grinder使用jython作为主要脚本语言 我需要测试一些只有soap接口的web服务 我一直没能找到一个办法让它发挥作用。我是Grinder的新手,虽然他们有一个示例脚本显示XmlRpcClient的使用,但即使是这个示例也错误地指出“导入错误:没有名为apache的模块”以下是我的web服务的示例代码: # coding=utf-8 import traceback from net.grinder.script.Grinder import grinder from net.grin

grinder使用jython作为主要脚本语言

我需要测试一些只有soap接口的web服务


我一直没能找到一个办法让它发挥作用。我是Grinder的新手,虽然他们有一个示例脚本显示XmlRpcClient的使用,但即使是这个示例也错误地指出“导入错误:没有名为apache的模块”

以下是我的web服务的示例代码:

# coding=utf-8

import traceback
from net.grinder.script.Grinder import grinder
from net.grinder.script import Test
from net.grinder.plugin.http import HTTPPluginControl, HTTPRequest
from HTTPClient import NVPair

connectionDefaults = HTTPPluginControl.getConnectionDefaults()
httpUtilities = HTTPPluginControl.getHTTPUtilities()
connectionDefaults.useContentEncoding = 1
log = grinder.logger.info

class TestRunner:

    def __call__(self):
        your_url_for_web_service = ''
        your_soap_message_body = ''
        soapMessage = """<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>"""+
    your_soap_message_body+"""
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>"""
        self.send_service( your_url_for_web_service, soapMessage )

    def send_service( self, soapMessage ):                
        request = HTTPRequest()
        headers =   (
                    NVPair( "Content-Type", "text/xml; charset=utf-8" ),
                    NVPair( "Content-Length", str( len( soapMessage ) ) ),
                    )
        request.setHeaders(headers)
        httpResponseObject = request.POST( url, soapMessage )
        soapAsString = httpResponseObject.getText()
        log( soapAsString )

def instrumentMethod(test, method_name, c=TestRunner):
  """Instrument a method with the given Test."""
  unadorned = getattr(c, method_name)
  import new
  method = new.instancemethod(test.wrap(unadorned), None, c)
  setattr(c, method_name, method)


# Replace each method with an instrumented version.
instrumentMethod(Test(1, 'soap request showcase example'), 'send_service')

为您的web服务设置适当的值。

听起来您的类路径或pythonpath设置不正确。也许您可以包含jython代码和包含错误消息的日志输出?@user912563您遇到了什么问题?我特意提出了获取soap主体响应的版本。我的解决方案在使用两字节编码的utf-8字符时有效。例如#đčćž。仅使用getText()不适用于包含这些字符的soapResponse。
your_url_for_web_service = ''
your_soap_message_body = ''