0

いくつかのチュートリアルに従って、Django を使用して小さな「Hello World」Web サービスを作成しようとしていますが、同じ障壁に何度もぶつかっています。view.py と soaplib_handler.py を定義しました。

ビュー.py:

from soaplib_handler import DjangoSoapApp, soapmethod, soap_types

class HelloWorldService(DjangoSoapApp):

    __tns__ = 'http://saers.dk/soap/'

    @soapmethod(_returns=soap_types.Array(soap_types.String))
    def hello(self):
      return "Hello World"

soaplib_handler.py:

from soaplib.wsgi_soap import SimpleWSGISoapApp
from soaplib.service import soapmethod
from soaplib.serializers import primitive as soap_types

from django.http import HttpResponse


class DjangoSoapApp(SimpleWSGISoapApp):

    def __call__(self, request):
        django_response = HttpResponse()
        def start_response(status, headers):
            status, reason = status.split(' ', 1)
            django_response.status_code = int(status)
            for header, value in headers:
                django_response[header] = value
        response = super(SimpleWSGISoapApp, self).__call__(request.META, start_response)
        django_response.content = "\n".join(response)

        return django_response

そして、「response = super....」という行が問題を引き起こしているようです。url.py にマップされた /hello_world/services.wsdl を読み込むと、次のようになります。

/hello_world/service.wsdl の AttributeError 'module' オブジェクトに属性 'tostring' がありません

完全なエラー メッセージについては、こちらを参照してください: http://saers.dk:8000/hello_world/service.wsdl

このエラーが発生する理由について何か提案はありますか? ElementTree はどこで定義されていますか?

4

3 に答える 3

1

@zdmytriv ライン

soap_app_response = super(BaseSOAPWebService, self).__call__(environ, start_response)

のように見えるはずです

soap_app_response = super(DjangoSoapApp, self).__call__(environ, start_response)

あなたの例はうまくいきます。

于 2009-12-22T21:44:45.260 に答える
0

これで問題が解決するかどうかはわかりませんが、関数 hello のデコレーターは、文字列配列を返すと想定していますが、実際には文字列を返しています

代わりに _returns=soap_types.String を試してください

レイ

于 2009-04-22T15:06:17.730 に答える
0

私のサービスからコピー/貼り付け:

# SoapLib Django workaround: http://www.djangosnippets.org/snippets/979/
class DumbStringIO(StringIO):
    """ Helper class for BaseWebService """
    def read(self, n): 
        return self.getvalue()

class DjangoSoapApp(SimpleWSGISoapApp):
    def __call__(self, request):
        """ Makes Django request suitable for SOAPlib SimpleWSGISoapApp class """

        http_response = HttpResponse()

        def start_response(status, headers):
            status, reason = status.split(' ', 1)
            http_response.status_code = int(status)

            for header, value in headers:
                http_response[header] = value

        environ = request.META.copy()
        body = ''.join(['%s=%s' % v for v in request.POST.items()])
        environ['CONTENT_LENGTH'] = len(body)
        environ['wsgi.input'] = DumbStringIO(body)
        environ['wsgi.multithread'] = False

        soap_app_response = super(BaseSOAPWebService, self).__call__(environ, start_response)

        http_response.content = "\n".join(soap_app_response)

        return http_response

Djangoスニペットにはバグがあります。その URL から最後の 2 つのコメントを読んでください。

于 2009-07-02T00:07:48.540 に答える