Alexander Pivovarov

Results 14 issues of Alexander Pivovarov

I have few machines with Ubuntu 20.04 and this .sh works fine (thanks!), but today I encountered error on Ubuntu 18.04: ```bash $: sudo sysctl -w net.ipv4.conf.all.bc_forwarding=1 sysctl: cannot stat...

Encountered an error "An error occurred while parsing EntityName.." Found out that CreateItem fails if Subject contains '&'. Obviously the reason is that XML are not allowed to contain 5...

Code Improvement
doc update

In some cases promises are rejected with error that has empty message and zero error code. For example, the code below results in such an error. HttpStatusCode is not null....

Not sure if this is a bug or a feature ) I noticed that UpdateItem returns null instead of response. I looked at the source code and found that UpdateItem...

I would like to try garlic-player with Odroid C4 (arm64, ubuntu OS). Is there any instruction how to build it?

Our customer has Exchange Server installed on-prem, ntlm auth. When we do requests to EWS we get an error: Invalid message signature: Basic realm="mail.domain.com". Any ideas what could be a...

I need to load attachments by their IDs. ```js const attachmentId = ... // getting an attachment id somehow exch.GetAttachment(attachmentId).then((res) => { // expecting to get here }) ``` This...

Code Improvement

Got his error in typescript ``` Type 'Promise' is missing the following properties from type 'Promise': finally, [Symbol.toStringTag]ts(2345) ``` Though everything works fine.

Got this error in typescript: ``` Property 'CreateItem' does not exist on type 'ExchangeService'. Did you mean 'CreateItems'?ts(2551) ExchangeWebService.d.ts(4302, 5): 'CreateItems' is declared here. ``` In JS there are both...

We need to set User-Agent for our project as it's required by customer security policy. In ExchangeSerivceBase.js there is a line that set User-Agent but it is commented out: ```js...