The wire format for binding arrays and dictionaries in OpenRasta seems to be ":index" like this:

class X
{
  public int[] Data { get; set; }
}

which serializes to (with two array items 5 and 12):

Data:0=5&Data:1=12

Is it possible to change this format to:

Data[0]=5&Data[1]=12

Thanks, Jørn

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You can try and replace the IPathManager with a custom one that supports that format. Alternatively, feel free to add support for that format too and send a pull request to openrasta-core.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.