You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2010/05/20 15:53:40 UTC

svn commit: r946635 - in /camel/trunk: camel-core/src/main/java/org/apache/camel/Message.java camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java examples/camel-example-reportincident/README.txt

Author: davsclaus
Date: Thu May 20 13:53:40 2010
New Revision: 946635

URL: http://svn.apache.org/viewvc?rev=946635&view=rev
Log:
Polished

Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/Message.java
    camel/trunk/camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java
    camel/trunk/examples/camel-example-reportincident/README.txt

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/Message.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/Message.java?rev=946635&r1=946634&r2=946635&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/Message.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/Message.java Thu May 20 13:53:40 2010
@@ -140,7 +140,7 @@ public interface Message {
      * See {@link org.apache.camel.impl.DefaultMessage DefaultMessage} for how headers
      * is represented in Camel using a {@link org.apache.camel.util.CaseInsensitiveMap CaseInsensitiveMap}.
      * <p/>
-     * If you want to walk the returned Map and fetch all the keys and values, you should use
+     * <b>Important:</b> If you want to walk the returned {@link Map} and fetch all the keys and values, you should use
      * the {@link java.util.Map#entrySet()} method, which ensure you get the keys in the original case.
      *
      * @return all the headers in a Map

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java?rev=946635&r1=946634&r2=946635&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/util/CaseInsensitiveMap.java Thu May 20 13:53:40 2010
@@ -24,7 +24,7 @@ import java.util.Set;
 /**
  * A map that uses case insensitive keys, but preserves the original keys in the keySet.
  * <p/>
- * This map allows you to do lookup using case insenstive keys so you can retrieve the value without worring about
+ * This map allows you to do lookup using case insensitive keys so you can retrieve the value without worrying about
  * whether some transport protocol affects the keys such as Http and Mail protocols can do.
  * <p/>
  * When copying from this map to a regular Map such as {@link java.util.HashMap} then the original keys are

Modified: camel/trunk/examples/camel-example-reportincident/README.txt
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-reportincident/README.txt?rev=946635&r1=946634&r2=946635&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-reportincident/README.txt (original)
+++ camel/trunk/examples/camel-example-reportincident/README.txt Thu May 20 13:53:40 2010
@@ -13,8 +13,8 @@ You will need to compile this example fi
 To run the example type
   mvn jetty:run
 
-The webservice is exposed at:
-  http://localhost:9080/camel-example-reportincident/webservices/incident
+The webservice will be listed in this overview:
+  http://localhost:9080/webservices/
 
 
 To run the example with Ant
@@ -41,8 +41,8 @@ To run the example with Ant
   c. To Run using Ant, type
     ant run
 
-The webservice is exposed at:
-  http://localhost:9080/camel-example-reportincident/webservices/incident
+The webservice WSDL is exposed at:
+  http://localhost:9080/webservices/incident?wsdl
 
 
 To stop the example hit ctrl + c