Compiler Report

Compiler: Eclipse Compiler for Java(TM) Version: 0.B83_R37x, 3.7.2

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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

21 : import javax.xml.soap.Name;

2. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

22 : import javax.xml.soap.SOAPElement;

3. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

23 : import javax.xml.soap.SOAPException;

4. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

24 : import javax.xml.soap.SOAPFactory;

5. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

40 : private SOAPElement rootElement = null;

6. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

42 : private SOAPElement currentElement = null;

7. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

43 : private SOAPFactory soapFactory;

8. WARNING: ForbiddenReference

Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

45 : public SOAPElement getSOAPElement()

9. WARNING: ForbiddenReference

Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

54 : soapFactory = SOAPFactory.newInstance();

10. WARNING: ForbiddenReference

Access restriction: The method newInstance() from the type SOAPFactory is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

54 : soapFactory = SOAPFactory.newInstance();

11. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

56 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

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

13. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

78 : catch (SOAPException e)

14. WARNING: ForbiddenReference

Access restriction: The method getParentElement() from the type Node is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

89 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

100 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

105 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

115 : currentElement.addNamespaceDeclaration(pre,uri);

18. WARNING: ForbiddenReference

Access restriction: The type Name is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

124 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

128 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

132 : 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 /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

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

22. WARNING: ForbiddenReference

Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /opt/public/webtools/projects/patches-R3.3.2-P/eclipse/dropins/wtp/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar

SoapElementSaxHandler.java :

137 : catch (SOAPException e)