ServiceStack: Handler for request not found?
问题 I have three routes defined. First two work fine but the last one returns error in the subject. Routes.Add<FeeInstructionsList>("/policies/{clientPolicyId}/feeinstructions", "GET"); Routes.Add<FeeInstructionsEdit>("/policies/{clientPolicyId}/feeinstructions/{feetype}", "GET"); Routes.Add<List<FeeInstructionEditInfo>>("/policies{clientPolicyId}/feeinstructions", "POST"); When I had third route as just "/feeinstructions", it worked fine, but when I added route as above it does not work.