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 ja...@apache.org on 2005/02/26 10:51:21 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/client/cpp IAttributeTest4Client.cpp

jamejose    2005/02/26 01:51:21

  Modified:    c/tests/auto_build/testcases/client/cpp
                        IAttributeTest4Client.cpp
  Log:
  
  
  Revision  Changes    Path
  1.4       +3 -1      ws-axis/c/tests/auto_build/testcases/client/cpp/IAttributeTest4Client.cpp
  
  Index: IAttributeTest4Client.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/IAttributeTest4Client.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IAttributeTest4Client.cpp	18 Feb 2005 13:17:00 -0000	1.3
  +++ IAttributeTest4Client.cpp	26 Feb 2005 09:51:21 -0000	1.4
  @@ -26,7 +26,9 @@
   		INamespace *nsp=phb->createNamespaceDecl("nsp","http://apache.com");
   		IAttribute *attr1=phb->createAttribute("Name","nsp","axis");
   		cout<<attr1->setURI(NULL)<<endl;
  -		cout<<attr1->setURI(uri)<<endl;
  +
  +		/* Changing the URI associated with the attribute. Here the prefix should also will change. */
  +		cout<<attr1->setURI("http://axis.apache.com")<<endl;
   		BasicNode *bn=phb->createImmediateChild(ELEMENT_NODE,"Project","","","");
   		IAttribute *attr2=bn->createAttribute("TYPE","OPEN SOURCE");
   		attr2->setURI(uri);