#------------------- my $USER = "evouser" ; my $PASS = "xxxxxxx" ; my $PROTOCOL = "http" ; # http or https my $SERVER = "205.236.148.5" ; # IP or hostname of soap adapter my $PORT = 8095 ; # port number SOAP server is running on my $WSDL_LOC = "/evo-soap/services/EvoServerSoapService?wsdl" ; # build the WSDL URL my $WSDL_URL = $PROTOCOL . "://" . $SERVER . ":" . $PORT . $WSDL_LOC ; print "Using SOAP WSDL located at: \n " . $WSDL_URL . "\n" ; print "Creating the SOAP service ....\n" ; my $service = SOAP::WSDL->new( wsdl => $WSDL_URL ) ;