Compiler: Eclipse Java Compiler Version: 0.959, 3.5.0 rc1
Number of source files: 5 Number of classfiles: 5
Problems: 40 (Errors: 0 Warnings: 40 )
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
29 : public static javax.xml.soap.SOAPElement createSOAPElementFromXMLString(String xmlString) throws ParserConfigurationException, IOException, SAXException
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
41 : public static java.lang.String soapElementWriter(javax.xml.soap.SOAPElement node,java.lang.StringBuffer buffer)
Access restriction: The method getElementName() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
47 : buffer.append(JspUtils.markup("<" + node.getElementName().getLocalName()));
Access restriction: The method getLocalName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
47 : buffer.append(JspUtils.markup("<" + node.getElementName().getLocalName()));
Access restriction: The method getAllAttributes() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
48 : java.util.Iterator attrs = node.getAllAttributes();
Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
50 : javax.xml.soap.Name attr = (javax.xml.soap.Name)attrs.next();
Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
50 : javax.xml.soap.Name attr = (javax.xml.soap.Name)attrs.next();
Access restriction: The method getQualifiedName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
51 : buffer.append(" " + attr.getQualifiedName() + "=\"" + JspUtils.markup(node.getAttributeValue(attr)) + "\"");
Access restriction: The method getAttributeValue(Name) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
51 : buffer.append(" " + attr.getQualifiedName() + "=\"" + JspUtils.markup(node.getAttributeValue(attr)) + "\"");
Access restriction: The method getChildElements() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
54 : java.util.Iterator children = node.getChildElements();
Access restriction: The type Node is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
57 : javax.xml.soap.Node childNode = (javax.xml.soap.Node)children.next();
Access restriction: The type Node is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
57 : javax.xml.soap.Node childNode = (javax.xml.soap.Node)children.next();
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
58 : if(childNode instanceof javax.xml.soap.SOAPElement){
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
60 : soapElementWriter((javax.xml.soap.SOAPElement)childNode,buffer);
Access restriction: The method getValue() from the type Node is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
63 : buffer.append(JspUtils.markup(((javax.xml.soap.Text)childNode).getValue()));
Access restriction: The type Text is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
63 : buffer.append(JspUtils.markup(((javax.xml.soap.Text)childNode).getValue()));
Access restriction: The method getElementName() from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
65 : buffer.append(JspUtils.markup("</" + node.getElementName().getLocalName() + ">"));
Access restriction: The method getLocalName() from the type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementHelper.java :
65 : buffer.append(JspUtils.markup("</" + node.getElementName().getLocalName() + ">"));
Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
20 : import javax.xml.soap.Name;
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
21 : import javax.xml.soap.SOAPElement;
Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
22 : import javax.xml.soap.SOAPException;
Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
23 : import javax.xml.soap.SOAPFactory;
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
39 : private SOAPElement rootElement = null;
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
41 : private SOAPElement currentElement = null;
Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
42 : private SOAPFactory soapFactory;
Access restriction: The type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
44 : public SOAPElement getSOAPElement()
Access restriction: The type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
53 : soapFactory = SOAPFactory.newInstance();
Access restriction: The method newInstance() from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
53 : soapFactory = SOAPFactory.newInstance();
Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
55 : catch (SOAPException e)
Access restriction: The method addTextNode(String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
75 : currentElement.addTextNode(str.substring(start,start+length));
Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
77 : catch (SOAPException e)
Access restriction: The method getParentElement() from the type Node is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
88 : currentElement = currentElement.getParentElement();
Access restriction: The method createElement(String, String, String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
99 : rootElement = soapFactory.createElement(localName,prefix,namespaceURI);
Access restriction: The method addChildElement(String, String, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
104 : currentElement = currentElement.addChildElement(localName,prefix,namespaceURI);
Access restriction: The method addNamespaceDeclaration(String, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
114 : currentElement.addNamespaceDeclaration(pre,uri);
Access restriction: The type Name is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
123 : Name attriName;
Access restriction: The method createName(String, String, String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
127 : attriName = soapFactory.createName(atts.getLocalName(i),attriPre,atts.getURI(i));
Access restriction: The method createName(String) from the type SOAPFactory is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
131 : attriName = soapFactory.createName(atts.getLocalName(i));
Access restriction: The method addAttribute(Name, String) from the type SOAPElement is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
133 : currentElement.addAttribute(attriName, atts.getValue(i));
Access restriction: The type SOAPException is not accessible due to restriction on classpath entry /shared/webtools/projects/wtp-R3.1-S/workdir/plugins/javax.xml.soap_1.2.0.v200905122109/lib/saaj.jar
SoapElementSaxHandler.java :
136 : catch (SOAPException e)