GetSequences command missing input parameters

I’ve been trying to get information about a playback sequence so I’m trying this command but everytime I send it, it returns with a missing input parameter error. Here are the parameters I’ve been trying so far (in Java)

inputs.put(“ItemKind”, “Camera”);

inputs.put(“AfterCount”, “1”);

inputs.put(“AfterTime”, sequenceTime);

inputs.put(“BeforeCount”, “1”);

inputs.put(“BeforeTime”, sequenceTime);

inputs.put(“Time”, “0”);

inputs.put(“SeqType”, “Recording”);

inputs.put(“CameraId”, “”);

Btw, I tried with and without the BeforeCount and BeforeTime etc.

Error Code 13 = MissingInputParameter is returned if one or more of the parameters is missing:

AfterCount

AfterTime

BeforeCount

BeforeTime

I tried using only AfterCount and AfterTime (without the befores) and it still doesn’t work

Do you receive error code 13 or 0x13?

It says error code 13

Hi Captain,

I’ve looked the code one more time as well as parameters you’ve provided.

I cannot see anything wrong.

Thus could you please provide wireshark trace of request and response for this particular command ?

We could try to “feed up” the Mobile server on our side with this data in order to reproduce the problem.

Btw.

inputs.put(“Time”, “0”);

Means “central” time equal to 1st of Jan 1970 (Start of UNIX epoch).

Although it is a valid value, are you sure this is what you mean ?

Another possible problem could be in one of those:

inputs.put(“AfterTime”, sequenceTime);

inputs.put(“BeforeTime”, sequenceTime);

If format of the “sequenceTime” is something that Mobile server doesn’t understand - it will return also error code for Missing Input Parameter.