Comment by aggsol on Getting sqlite3 on clients computer without needing them...
The database can easily be persistet as stated in the documentation, see example
View ArticleComment by aggsol on How to map a function to all elements of a namedtuple?
@RomanPerekhrest I added an example tuple but at program runtime I don't know how the namedtuple looks like.
View ArticleComment by aggsol on How to map a function to all elements of a namedtuple?
Not quiet there, the result tuple should be (Firstname="'Foo'", Lastname="Unknown")
View ArticleComment by aggsol on How to handle WSDL Operations not recognized by Zeep
Any other ideas where I could look into?
View ArticleComment by aggsol on Python - UserWarning messages loading WSDL into Zeep client
Did you find a solution for this?
View ArticleComment by aggsol on WDSL file contains operation but zeep "gives service has...
@Thameem Any ideas how to fix this by now?
View ArticleComment by aggsol on WSDL: How to define operation/message which accepts any...
Did you find a solution by now?
View ArticleComment by aggsol on Using PEM format of JKS key to sign soap with zeep...
Did you find a solution for your problem?
View ArticleComment by aggsol on Python p12 to pem
PSA: PKCS#12 support in pyOpenSSL is deprecated. You should use the APIs in cryptography.
View ArticleComment by aggsol on How to create elements with zeep from WSDL?
I cannot share the WSDL as this would reveal who my client is. Maybe I can create a reduced example. I will try a dictionary.
View ArticleComment by aggsol on How to sign XML with xmlsec (or other more appropriate...
@DeanMacGregor How did you end up signing the SOAP envelope?
View ArticleComment by aggsol on Javascript closures on heap or stack?
A copy to the heap might do the trick or variables known to be in closures would be created on the heap in the first place. This is likely a good area for optimizations and "smart trickery".
View ArticleComment by aggsol on What does "c14n" mean?
@Matthew I wonder if i can say that in my next presentation. Kinda feels weird. But I also often have trouble saying "canonicalization".
View ArticleAnswer by aggsol for Number sign/Hash in filename of file URI
I found a workaround by using JavaScript for the onclick event of the link:var doc = window.open();doc.location.href = "file:\\\c:\path\to\abc%23123.txt";return false;This opens a new window a required...
View ArticleNumber sign/Hash in filename of file URI
I have the following file: C:\path\to\abc#123.txt I develop web front-end for IE11 on Windows that presents link to that file. I use the following URI encoding the # with...
View Article64-bit unsigned integers which cannot map onto a double [duplicate]
Are there any 64-bit unsigned integer values which cannot be represented with a double-precision floating-point type? (As a double is also 64-bit wide there must be some.) If so, how can I calculate...
View ArticleAnswer by aggsol for How to enable LZ4 compression for messagepack content...
You have to write a custom media type formatter because the compression is used in a different module. Instead of MessagePackSerializer you have to use LZ4MessagePackSerializer. The usage is the same....
View ArticleCertain HTML entities (arrows) are not rendered in PDF (iText)
I tried to render ⇒ ⇔ € © → in the HTML with the XMLWorker and iText. Only the copyright and euro symbol appear in the PDF. I used the dafault font and...
View ArticleWhy is crypto with .Net Framework so complicated?
In most cases I need to encrypt a string with a password and then send/save it somewhere. Later I want do decrypt it with the password. I am not encrypting nuclear missile codes or medical patient...
View ArticleDifference in ApiController HTTP status between empty Ok and NoContent [closed]
An ApiController returns the HTTP status 200 and any content given as parameter to Ok(foo) is sent. If no parameter is given the status is still 200 but no body is sent.Some clients expect a body or...
View Article