tiaguinho/gosoap

[soap:Server]: Server was unable to process request.

Opened this issue · 2 comments

when I try to Unmarshal the result
it will display the error?
I want to know what happen in my program?
thanks

ERRO[0000] [soap:Server]: Server was unable to process request. ---> Cannot insert the value NULL into column 'OperatorsName', table 'payme.dbo.SystemLogs'; column does not allow nulls. INSERT fails.
The statement has been terminated. 
type GetFundResult struct {
	GetFundResult int
}

var (
	r1 GetFundResult
)

	err1 := soap.Unmarshal(&r1)
	if err1 != nil {
		logrus.Error(err1)
	}
	logrus.Info(r1)

Try to check your response body. I think that in your case, server can not process with your request.

@mazeteam have you tried the suggestion of @kientv ?