ngx-soap icon indicating copy to clipboard operation
ngx-soap copied to clipboard

Date type values are ignored when passed as parameter

Open robli314 opened this issue 6 years ago • 0 comments

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>

robli314 avatar May 08 '19 12:05 robli314