diff --git a/README.md b/README.md index 36590193..9e918072 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,10 @@ Works with **Office 365/Exchange Online** and on-premises Exchange (2007 - 2016) > use SSL for basic authentication NTLM and Cookies Authentication works with nodejs only +> **NTLM** issue with `invalid tagName` gibrish character is due to gzip encoding, see #334. +> +> **Solution** use `gzip: true` in `XhrApi({ gzip: true })` constructor options of `@ewsjs/xhr`. + ## Modules * commonjs module for NodeJs * AMD module for other scenarios* (not documented yet) diff --git a/package.json b/package.json index 86edd98f..f91ae41b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ews-javascript-api", - "version": "0.10.2", + "version": "0.10.3", "description": "EWS Managed api in JavaScript", "main": "js/ExchangeWebService.js", "scripts": { diff --git a/src/js/Core/PropertyBag.ts b/src/js/Core/PropertyBag.ts index 0f81e2ac..32492842 100644 --- a/src/js/Core/PropertyBag.ts +++ b/src/js/Core/PropertyBag.ts @@ -93,7 +93,7 @@ export class PropertyBag { return propertyValue; } else { - throw serviceException.exception; + throw serviceException.outValue; } } /**