Forum Post: RE: deploySoap.sh fails over incorrect URL

  • Thread starter Thread starter David Cleary
  • Start date Start date
Status
Not open for further replies.
D

David Cleary

Guest
The host name is determined dynamically through this piece of script: # Function to read the DNS Name loadDNSName() { _dnsname=.. _new=.. _hostname=.. if [ "`uname`" = "AIX" ] ; then _new="-n" else _new="" fi _hostname=`uname -n | cut -d " " -f 1` _dnsname=`host ${_new} ${_hostname} | cut -d " " -f 1` } This seems to be failing on your system. Here is what I get when I execute uname and host on a Linux system: linuxx86_64:116$ uname -n | cut -d " " -f 1 oelxdev06 linuxx86_64:116$ host oelxdev06 | cut -d " " -f 1 oelxdev06.bedford.progress.com linuxx86_64:116$ What system are you running on and what do you see when executing these commands? Note for AIX, you need to add a –n when running host. Thanks Dave From: bronco [mailto:bounce-bfvo@community.progress.com] Sent: Thursday, March 05, 2015 11:16 AM To: TU.OE.Deployment@community.progress.com Subject: [Technical Users - OE Deployment] deploySoap.sh fails over incorrect URL deploySoap.sh fails over incorrect URL Thread created by bronco I'm trying to script the deployment of a wsm file to a PASOE instance. To do so I execute this from the CLI: ../bin/deploySOAP.sh fabvoxws.wsm fabvoxws This fails. Looking at the logging I see: Connecting SOAP transport at URI: http://Host:10010/fabvoxws/soap And subsequently everthing fails. Now I didn't tell the PASOE instance that the URL is http://Host :... How do I correct this? I know I can make an entry in /etc/hosts but that's not cricket... Stop receiving emails on this subject. Flag this post as spam/abuse.

Continue reading...
 
Status
Not open for further replies.
Back
Top