Thursday 15 August 2013

How did I inadvertently create a denial-of-service with ServiceStack and Redis? -



How did I inadvertently create a denial-of-service with ServiceStack and Redis? -

given next code service:

namespace lo.leads.receiver.servicemodel.adapters.prime { [route("/leadpost")] public class primeleadimportadapter : ireturn<leadinformationresponse> { public leadinformation leadinformation { get; set; } } public class leadinformation { public leadapplication leadapplication { get; set; } } public class leadapplication { public string firstname { get; set; } public string lastname { get; set; } public string email { get; set; } } public class leadinformationresponse { public long timetakenms { get; set; } public responsestatus responsestatus { get; set; } } } public class primeleadservices : service { public object any(leadinformation request) { var sw = stopwatch.startnew(); publishmessage<leadinformation>(request); var response = new leadinformationresponse { timetakenms = sw.elapsedmilliseconds, }; homecoming response; } } public override void configure(container container) { container.register<iredisclientsmanager>(new pooledredisclientmanager("localhost:6379")); container.register(c => c.resolve<iredisclientsmanager>().getcacheclient()); //register mq broker service var mqservice = new redismqserver(container.resolve<iredisclientsmanager>()); container.register<imessageservice>(mqservice); container.register(mqservice.messagefactory); mqservice.registerhandler<leadinformation>(servicecontroller.executemessage); mqservice.start(); }

and code (run test or console):

var client = new jsonserviceclient("http://localhost:61992/json/reply/leadinformation"); var receipt = client.post(new leadinformation { leadapplication = new leadapplication { firstname = "stephen", lastname = "patten", email = "foo@example.com", } }); receipt.printdump();

when post endpoint, redis via monitor, goes tailspin speak , seems bombarded same commands beingness issued on , over.

here sample:

1412368257.214613 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.214613 [0 127.0.0.1:50753] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.214613 [0 127.0.0.1:50753] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.214613 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"a93a8dad3661428cab58d8bf410e6060\",\"creat eddate\":\"\\/date(1412368257214)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"c35ed994935d463b8640f5c6cfb0991d\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.214613 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.214613 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"f5262b2d713946ba96c21f4dee6ccaa9\",\"createddate\" :\"\\/date(1412368257214)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.214613 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.214613 [0 127.0.0.1:50753] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"a93a8dad3661428cab58d8bf410e6060\",\"crea teddate\":\"\\/date(1412368257214)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"c35ed994935d463b8640f5c6cfb0991d\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.214613 [0 127.0.0.1:50753] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.214613 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"177e8c0ba22a49cebef99f523dadc969\",\"creat eddate\":\"\\/date(1412368257214)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"2988c8b3803e4bd09a6259d8e89eeac9\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.214613 [0 127.0.0.1:50753] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.214613 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.214613 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.215613 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"9c2d8cd60f6043e999c910807c12f18e\",\"createddate\" :\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.215613 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.215613 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"31693bdbc31c473ab1d4f96713038480\",\"creat eddate\":\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"1e3896884da244618f35e6620ac177b7\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.215613 [0 127.0.0.1:50753] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"177e8c0ba22a49cebef99f523dadc969\",\"crea teddate\":\"\\/date(1412368257214)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"2988c8b3803e4bd09a6259d8e89eeac9\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.215613 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.215613 [0 127.0.0.1:50753] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.215613 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.215613 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.215613 [0 127.0.0.1:50753] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.215613 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.215613 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.215613 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.215613 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"4d386184ef0c4d61934a7adfd46cf4eb\",\"createddate\" :\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.215613 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.215613 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"ee3cd0823e2442fcb27844aedac063c1\",\"creat eddate\":\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"f5262b2d713946ba96c21f4dee6ccaa9\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.216615 [0 127.0.0.1:50754] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"31693bdbc31c473ab1d4f96713038480\",\"crea teddate\":\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"1e3896884da244618f35e6620ac177b7\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.216615 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50754] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.216615 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.216615 [0 127.0.0.1:50754] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.216615 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"6cd5b97f72d84cec945938b4e9f8bc5d\",\"createddate\" :\"\\/date(1412368257216)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.216615 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.216615 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"2d110ee0da044069a8cf354c804c734b\",\"creat eddate\":\"\\/date(1412368257216)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"9c2d8cd60f6043e999c910807c12f18e\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.216615 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50753] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"ee3cd0823e2442fcb27844aedac063c1\",\"crea teddate\":\"\\/date(1412368257215)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"f5262b2d713946ba96c21f4dee6ccaa9\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.216615 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.216615 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.216615 [0 127.0.0.1:50753] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.216615 [0 127.0.0.1:50753] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.216615 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"ab13d13e538445fe8a8ee67c795066ed\",\"createddate\" :\"\\/date(1412368257216)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.217615 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.217615 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"7c4f3bff200f414c8ed664323033d7d5\",\"creat eddate\":\"\\/date(1412368257217)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"4d386184ef0c4d61934a7adfd46cf4eb\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.217615 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.217615 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50754] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"2d110ee0da044069a8cf354c804c734b\",\"crea teddate\":\"\\/date(1412368257216)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"9c2d8cd60f6043e999c910807c12f18e\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.217615 [0 127.0.0.1:50754] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.217615 [0 127.0.0.1:50754] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.217615 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"d2069fad518748559e625df43b41823d\",\"createddate\" :\"\\/date(1412368257217)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.217615 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.217615 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"27840eecacbf43aaa3a0d7609a623c0f\",\"creat eddate\":\"\\/date(1412368257217)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"6cd5b97f72d84cec945938b4e9f8bc5d\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.217615 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.217615 [0 127.0.0.1:50753] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"7c4f3bff200f414c8ed664323033d7d5\",\"crea teddate\":\"\\/date(1412368257217)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"4d386184ef0c4d61934a7adfd46cf4eb\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.218616 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.218616 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50753] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.218616 [0 127.0.0.1:50753] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.218616 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"2148d02eab7944858f5a2999046b5d2d\",\"createddate\" :\"\\/date(1412368257218)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.218616 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.218616 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"24d3690beaab4441b2f5958f86cbc510\",\"creat eddate\":\"\\/date(1412368257218)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"ab13d13e538445fe8a8ee67c795066ed\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.218616 [0 127.0.0.1:50751] "publish" "mq:topic:in" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50754] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"27840eecacbf43aaa3a0d7609a623c0f\",\"crea teddate\":\"\\/date(1412368257217)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"6cd5b97f72d84cec945938b4e9f8bc5d\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}" 1412368257.218616 [0 127.0.0.1:50747] "rpop" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50749] "rpop" "mq:leadinformation.inq" 1412368257.218616 [0 127.0.0.1:50754] "ltrim" "mq:leadinformationresponse.outq" "0" "100" 1412368257.218616 [0 127.0.0.1:50754] "publish" "mq:topic:out" "mq:leadinformationresponse.outq" 1412368257.218616 [0 127.0.0.1:50728] "rpop" "mq:leadinformationresponse.inq" 1412368257.218616 [0 127.0.0.1:50752] "lpush" "mq:leadinformation.inq" "{\"id\":\"4ec3dd7a500a4b18a8e16568b43d10b3\",\"createddate\" :\"\\/date(1412368257218)\\/\",\"priority\":0,\"retryattempts\":0,\"options\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemode l.adapters.prime.leadinformation, lo.leads.receiver.servicemodel\",\"leadapplication\":{\"trackingid\":0,\"initialstatus\":0,\"testl ead\":false,\"producttype\":0,\"firstname\":\"stephen\",\"lastname\":\"patten\",\"consumerenvironmentid\":0,\"email\":\"stephen.patt en@gmail.com\",\"monthsemployed\":0,\"isretired\":false,\"isselfemployed\":false,\"monthlyincome\":0,\"monthlyexpenses\":0,\"rent\": 0,\"supplementalincome\":0,\"isindebtprogram\":false,\"bankaba\":false,\"bankaccountterminmonths\":0,\"hasdirectdeposit\":false,\"ha smovedrecently\":false,\"hasagreedtoeft\":false,\"ishomeowner\":false,\"agreedtodialertcpa\":false}}}" 1412368257.218616 [0 127.0.0.1:50752] "publish" "mq:topic:in" "mq:leadinformation.inq" 1412368257.219617 [0 127.0.0.1:50751] "lpush" "mq:leadinformationresponse.inq" "{\"id\":\"e899c4d7488848eab9d3bc31d9045ad7\",\"creat eddate\":\"\\/date(1412368257219)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"d2069fad518748559e625df43b41823d\",\"options \":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\", \"timetakenms\":0}}" 1412368257.219617 [0 127.0.0.1:50753] "lpush" "mq:leadinformationresponse.outq" "{\"id\":\"24d3690beaab4441b2f5958f86cbc510\",\"crea teddate\":\"\\/date(1412368257218)\\/\",\"priority\":0,\"retryattempts\":0,\"replyid\":\"ab13d13e538445fe8a8ee67c795066ed\",\"option s\":1,\"body\":{\"__type\":\"lo.leads.receiver.servicemodel.adapters.prime.leadinformationresponse, lo.leads.receiver.servicemodel\" ,\"timetakenms\":0}}"

so question have done wrong? seems mimic demo/tests code published on servicestack site. have run lot of tests included ss , none of them exhibit problem. stumped.

thank you, stephen

this publishes leadinformation message itself, indefinitely:

public class primeleadservices : service { public object any(leadinformation request) { var sw = stopwatch.startnew(); // publishes message re-calls service 1 time again publishmessage<leadinformation>(request); var response = new leadinformationresponse { timetakenms = sw.elapsedmilliseconds, }; homecoming response; } }

redis servicestack

No comments:

Post a Comment