mjrk
mjrk
For the soap12 stub to work with the WSDL, there are two things required: - specify the xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" namespace - assign this namespace to a binding Currently there are just...
I have very simple service: ``` class DocumentService(ServiceBase): @rpc(Unicode, _returns=Unicode) def enrich(ctx, document): [...] ``` But when I send the request, there is an internal error: ``` _append(parent, E(_gen_tagname(ns, name),...
Not sure if this feature exists already, if it's a feature or bug. My main navigation kind of depends on my first level (user context). In other words my main...
If I have a nested validation: ``` serialize :data, Hash validates_hash_keys :data do validates :url, presence: true, if: Proc.new{|f| f.required_data_field?(:url) } end ``` The f in the Proc won't be...
On install of employee_check_list, odoo version 16.0, we receive "User Error: You try to install module 'employee_check_list' that depends on module 'employee_documents_expiry'. But the latter module is not available in...
``` python de_DE = parsedatetime.Constants(localeID="de_DE") cal = parsedatetime.Calendar(constants=de_DE) time_struct = cal.parseDateText("2013") ``` results in ``` python AttributeError: 'NoneType' object has no attribute 'group' ``` It will work, if a month...