* throws a <code>{@link XmlRpcMethodNotFoundException}</code> if the number
* of parameters of the given XML-RPC request does not match the number of
* parameters of the service method with matching name.
*/
public void testFindMatchingMethodWithNotMatchingParameterCount() {
XmlRpcRequest request = new XmlRpcRequest();
request.setMethodName("getCustomerName");
XmlRpcElement[] parameters = { new XmlRpcString("Luke"),
new XmlRpcString("Anakin") };
request.setParameters(parameters);
try {
this.serviceExporter.findMatchingMethod(request);
fail("A 'XmlRpcMethodNotFoundException' should have been thrown");