SCOUT-118, setting InfoSelection to 'All', this is a required element

git-svn-id: https://svn.apache.org/repos/asf/juddi/scout/trunk@1140944 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/ws/scout/registry/RegistryV3Impl.java b/src/main/java/org/apache/ws/scout/registry/RegistryV3Impl.java
index e6d5cbf..badaabd 100644
--- a/src/main/java/org/apache/ws/scout/registry/RegistryV3Impl.java
+++ b/src/main/java/org/apache/ws/scout/registry/RegistryV3Impl.java
@@ -72,6 +72,7 @@
 import org.uddi.api_v3.GetServiceDetail;
 import org.uddi.api_v3.GetTModelDetail;
 import org.uddi.api_v3.IdentifierBag;
+import org.uddi.api_v3.InfoSelection;
 import org.uddi.api_v3.Name;
 import org.uddi.api_v3.ObjectFactory;
 import org.uddi.api_v3.PublisherAssertion;
@@ -290,7 +291,11 @@
 	    //request.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns", this.getUddiNamespace());
 	    // A SOAP request is made and a SOAP response
 	    // is returned.
-
+	    if (log.isDebugEnabled()) {
+	    	String xmlIn = XMLUtils.convertNodeToXMLString(request);
+	    	log.debug("Request send to UDDI Registry: " + xmlIn);
+	    }
+	    
 	    Element response;
 	    try {
 	    	response = transport.send(request, endPointURI);
@@ -971,6 +976,8 @@
 		if (authInfo != null) {
 			request.setAuthInfo(authInfo);
 		}
+		
+		request.setInfoSelection(InfoSelection.ALL);
 
         RegisteredInfo ri;
         JAXBElement<?> o = execute(this.objectFactory.createGetRegisteredInfo(request),