servicestack - StringMapTypeDeserializer (null) - Property '_' does not exist on type -


deployed new service , started getting above error. service works, error reported in logs.

2013-05-03 09:56:36,455 [51] warn servicestack.servicemodel.serialization.stringmaptypedeserializer (null) - property '_' not exist on type 'services.web.statuslist'

here 2 types:

public class statuslist : ireturn> {     public string search { get; set; }     public int limit { get; set; }     public int page { get; set; } }  public class comboitemresult {     public int id { get; set; }     public string text { get; set; } } 

and actual service simple linq query. said, works when call api. above error in logs.

version 3.9.43 - ideas?

that's not issue. it's warning states "_" parameter doesn't exist. parameter set jquery ajax requests eliminate browser cache, e.g.: http://yourhost/api/service?_=1367679839904

for more details see: https://github.com/servicestack/servicestack/blob/master/src/servicestack.client/serialization/stringmaptypedeserializer.cs#l102-l105


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -