You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by aj...@apache.org on 2006/02/04 13:22:00 UTC

svn commit: r374862 [2/2] - in /webservices/axis2/trunk/java/modules: adb/src/org/apache/axis2/databinding/utils/ adb/test/org/apache/axis2/databinding/utils/ codegen/ codegen/src/org/apache/axis2/schema/ codegen/src/org/apache/axis2/schema/template/ c...

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeQNamePopulateTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeQNamePopulateTest.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeQNamePopulateTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeQNamePopulateTest.java Sat Feb  4 04:20:54 2006
@@ -17,8 +17,8 @@
 
 public class SimpleTypeQNamePopulateTest extends AbstractSimplePopulater{
     private String xmlString[] = {
-            "<qNameParam>university</qNameParam>",
-            "<qNameParam xmlns:ns1=\"http://ws.apache.org/axis2\">ns1:axis2</qNameParam>"
+            "<qNameParam xmlns=\"http://soapinterop.org/xsd\">university</qNameParam>",
+            "<qNameParam xmlns=\"http://soapinterop.org/xsd\" xmlns:ns1=\"http://ws.apache.org/axis2\">ns1:axis2</qNameParam>"
             //"<qNameParam>http://mail.google.com/mail/?auth=DQAAAHEAAAC041</qNameParam>"
     };
     // force others to implement this method

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeTimePopulateTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeTimePopulateTest.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeTimePopulateTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypeTimePopulateTest.java Sat Feb  4 04:20:54 2006
@@ -24,8 +24,8 @@
             "23:59:59"
     };
     private String xmlString[] = {
-            "<timeParam>"+values[0]+"</timeParam>",
-            "<timeParam>"+values[1]+"</timeParam>",
+            "<timeParam xmlns=\"http://soapinterop.org/xsd\">"+values[0]+"</timeParam>",
+            "<timeParam xmlns=\"http://soapinterop.org/xsd\">"+values[1]+"</timeParam>",
     };
 
     protected void setUp() throws Exception {

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegMonthPopulateTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegMonthPopulateTest.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegMonthPopulateTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegMonthPopulateTest.java Sat Feb  4 04:20:54 2006
@@ -28,9 +28,9 @@
 
 
     private String xmlString[] = {
-            "<monthParam>"+values[0]+"</monthParam>",
-            "<monthParam>"+values[1]+"</monthParam>",
-            "<monthParam>"+values[2]+"</monthParam>"
+            "<monthParam xmlns=\"http://soapinterop.org/xsd\">"+values[0]+"</monthParam>",
+            "<monthParam xmlns=\"http://soapinterop.org/xsd\">"+values[1]+"</monthParam>",
+            "<monthParam xmlns=\"http://soapinterop.org/xsd\">"+values[2]+"</monthParam>"
     };
 
 

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearMonthPopulateTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearMonthPopulateTest.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearMonthPopulateTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearMonthPopulateTest.java Sat Feb  4 04:20:54 2006
@@ -26,9 +26,9 @@
             "1978-01-GMT"
     };
     private String xmlString[] = {
-            "<yearMonthParam>"+values[0]+"</yearMonthParam>",
-            "<yearMonthParam>"+values[1]+"</yearMonthParam>",
-            "<yearMonthParam>"+values[2]+"</yearMonthParam>"
+            "<yearMonthParam xmlns=\"http://soapinterop.org/xsd\">"+values[0]+"</yearMonthParam>",
+            "<yearMonthParam xmlns=\"http://soapinterop.org/xsd\">"+values[1]+"</yearMonthParam>",
+            "<yearMonthParam xmlns=\"http://soapinterop.org/xsd\">"+values[2]+"</yearMonthParam>"
     };
 
     protected void setUp() throws Exception {

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearPopulateTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearPopulateTest.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearPopulateTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/schema/populate/simple/SimpleTypegYearPopulateTest.java Sat Feb  4 04:20:54 2006
@@ -26,9 +26,9 @@
             "1978"
     };
     private String xmlString[] = {
-            "<yearParam>"+values[0]+"</yearParam>",
-            "<yearParam>"+values[1]+"</yearParam>",
-            "<yearParam>"+values[2]+"</yearParam>"
+            "<yearParam xmlns=\"http://soapinterop.org/xsd\">"+values[0]+"</yearParam>",
+            "<yearParam xmlns=\"http://soapinterop.org/xsd\">"+values[1]+"</yearParam>",
+            "<yearParam xmlns=\"http://soapinterop.org/xsd\">"+values[2]+"</yearParam>"
     };
 
     protected void setUp() throws Exception {

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java Sat Feb  4 04:20:54 2006
@@ -418,8 +418,8 @@
                 .getPolicyReader(PolicyFactory.OM_POLICY_READER);
 
         while (policyElements.hasNext()) {
-            Policy p = reader.readPolicy((OMElement) policyElements.next());
-            policyInclude.addPolicyElement(type, p);
+//            Policy p = reader.readPolicy((OMElement) policyElements.next());
+//            policyInclude.addPolicyElement(type, p);
         }
     }
 
@@ -429,9 +429,9 @@
                 .getPolicyReader(PolicyFactory.OM_POLICY_READER);
 
         while (policyRefElements.hasNext()) {
-            PolicyReference policyReference = reader
-                    .readPolicyReference((OMElement) policyRefElements.next());
-            policyInclude.addPolicyRefElement(type, policyReference);
+//            PolicyReference policyReference = reader
+//                    .readPolicyReference((OMElement) policyRefElements.next());
+//            policyInclude.addPolicyRefElement(type, policyReference);
         }
     }
     

Modified: webservices/axis2/trunk/java/modules/integration/project.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/project.xml?rev=374862&r1=374861&r2=374862&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/project.xml (original)
+++ webservices/axis2/trunk/java/modules/integration/project.xml Sat Feb  4 04:20:54 2006
@@ -323,6 +323,8 @@
                 <exclude>**org/apache/axis2/jms/*.class</exclude>
                 <exclude>**org/apache/axis2/soap12testing/soap12testsuite/*.class</exclude>
                 <exclude>**/ScenarioST1Test.class</exclude>
+                <exclude>**/samples/wsdl/perf2/*.class</exclude>
+
 
 
             </excludes>