Lines Matching defs:namespace

58 import javax.xml.namespace.QName;
226 throw new RuntimeModelerException("runtime.modeler.portname.servicename.namespace.mismatch",
285 private Class getExceptionBeanClass(String className, Class exception, String name, String namespace) {
291 return WrapperBeanGenerator.createExceptionBean(className, exception, targetNamespace, name, namespace, loader);
413 * gets the namespace <code>String</code> for a given <code>packageName</code>
414 * @param packageName the name of the package used to find a namespace.
416 * @return the namespace for the specified <code>packageName</code>
432 StringBuilder namespace = new StringBuilder("http://");
435 namespace.append('.');
436 namespace.append(tokens[i]);
438 namespace.append('/');
439 return namespace.toString();
694 // headers must have a namespace
762 if (isHeader && paramQName.getNamespaceURI().equals("")) { // headers cannot be in empty namespace
823 //Lets take the service namespace and overwrite it with the one we get it from wsdl
967 //its rpclit body param, set namespace to ""
1048 String namespace = targetNamespace;
1061 namespace = webFault.targetNamespace();
1066 exceptionBean = getExceptionBeanClass(className, exception, name, namespace);
1073 QName faultName = new QName(namespace, name);
1458 if (xmlElem != null && !xmlElem.namespace().equals("##default")) {
1459 xmlElemNS = xmlElem.namespace();
1462 throw new RuntimeModelerException("@XmlElement(namespace)="+xmlElemNS+" and @WebResult(targetNamespace)="+webResultNS+" are different for method " +method);
1498 if (xmlElem != null && !xmlElem.namespace().equals("##default")) {
1499 xmlElemNS = xmlElem.namespace();
1502 throw new RuntimeModelerException("@XmlElement(namespace)="+xmlElemNS+" and @WebParam(targetNamespace)="+webParamNS+" are different for method " +method);