This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/perl -w | |
| #author:Sanchez Octavio | |
| use strict; | |
| use warnings; | |
| use LWP::UserAgent; | |
| use HTTP::Request::Common; | |
| my $datestring = localtime(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:fac="http://facade.web.ws.hr.employees.osanchezhuerta.org/" xmlns:xsd="http://domain.web.ws.hr.employees.osanchezhuerta.org/xsd/"> | |
| <soapenv:Header/> | |
| <soapenv:Body> | |
| <fac:consultarSalariesPorRango> | |
| <fac:governanceHeaderRequest> | |
| <xsd:hrHeader> | |
| <xsd:contextoEntidad></xsd:contextoEntidad> | |
| <xsd:fechaPeticion></xsd:fechaPeticion> | |
| <xsd:folio>1</xsd:folio> | |
| <xsd:idCanal>1</xsd:idCanal> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/perl -w | |
| #author:Sanchez Octavio | |
| use strict; | |
| use LWP::UserAgent; | |
| use HTTP::Request::Common; | |
| my $datestring = localtime(); | |
| print("1.SOAP CLIENT TEST - SERVICIO HR EMPLOYEES\n"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #Octavio Sanchez | |
| username=weblogic | |
| password=weblogic1 | |
| providerURL=t3://localhost:7101 | |
| fileStoreDirecory=/config/jms/TestFileStore | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # OCTAVIO SANCHEZ, http://codefixes.blogspot.mx/ | |
| # SOFTWARE ENGINEER | |
| from java.io import FileInputStream | |
| from java.util import Properties | |
| def loadProperties(fileName): | |
| properties = Properties() | |
| input = FileInputStream(fileName) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesRuntime-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesServer-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesSDK-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesJava-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesJRE-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesClient-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesSamples-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesAMS-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesFTAgent-7.5.0-2.x86_64.rpm | |
| user-vbox:~$ sudo rpm -ivh --nodeps --force-debian MQSeriesFTBase-7.5.0-2.x86_64.rpm | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | dmpmqcfg -m [QUEUE_MANAGER] > BACKUP_FILE.mqsc | |
| runmqsc [QMNAME] < BACKUP_FILE.mqsc > logfile.txt 2>&1 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | RUNMQSC <QUEUEMANAGER> | |
| ALTER QMGR CHLAUTH(DISABLED) | |
| REFRESH SECURITY TYPE(CONNAUTH) | |
| END | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| # List of libraries in Centos machine | |
| sudo yum install system-config-users | |
| sudo yum install ld-linux.so.2 | |
| sudo yum install libgcc_s.so.1 | |
| sudo yum install libstdc++.so.6 | |
| sudo yum install libXtst.i686 | |
| sudo yum install xulrunner.i686 | |
| sudo yum install ld-linux.so.2 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package org.osanchezh.keepnotes.soa.app.test; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| import org.junit.Test; | |
| import org.osanchezh.keepnotes.soa.integration.transfer.TokenTransfer; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; |