kcastrotech

Results 17 comments of kcastrotech

I ended up putting this on the back burner and focusing on push notifications instead which I was able to get working with minimal modifications. However, I think I've got...

Also, have you seen strong-soap? (https://github.com/strongloop/strong-soap) I haven't played with it yet but it might be a suitable alternative and would seem to fit in node-ews perfectly with little to...

Oh yeah... I remember that issue now! :)

https://msdn.microsoft.com/en-us/library/office/aa494306(v=exchg.150).aspx It would appear your syntax is correct so my first suggestion is to force the type declaration ("t:") by changing the key to "t:BccRecipients" and try again.

Glad that worked. Though I'm not entirely sure as to whether it's a bug or not. I did some cursory diagnostics when it happened to me and noticed on the...

What happens if you try `args.Items.CalendarItem.Subject = "";` I know it's technically the same as was was declared in args, but I'm curious if that it somehow makes a difference....

Also, can you provide the exact error message?

It looks like Subject cannot be blank: https://msdn.microsoft.com/en-us/library/office/aa565100(v=exchg.150).aspx#Anchor_3 However your statement just now about > If the Subject _**is not previously set**_ to something in the args _**and later defined**_...

That is interesting. I'd suggest taking a peek at the generated XML. The way I do that is to edit \MY_NODE_PROJECT\node_modules\node-ews\node_modules\soap\lib\client.js and add `console.log('XML:',xml);` after the `xml = "

It is picky about the order of elements so that makes sense. However it doesn't make sense that even though you've defined Subject in your args (albeit as "") that...