Преглед на файлове

2009-08-14 Atsushi Enomoto <[email protected]>

	* ChannelDispatcher.cs : EndpointNotFoundException message could
	  be a bit kindful.


svn path=/trunk/mcs/; revision=139911
Atsushi Eno преди 16 години
родител
ревизия
0e567db131

+ 5 - 0
mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog

@@ -1,3 +1,8 @@
+2009-08-14  Atsushi Enomoto  <[email protected]>
+
+	* ChannelDispatcher.cs : EndpointNotFoundException message could
+	  be a bit kindful.
+
 2009-08-11  Atsushi Enomoto  <[email protected]>
 
 	* IOperationInvoker.cs : fix interface.

+ 1 - 1
mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChannelDispatcher.cs

@@ -568,7 +568,7 @@ namespace System.ServiceModel.Dispatcher
 					}
 				}
 				if (candidate == null)
-					throw new EndpointNotFoundException (String.Format ("The request message has the target '{0}' which is not reachable in this service contract", message.Headers.To));
+					throw new EndpointNotFoundException (String.Format ("The request message has the target '{0}' with action '{1}' which is not reachable in this service contract", message.Headers.To, message.Headers.Action));
 				return candidate;
 			}
 		}