soaplib2.0.0beta+django和1C连接错误

soaplib2.0.0beta+django和1C连接错误,django,soap,suds,soaplib,Django,Soap,Suds,Soaplib,我有任务在Django中建立soap服务,用于从商业软件接收数据 已安装soaplib2.0.0beta,并使用django代码段将层从soap转换为django 创建了一些soap方法和数据类型。一切都与suds lib test一起工作,但在生产中会收到错误 Erorrs说某些列不是唯一的,但数据是正常的,并且方法可以连接到db.all.count测试 我认为层或nginx配置中存在错误 图层代码: # Code of Layer: class DjangoSoapApp(Applicati

我有任务在Django中建立soap服务,用于从商业软件接收数据

已安装soaplib2.0.0beta,并使用django代码段将层从soap转换为django 创建了一些soap方法和数据类型。一切都与suds lib test一起工作,但在生产中会收到错误

Erorrs说某些列不是唯一的,但数据是正常的,并且方法可以连接到db.all.count测试

我认为层或nginx配置中存在错误

图层代码:

# Code of Layer:
class DjangoSoapApp(Application):
    def __call__(self, request):
        # wrap the soaplib response into a Django response object
        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(DjangoSoapApp, self).__call__(request.META, start_response)
        django_response.content = '\n'.join(response)
        return django_response
方法代码:

# Method's code
class SyncService(DefinitionBase):

    @rpc(User, Order, _returns=Array(Response))
    def CreateOrder(self, user=None, order=None):
        response = []

        # response.append(Response(Result = True, Response = "ORDERS: " + str(self.tmp.count())))
        # return response

        if not user or not order:
            response.append(Response(Result = False, Response = "Exception: not send user or order"))
            return response
        try:
            new_user = user_model.objects.get(commerce_uid=user.Id)
            response.append(Response(Result = True, Response="Success: Get user %s %s" % (user.Name, user.EMail)))
        except Exception as e:
            try:
                new_user = user_model(
                    email=user.EMail,
                    commerce_uid=user.Id,
                    telephone=user.Phone,
                    name=user.Name,
                    username=re.sub(r'\.|\@', '', user.EMail),
                    isSync = True)
                new_user.save()
                response.append(Response(Result = True,Response = "Success: Create user %s %s" % (user.Name, user.EMail)))
            except Exception as e:
                response.append(Response(Result = False, Response = "Exception: user '%s' not found and can't create (%s)" % (user, e)))
                return response

        try:
            new_order = order_model(
                user=new_user,
                date=order.Date,
                time=order.Time,
                boat=order.Boat,
                amount=order.Quantity,
                isSync=True
            )
            new_order.save()
            response.append(Response(Result = True, Response = "Success: Create order %s" % (order)))
        except Exception as e:
            response.append(Response(Result = False, Response = "Exception: Can't create order '%s' for user '%s' (%s)" % (order, user, e)))
            return response

        return response
错误示例:

Exception: user 'Id: 6d73d109-4b7b-453e-819a-94c42a883c09, Name: John Smith 2, Email: email2@email.com, Phone: +749512345679' not found and can't create (column commerce_uid is not unique)