Hi ,
I have wsdl files in my src/main/resources folder. In wsdl files i have to provide the place holders based on the profile. I am placing the text as below:
<wsdl:port name="SecCode" binding="tns:SecCodeBinding">
<soap:address location="${SecCode.url}"/>
</wsdl:port>
and in maven pom.xml i specify as below:
<resources>
<resource>
<directory>src/main/resources/wsdl</directory>
<filtering>true</filtering>
</resource>
</resources>
<properties>
<jdk.version>1.5</jdk.version>
<SecCode.url>
http://cseloukduapp05.comfin.ge.com:3539/Processes/StarterProcesses/AlarmKeySecCode</SecCode.url>
</properties>
It gives error as below:
Embedded error: Error running Axis
Emitter failure. Invalid endpoint address in port AlarmKeySecCode in service SecCode_ServiceLocator: ${SecCode.url}
Can any one help out.