________________________________
From: Robert Seletsky <rsele...@unm.edu>
Sent: Friday, June 23, 2017 3:12 PM
To: java-dev@axis.apache.org
Subject: Re: Runtime error 'undeclared namespace "t"'
The WSDL is supplied by Oracle (RightNow)
MG>Oracles example uses double quoted delimiter for namespace URL
https://docs.oracle.com/cd/E41633_01/pt853pbh1/eng/pt/tibr/concept_UnderstandingProvidingWSDLDocuments-076201.html
Understanding Providing WSDL Documents -
Oracle<https://docs.oracle.com/cd/E41633_01/pt853pbh1/eng/pt/tibr/concept_UnderstandingProvidingWSDLDocuments-076201.html>
docs.oracle.com
WS-Addressing header elements for asynchronous request/response operation
types. WS-Security elements UsernameToken and SAMLToken. In addition, provided
WSDL document ...
I am new to all this, but I am able to get a successful build using Maven with
IntelliJ.
MG>ive used eclipse, netbeans and IntelliJ..whichever IDE works for you should
be fine
Robert
________________________________
From: Martin Gainty <mgai...@hotmail.com>
Sent: Friday, June 23, 2017 1:03:19 PM
To: java-dev@axis.apache.org
Subject: Re: Runtime error 'undeclared namespace "t"'
tick marks are a part of CDATA and not a URL delimiter which are you attempting
to declare example:
2.1.7.5 enterprise.wsdl
<definitions targetNamespace="urn:enterprise.soap.sforce.com"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="urn:enterprise.soap.sforce.com"
xmlns:fns="urn:fault.enterprise.soap.sforce.com"
xmlns:ens="urn:sobject.enterprise.soap.sforce.com">
note there are no tick marks in this wsdl nor in any other wsdl namespace
declarations in 2.1.7.5 distro
How did you get tick mark to work as namespace URL delimiter?
Martin
________________________________
From: Robert Seletsky <rsele...@unm.edu>
Sent: Friday, June 23, 2017 11:27 AM
To: java-dev@axis.apache.org
Subject: Re: Runtime error 'undeclared namespace "t"'
Hello Martin,
I can not read your reply, but resolved this issue by rebuilding WSDL with:
<artifactId>axis2-wsdl2code-maven-plugin</artifactId>
<version>1.7.5</version>
since using axis2 1.7.5
________________________________
From: Martin Gainty <mgai...@hotmail.com>
Sent: Friday, June 23, 2017 7:00:11 AM
To: java-dev@axis.apache.org
Subject: Re: Runtime error 'undeclared namespace "t"'
________________________________
From: Robert Seletsky <rsele...@unm.edu>
Sent: Thursday, June 22, 2017 2:38 PM
To: java-dev@axis.apache.org
Subject: Runtime error 'undeclared namespace "t"'
Getting runtime error 'undeclared namespace "t"' since ServiceStub.java
(generated from WSDL via wsdlcode) is missing
xmlns:t='http://docs.oasis-open.org/ws-sx/ws-trust/200512'
MG>any reason you are using single-tick ' instead of quote
xmlns:t="http://docs.oasis-open.org/ws-sx/ws-trust/20051"
which is in the WSDL file.
Please advise.
Robert