Index: src/org/eclipse/bpel/model/resource/BPELReader.java =================================================================== --- src/org/eclipse/bpel/model/resource/BPELReader.java (revision 16679) +++ src/org/eclipse/bpel/model/resource/BPELReader.java (working copy) @@ -607,6 +607,11 @@ protected void setProperties(Element element, EObject eObject, String propertyName) { String propertyAttribute = element.getAttribute(propertyName); + // added by Grid.Qian + // we should permit user add a correlation without properties + if(propertyAttribute == null){ + return; + } StringTokenizer st = new StringTokenizer(propertyAttribute); while (st.hasMoreTokens()) {