You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by bu...@apache.org on 2001/04/03 16:49:03 UTC

[Bug 1095] Changed - Ver 1.3.1 won't operate with SOAP (1.2.3 works fine)

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1095

*** shadow/1095	Fri Mar 23 14:40:25 2001
--- shadow/1095.tmp.16849	Tue Apr  3 07:49:03 2001
***************
*** 2,8 ****
  | Ver 1.3.1 won't operate with SOAP (1.2.3 works fine)                       |
  +----------------------------------------------------------------------------+
  |        Bug #: 1095                        Product: Xerces-J                |
! |       Status: RESOLVED                    Version: 1.3.0                   |
  |   Resolution: INVALID                    Platform: All                     |
  |     Severity: Major                    OS/Version: All                     |
  |     Priority: High                      Component: Core                    |
--- 2,8 ----
  | Ver 1.3.1 won't operate with SOAP (1.2.3 works fine)                       |
  +----------------------------------------------------------------------------+
  |        Bug #: 1095                        Product: Xerces-J                |
! |       Status: CLOSED                      Version: 1.3.0                   |
  |   Resolution: INVALID                    Platform: All                     |
  |     Severity: Major                    OS/Version: All                     |
  |     Priority: High                      Component: Core                    |
***************
*** 12,17 ****
--- 12,18 ----
  |      CC list: Cc:                                                          |
  +----------------------------------------------------------------------------+
  |          URL:                                                              |
+ | Dependencies: BugsThisDependsOn: 1028[FIXED], 1164                         |
  +============================================================================+
  |                              DESCRIPTION                                   |
  Dozens of people are/have struggled with this problem in the last few weeks...
***************
*** 103,106 ****
  
  ------- Additional Comments From neilg@ca.ibm.com  2001-03-23 14:40 -------
  Xerces 1.3.0 and 1.3.1 no longer support the Working Draft version of W3C 
! Schemas; they support W3C schema candidate recommendation.
--- 104,131 ----
  
  ------- Additional Comments From neilg@ca.ibm.com  2001-03-23 14:40 -------
  Xerces 1.3.0 and 1.3.1 no longer support the Working Draft version of W3C 
! Schemas; they support W3C schema candidate recommendation.
! 
! ------- Additional Comments From czhao@commonvision.com  2001-04-03 07:49 -------
! I don't think the particular problem reported is due to schema support issues.
! 
! The first problem "Why can't xerces resolve the xsd namespace URI." is due to 
! bug 1028 (or 1131 which is the same), which has been fixed in post-1.3.1 cvs.  
! 
! The second problem "Why can't xerces parse the response's faultcode" is due to 
! bug 1164.  Before that bug is fixed you can modify soap 2.1 to cope with it.  
! In org.apache.soap.Fault class unmarshall() method, change the two lines
! 
! 				if (namespaceURI == null 
! 						|| namespaceURI.equals
! (Constants.NS_URI_SOAP_ENV))
! 
! to 
! 
! 				if (namespaceURI == null || namespaceURI.length
! () == 0
! 						|| namespaceURI.equals
! (Constants.NS_URI_SOAP_ENV))
! 
! After I applied these two fixes I was able to run the addressbook and 
! calculator examples.

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-j-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-j-dev-help@xml.apache.org