WSDL parsing failed :WSDL Parsing Failed: Connection timed out
We did an undeploy of the esb system with ant and this solved the problem.
This is how we did the undeployment:
build.xml:
<?xml version="1.0" encoding="windows-1252" ?>
<project name="deploy" default="undeploy-esb">
<property file="build.properties"/>
<import file="../etc/ESBMetadataMigrationTaskdefs.xml"/>
<target name="undeploy-esb">
<undeployESBEntities
esbMetadataServerHostname="[HOSTNAME]"
esbMetadataServerPort="[PORT]"
userName="oc4jadmin"
password="[PASSWORD]">
<system guid="[ESBSYSTEM GUID]"/>
</undeployESBEntities>
</target>
</project>
[ESBSYSTEM GUID] can be found in de dehydration store of the SOA suite:
select name, guid from oraesb.wf_systems;
You need some extra files to make ant work, these files can be found in $ORACLE_HOME/integration/esb/deployment there is an zip file: documentation.zip. In this zip file the files you need are there.
Did this post help you in any way can you please leave a comment? This will motivate me writing more posts.
No comments:
Post a Comment
comment