Compiler Report

Compiler: Eclipse Java Compiler Version: 0.770, 3.3.0

Number of source files: 5 Number of classfiles: 5

Problems: 40 (Errors: 0 Warnings: 40 )

Source File: org/eclipse/jst/ws/util/SoapElementHelper.java
1. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

29: public static javax.xml.soap.SOAPElement createSOAPElementFromXMLString(String xmlString) throws ParserConfigurationException, IOException, SAXException

2. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

41: public static java.lang.String soapElementWriter(javax.xml.soap.SOAPElement node,java.lang.StringBuffer buffer)

3. WARNING: ForbiddenReference

Access restriction: The method getElementName() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

47: buffer.append(JspUtils.markup("<" + node.getElementName().getLocalName()));

4. WARNING: ForbiddenReference

Access restriction: The method getLocalName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

47: buffer.append(JspUtils.markup("<" + node.getElementName().getLocalName()));

5. WARNING: ForbiddenReference

Access restriction: The method getAllAttributes() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

48: java.util.Iterator attrs = node.getAllAttributes();

6. WARNING: ForbiddenReference

Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

50: javax.xml.soap.Name attr = (javax.xml.soap.Name)attrs.next();

7. WARNING: ForbiddenReference

Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

50: javax.xml.soap.Name attr = (javax.xml.soap.Name)attrs.next();

8. WARNING: ForbiddenReference

Access restriction: The method getQualifiedName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

51: buffer.append(" " + attr.getQualifiedName() + "=\"" + JspUtils.markup(node.getAttributeValue(attr)) + "\"");

9. WARNING: ForbiddenReference

Access restriction: The method getAttributeValue(Name) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

51: buffer.append(" " + attr.getQualifiedName() + "=\"" + JspUtils.markup(node.getAttributeValue(attr)) + "\"");

10. WARNING: ForbiddenReference

Access restriction: The method getChildElements() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

54: java.util.Iterator children = node.getChildElements();

11. WARNING: ForbiddenReference

Access restriction: The type Node is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

57: javax.xml.soap.Node childNode = (javax.xml.soap.Node)children.next();

12. WARNING: ForbiddenReference

Access restriction: The type Node is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

57: javax.xml.soap.Node childNode = (javax.xml.soap.Node)children.next();

13. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

58: if(childNode instanceof javax.xml.soap.SOAPElement){

14. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

60: soapElementWriter((javax.xml.soap.SOAPElement)childNode,buffer);

15. WARNING: ForbiddenReference

Access restriction: The method getValue() from the type Node is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

63: buffer.append(JspUtils.markup(((javax.xml.soap.Text)childNode).getValue()));

16. WARNING: ForbiddenReference

Access restriction: The type Text is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

63: buffer.append(JspUtils.markup(((javax.xml.soap.Text)childNode).getValue()));

17. WARNING: ForbiddenReference

Access restriction: The method getElementName() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

65: buffer.append(JspUtils.markup("</" + node.getElementName().getLocalName() + ">"));

18. WARNING: ForbiddenReference

Access restriction: The method getLocalName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementHelper.java:

65: buffer.append(JspUtils.markup("</" + node.getElementName().getLocalName() + ">"));

Source File: org/eclipse/jst/ws/util/SoapElementSaxHandler.java
1. WARNING: ForbiddenReference

Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

20: import javax.xml.soap.Name;

2. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

21: import javax.xml.soap.SOAPElement;

3. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

22: import javax.xml.soap.SOAPException;

4. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

23: import javax.xml.soap.SOAPFactory;

5. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

39: private SOAPElement rootElement = null;

6. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

41: private SOAPElement currentElement = null;

7. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

42: private SOAPFactory soapFactory;

8. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

44: public SOAPElement getSOAPElement()

9. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

53: soapFactory = SOAPFactory.newInstance();

10. WARNING: ForbiddenReference

Access restriction: The method newInstance() from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

53: soapFactory = SOAPFactory.newInstance();

11. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

55: catch (SOAPException e)

12. WARNING: ForbiddenReference

Access restriction: The method addTextNode(String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

75: currentElement.addTextNode(str.substring(start,start+length));

13. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

77: catch (SOAPException e)

14. WARNING: ForbiddenReference

Access restriction: The method getParentElement() from the type Node is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

88: currentElement = currentElement.getParentElement();

15. WARNING: ForbiddenReference

Access restriction: The method createElement(String, String, String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

99: rootElement = soapFactory.createElement(localName,prefix,namespaceURI);

16. WARNING: ForbiddenReference

Access restriction: The method addChildElement(String, String, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

104: currentElement = currentElement.addChildElement(localName,prefix,namespaceURI);

17. WARNING: ForbiddenReference

Access restriction: The method addNamespaceDeclaration(String, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

114: currentElement.addNamespaceDeclaration(pre,uri);

18. WARNING: ForbiddenReference

Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

123: Name attriName;

19. WARNING: ForbiddenReference

Access restriction: The method createName(String, String, String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

127: attriName = soapFactory.createName(atts.getLocalName(i),attriPre,atts.getURI(i));

20. WARNING: ForbiddenReference

Access restriction: The method createName(String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

131: attriName = soapFactory.createName(atts.getLocalName(i));

21. WARNING: ForbiddenReference

Access restriction: The method addAttribute(Name, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

133: currentElement.addAttribute(attriName, atts.getValue(i));

22. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/build-wtp-R2.0-R/workdir/plugins/javax.xml.soap_1.2.0.v200706111329/lib/saaj.jar

SoapElementSaxHandler.java:

136: catch (SOAPException e)