[wise-commits] wise SVN: r575 - webgui/trunk/src/main/java/org/jboss/wise/gui.

wise-commits at lists.jboss.org wise-commits at lists.jboss.org
Wed Jul 3 17:40:54 EDT 2013


Author: alessio.soldano at jboss.com
Date: 2013-07-03 17:40:54 -0400 (Wed, 03 Jul 2013)
New Revision: 575

Modified:
   webgui/trunk/src/main/java/org/jboss/wise/gui/ClientConversationBean.java
Log:
[WISE-203] Cleanup error message when going back in the flow


Modified: webgui/trunk/src/main/java/org/jboss/wise/gui/ClientConversationBean.java
===================================================================
--- webgui/trunk/src/main/java/org/jboss/wise/gui/ClientConversationBean.java	2013-07-03 17:28:48 UTC (rev 574)
+++ webgui/trunk/src/main/java/org/jboss/wise/gui/ClientConversationBean.java	2013-07-03 21:40:54 UTC (rev 575)
@@ -100,7 +100,7 @@
 		}
 	    });
 	} catch (Exception e) {
-	    error = "Could not read WSDL from specified URL. Please check logs for further information.";
+	    error = "Could not read WSDL from specified URL. Please check credentials and see logs for further information.";
 	    logException(e);
 	}
 	if (client != null) {
@@ -209,11 +209,19 @@
     	    } else if (oldName.endsWith("step2")) {
 		if (newName.endsWith("step3")) {
 		    parseOperationParameters();
+		} else if (newName.endsWith("step1")) {
+		    this.error = null;
 		}
 	    } else if (oldName.endsWith("step3")) {
 		if (newName.endsWith("step4")) {
 		    performInvocation();
+		} else if (newName.endsWith("step2")) {
+		    this.error = null;
 		}
+    	    } else if (oldName.endsWith("step4")) {
+    		if (newName.endsWith("step3")) {
+		    this.error = null;
+		}
     	    }
 	}
     }



More information about the wise-commits mailing list