ngx-soap
ngx-soap copied to clipboard
Date type values are ignored when passed as parameter
Hi,
I tried to call a service that has some dates as arguments, and realized that the date type values are ignored. The tags are created, but with empty values. See example below:
'sessionId': '1091278110940339', 'eventKeys': [1, 2], 'scheduleId': [1], 'start': new Date(), 'filter' : { 'period': { 'start': new Date(), 'end': new Date() } }
<sessionId>1091278110940339</sessionId> <eventKeys>1</eventKeys> <eventKeys>2</eventKeys> <scheduleId>1</scheduleId> <start></start> <filter> <period> <start></start> <end></end> </period> </filter> </getAssignmentsByFilter> </soap:Body> </soap:Envelope>