Actualizacion a 3.5

This commit is contained in:
james 2023-02-12 23:01:30 -05:00
parent 3fc4ae7884
commit 945a0c373f
261 changed files with 3046 additions and 17336 deletions

View File

@ -1,108 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices
svn://172.17.26.185/COMACO
2021-05-14T20:47:05.591314Z
4636
usermaia1
a11ad980-3ca8-45f0-88f7-f0e618c262b7
mule-project.xml
file
2022-07-28T03:40:47.671824Z
c4eb4d14db30a68bbd9b3b8d9747bd64
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
270
src
dir
bin
dir
flows
dir
pom.xml
file
2022-07-28T03:40:47.671824Z
a0fb1c3e3939d7dd705ca2812f272e71
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
10949
mappings
dir

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-project xmlns="http://www.mulesoft.com/tooling/project" runtimeId="org.mule.tooling.server.3.5.CE" schemaVersion="3.5.0.0">
<name>centralwebservices</name>
<description></description>
</mule-project>

View File

@ -1,360 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.fp.esb</groupId>
<artifactId>centralwebservices</artifactId>
<packaging>mule</packaging>
<version>2.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mule.version>3.5.0</mule.version>
<eclipsePluginVersion>2.8</eclipsePluginVersion>
<jdkName>JavaSE-1.6</jdkName>
<jdk.version>1.6</jdk.version>
<junit.version>4.9</junit.version>
</properties>
<build>
<!-- Use a newer version of the install plugin than what your Maven uses
by default. The older version failed to install the project if there was
no target/classes folder. Since we use mule packaging on the project we actually
create and attach the zip that must be installed. -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId>
<versionRange>[1.6,)</versionRange>
<goals>
<goal>attach-test-resources</goal>
<goal>filter-resources </goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId>
<version>1.9</version>
<extensions>true</extensions>
<configuration>
<copyToAppsDirectory>true</copyToAppsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>project</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${eclipsePluginVersion}</version>
<configuration>
<!-- by default download all sources when generating project files -->
<downloadSources>true</downloadSources>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
</execution>
</executions>
<configuration>
<resources>
<resource>
<directory>src/main/app/</directory>
</resource>
<resource>
<directory>src/main/api/</directory>
</resource>
</resources>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.mule.MuleServer</mainClass>
<arguments>
<argument>-config</argument>
<argument>src/main/app/mule-config.xml</argument>
</arguments>
<classpathScope>compile</classpathScope>
</configuration>
</plugin>
</plugins>
</build>
<!-- plugins for creating site reports -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.5</version>
<configuration>
<configLocation>http://mulesoft.org/download/attachments/92/checkstyle.xml?version=1</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<targetJdk>${jdk.version}</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
<configuration>
<tags>
<tag>TODO</tag>
<tag>@todo</tag>
<tag>FIXME</tag>
<tag>@fixme</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>${jdk.version}</source>
<links>
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
<link>http://java.sun.com/j2se/1.4.2/docs/api</link>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version>
</plugin>
</plugins>
</reporting>
<!-- Mule Dependencies -->
<dependencies>
<dependency>
<groupId>org.mule</groupId>
<artifactId>mule-core</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Xml configuration -->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-spring-config</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Transports -->
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-file</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-http</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jdbc</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jms</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-vm</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Modules -->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-client</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-cxf</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-management</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-scripting</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-sxc</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-xml</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId>
<version>${mule.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mockobjects</groupId>
<artifactId>mockobjects-core</artifactId>
<version>0.09</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>Central</id>
<name>Central</name>
<url>http://repo1.maven.org/maven2/</url>
<layout>default</layout>
</repository>
<repository>
<id>mulesoft-releases</id>
<name>MuleSoft Releases Repository</name>
<url>http://repository.mulesoft.org/releases/</url>
<layout>default</layout>
</repository>
<repository>
<id>mulesoft-snapshots</id>
<name>MuleSoft Snapshots Repository</name>
<url>http://repository.mulesoft.org/snapshots/</url>
<layout>default</layout>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>mulesoft-release</id>
<name>mulesoft release repository</name>
<layout>default</layout>
<url>http://repository.mulesoft.org/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>

View File

@ -1,360 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.fp.esb</groupId>
<artifactId>centralwebservices</artifactId>
<packaging>mule</packaging>
<version>2.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mule.version>3.5.0</mule.version>
<eclipsePluginVersion>2.8</eclipsePluginVersion>
<jdkName>JavaSE-1.6</jdkName>
<jdk.version>1.6</jdk.version>
<junit.version>4.9</junit.version>
</properties>
<build>
<!-- Use a newer version of the install plugin than what your Maven uses
by default. The older version failed to install the project if there was
no target/classes folder. Since we use mule packaging on the project we actually
create and attach the zip that must be installed. -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId>
<versionRange>[1.6,)</versionRange>
<goals>
<goal>attach-test-resources</goal>
<goal>filter-resources </goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId>
<version>1.9</version>
<extensions>true</extensions>
<configuration>
<copyToAppsDirectory>true</copyToAppsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>project</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${eclipsePluginVersion}</version>
<configuration>
<!-- by default download all sources when generating project files -->
<downloadSources>true</downloadSources>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
</execution>
</executions>
<configuration>
<resources>
<resource>
<directory>src/main/app/</directory>
</resource>
<resource>
<directory>src/main/api/</directory>
</resource>
</resources>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.mule.MuleServer</mainClass>
<arguments>
<argument>-config</argument>
<argument>src/main/app/mule-config.xml</argument>
</arguments>
<classpathScope>compile</classpathScope>
</configuration>
</plugin>
</plugins>
</build>
<!-- plugins for creating site reports -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.5</version>
<configuration>
<configLocation>http://mulesoft.org/download/attachments/92/checkstyle.xml?version=1</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<targetJdk>${jdk.version}</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
<configuration>
<tags>
<tag>TODO</tag>
<tag>@todo</tag>
<tag>FIXME</tag>
<tag>@fixme</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>${jdk.version}</source>
<links>
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
<link>http://java.sun.com/j2se/1.4.2/docs/api</link>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version>
</plugin>
</plugins>
</reporting>
<!-- Mule Dependencies -->
<dependencies>
<dependency>
<groupId>org.mule</groupId>
<artifactId>mule-core</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Xml configuration -->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-spring-config</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Transports -->
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-file</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-http</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jdbc</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jms</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-vm</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Modules -->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-client</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-cxf</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-management</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-scripting</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-sxc</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-xml</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId>
<version>${mule.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mockobjects</groupId>
<artifactId>mockobjects-core</artifactId>
<version>0.09</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>Central</id>
<name>Central</name>
<url>http://repo1.maven.org/maven2/</url>
<layout>default</layout>
</repository>
<repository>
<id>mulesoft-releases</id>
<name>MuleSoft Releases Repository</name>
<url>http://repository.mulesoft.org/releases/</url>
<layout>default</layout>
</repository>
<repository>
<id>mulesoft-snapshots</id>
<name>MuleSoft Snapshots Repository</name>
<url>http://repository.mulesoft.org/snapshots/</url>
<layout>default</layout>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>mulesoft-release</id>
<name>mulesoft release repository</name>
<layout>default</layout>
<url>http://repository.mulesoft.org/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>

View File

@ -1,28 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/bin
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7

View File

@ -1,300 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/flows
svn://172.17.26.185/COMACO
2016-02-02T21:19:16.375331Z
4424
cvasquez
a11ad980-3ca8-45f0-88f7-f0e618c262b7
centralwebservices-colaimpresion.mflow
file
2022-07-28T03:40:47.635824Z
555c6385db9db695aa3250f03e814f20
2015-01-23T14:02:29.360857Z
3814
dcruz
6874
centralwebservices-datosnap.mflow
file
2022-07-28T03:40:47.635824Z
97b22ec2a7760bdb32606d287794d764
2016-02-02T21:19:16.375331Z
4424
cvasquez
6824
centralwebservicessnap-ruc.mflow
file
2022-07-28T03:40:47.635824Z
8cbfd951b51f9fc85970b0d889d83371
2015-01-22T09:54:27.633570Z
3785
dcruz
4370
centralwebservicessnap-ced.mflow
file
2022-07-28T03:40:47.636824Z
6a9b136d0952d97f041b4fd3ed91c02e
2015-01-22T09:54:27.633570Z
3785
dcruz
4284
centralwebservices-lectura.mflow
file
2022-07-28T03:40:47.636824Z
a693314a81e4fe24be55c4386f4e3acc
2015-01-23T14:02:29.360857Z
3814
dcruz
6861
centralwebservices-documentos.mflow
file
2022-07-28T03:40:47.636824Z
0d888b6348ff8d70bcd1761d4a727359
2015-01-23T14:02:29.360857Z
3814
dcruz
6797
centralwebservices-consultalogin.mflow
file
2022-07-28T03:40:47.636824Z
bae75ce5d29ce621f6ffa9a016966e2f
2015-01-23T14:02:29.360857Z
3814
dcruz
6883
centralwebservices-armas.mflow
file
2022-07-28T03:40:47.637824Z
bd255b5d994c310e75abe1ea01af4428
2015-01-23T14:02:29.360857Z
3814
dcruz
6731

View File

@ -1,111 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-1">
<flow SubFlow="false" name="centralwebservices-1Flow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="2f3400d2-9cfd-4c79-a8a5-a36fd2650db0">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/armasSerieProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Proxy servicio armas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ArmaServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ArmaServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Proxy cliente servicio armas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ArmaServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
</mule-configuration>

View File

@ -1,111 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-1">
<flow SubFlow="false" name="centralwebservices-1Flow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="2f3400d2-9cfd-4c79-a8a5-a36fd2650db0">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/armasSerieProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Proxy servicio armas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ArmaServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ArmaServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Proxy cliente servicio armas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ArmaServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-colaimpresion">
<flow SubFlow="false" name="centralwebservices-colaimpresionFlow" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="e6f953da-7257-4ee7-9604-f9a4fc1d87ba">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/colaImpresionProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio cola impresion" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ColaImpresionServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ColaImpresionServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio cola impresion" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ColaImpresionServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene todos los servicios de la cola de impresion</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-colaimpresion">
<flow SubFlow="false" name="centralwebservices-colaimpresionFlow" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="e6f953da-7257-4ee7-9604-f9a4fc1d87ba">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/colaImpresionProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio cola impresion" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ColaImpresionServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ColaImpresionServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio cola impresion" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ColaImpresionServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene todos los servicios de la cola de impresion</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-consultalogin">
<flow SubFlow="false" name="centralwebservices-consultalogin1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="1503ac21-9bf1-4c21-86e1-a43850604e09">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/consultaLoginProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio consulta login" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ConsultaLoginServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ConsultaLoginServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio consulta login" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ConsultaLoginServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene los servicios web relacionados con la cola de impresion</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-consultalogin">
<flow SubFlow="false" name="centralwebservices-consultalogin1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="1503ac21-9bf1-4c21-86e1-a43850604e09">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/consultaLoginProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio consulta login" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/ConsultaLoginServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="ConsultaLoginServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio consulta login" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/ConsultaLoginServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene los servicios web relacionados con la cola de impresion</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-datosnap">
<flow SubFlow="false" name="centralwebservices-datosnapFlow" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="e6f953da-7257-4ee7-9604-f9a4fc1d87ba">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/datoSnapProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio datos del snap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/DatosSnapServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="DatosSnapServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente datos del snap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/DatosSnapServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene el servicio de Datos del Snap</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-datosnap">
<flow SubFlow="false" name="centralwebservices-datosnapFlow" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="e6f953da-7257-4ee7-9604-f9a4fc1d87ba">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/datoSnapProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio datos del snap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/DatosSnapServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="DatosSnapServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente datos del snap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/DatosSnapServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Contiene el servicio de Datos del Snap</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-documentos">
<flow SubFlow="false" name="centralwebservices-documentosFlow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="ff30219a-637f-4d91-ac33-af26107117fc">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/documentosProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio documentos" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/DocumentosServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="DocumentosServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio documentos" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/DocumentosServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description></description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-lectura">
<flow SubFlow="false" name="centralwebservices-lecturaFlow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="b00c7632-3b7a-4c52-bbde-62c034034ff5">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/lecturaProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio lecturas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/InventarioServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="InventarioServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio lecturas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/InventarioServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Flujo en donde se publica el servicio de lectura de los datos en el hand held</description>
</mule-configuration>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservices-lectura">
<flow SubFlow="false" name="centralwebservices-lecturaFlow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="b00c7632-3b7a-4c52-bbde-62c034034ff5">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8085/lecturaProxy"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="Servicio lecturas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation" value="http://172.17.26.183:8080/frontend/InventarioServiceImpl?wsdl"/>
<property name="serviceClass"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-service"/>
<property name="payload" value="body"/>
<property name="configuration-ref"/>
<property name="namespace" value="http://impl.webservices.frontend.fp.com/"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="InventarioServiceImplService"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Cliente servicio lecturas" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="wsdlLocation"/>
<property name="port"/>
<property name="serviceClass"/>
<property name="operation"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/proxy-client"/>
<property name="mtomEnabled"/>
<property name="payload" value="body"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="configuration-ref"/>
<property name="auxiliary;index" value="4"/>
<property name="decoupledEndpoint"/>
</properties>
</pattern>
<endpoint direction="Outbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#2">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.183:8080/frontend/InventarioServiceImpl"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method" value="POST"/>
<property name="user"/>
<property name="auxiliary;index" value="5"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
</lane>
</flow>
<description>Flujo en donde se publica el servicio de lectura de los datos en el hand held</description>
</mule-configuration>

View File

@ -1,72 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservicessnap-ced">
<flow SubFlow="false" name="centralwebservicessnap-cedFlow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="b734456e-b1d0-433d-af3a-0df2fc805bdc">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8090/serviceCedula"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="CedulaSnap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation"/>
<property name="serviceClass" value="com.fp.webservices.snap.cedula.CedulaServicio"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/jaxws-service"/>
<property name="configuration-ref"/>
<property name="namespace"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="CedulaServicio"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Java" type="http://www.mulesoft.org/schema/mule/core/component" entity-id="Java#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="class" value="com.fp.webservices.snap.cedula.impl.CedulaServicioImpl"/>
<property name="auxiliary;index" value="4"/>
</properties>
</pattern>
</lane>
</flow>
<description></description>
</mule-configuration>

View File

@ -1,72 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mule-configuration xmlns="http://www.mulesoft.com/tooling/messageflow" name="centralwebservicessnap-ruc">
<flow SubFlow="false" name="centralwebservicessnap-rucFlow1" type="http://www.mulesoft.org/schema/mule/core/flow" entity-id="eded2ab7-0eab-418a-98d6-6f36c210a28a">
<properties>
<property name="initialState"/>
<property name="processingStrategy2"/>
<property name="processingStrategy"/>
<property name="bussinessEventsLabel"/>
<property name="tracking:enable-default-events"/>
<property name="auxiliary;index" value="1"/>
</properties>
<lane hadOnlyOneElement="false" index="0" isChoiceOtherwiseLane="false" entity-id="compartment-lane#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<endpoint direction="Inbound" name="HTTP" type="http://www.mulesoft.org/schema/mule/http/endpoint" entity-id="HTTP#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="host"/>
<property name="businessEventsLabel"/>
<property name="followRedirects"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/http/endpoint"/>
<property name="keepAlive"/>
<property name="contentType"/>
<property name="disableTransportTransformer"/>
<property name="password"/>
<property name="exchange-pattern" value="request-response"/>
<property name="tracking:enable-default-events"/>
<property name="ref"/>
<property name="transformer-refs"/>
<property name="httpLabel"/>
<property name="address" value="http://172.17.26.182:8090/serviceRUC"/>
<property name="path"/>
<property name="encoding"/>
<property name="responseTransformer-refs"/>
<property name="method"/>
<property name="user"/>
<property name="auxiliary;index" value="2"/>
<property name="responseTimeout"/>
<property name="mimeType"/>
<property name="connector-ref"/>
</properties>
</endpoint>
<pattern name="RucSnap" type="http://www.mulesoft.org/schema/mule/cxf/soapComponent" entity-id="CXF#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="port"/>
<property name="wsdlLocation"/>
<property name="serviceClass" value="com.fp.webservices.snap.ruc.RucServicio"/>
<property name="org.mule.tooling.ui.modules.core.widgets.meta.ModeAttribute" value="http://www.mulesoft.org/schema/mule/cxf/jaxws-service"/>
<property name="configuration-ref"/>
<property name="namespace"/>
<property name="validationEnabled"/>
<property name="bindingId"/>
<property name="onException"/>
<property name="service" value="RucServicio"/>
<property name="mtomEnabled"/>
<property name="soapVersion"/>
<property name="enableMuleSoapHeaders"/>
<property name="auxiliary;index" value="3"/>
</properties>
</pattern>
<pattern name="Java" type="http://www.mulesoft.org/schema/mule/core/component" entity-id="Java#1">
<graphicalData x="0" y="0" width="0" height="0"/>
<properties>
<property name="class" value="com.fp.webservices.snap.ruc.impl.RucServicioImpl"/>
<property name="auxiliary;index" value="4"/>
</properties>
</pattern>
</lane>
</flow>
<description>Servicio que realiza la implementacion del servicio web que provee la SNAP para realizar la conexion al SRI</description>
</mule-configuration>

View File

@ -1,28 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/mappings
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7

View File

@ -1,332 +1,332 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.fp.esb</groupId> <groupId>com.fp.esb</groupId>
<artifactId>centralwebservices</artifactId> <artifactId>centralwebservices</artifactId>
<packaging>mule</packaging> <packaging>mule</packaging>
<version>2.1</version> <version>2.2.1</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mule.version>3.5.0</mule.version> <mule.version>3.5.0</mule.version>
<eclipsePluginVersion>2.8</eclipsePluginVersion> <eclipsePluginVersion>2.8</eclipsePluginVersion>
<jdkName>JavaSE-1.6</jdkName> <jdkName>JavaSE-1.6</jdkName>
<jdk.version>1.6</jdk.version> <jdk.version>1.8</jdk.version>
<junit.version>4.9</junit.version> <junit.version>4.9</junit.version>
</properties> </properties>
<build> <build>
<!-- Use a newer version of the install plugin than what your Maven uses <!-- Use a newer version of the install plugin than what your Maven uses
by default. The older version failed to install the project if there was by default. The older version failed to install the project if there was
no target/classes folder. Since we use mule packaging on the project we actually no target/classes folder. Since we use mule packaging on the project we actually
create and attach the zip that must be installed. --> create and attach the zip that must be installed. -->
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version> <version>2.3.1</version>
</plugin> </plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings <!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. --> only. It has no influence on the Maven build itself. -->
<plugin> <plugin>
<groupId>org.eclipse.m2e</groupId> <groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId> <artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<configuration> <configuration>
<lifecycleMappingMetadata> <lifecycleMappingMetadata>
<pluginExecutions> <pluginExecutions>
<pluginExecution> <pluginExecution>
<pluginExecutionFilter> <pluginExecutionFilter>
<groupId>org.mule.tools</groupId> <groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId> <artifactId>maven-mule-plugin</artifactId>
<versionRange>[1.6,)</versionRange> <versionRange>[1.6,)</versionRange>
<goals> <goals>
<goal>attach-test-resources</goal> <goal>attach-test-resources</goal>
<goal>filter-resources </goal> <goal>filter-resources </goal>
</goals> </goals>
</pluginExecutionFilter> </pluginExecutionFilter>
<action> <action>
<ignore/> <ignore/>
</action> </action>
</pluginExecution> </pluginExecution>
</pluginExecutions> </pluginExecutions>
</lifecycleMappingMetadata> </lifecycleMappingMetadata>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.mule.tools</groupId> <groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId> <artifactId>maven-mule-plugin</artifactId>
<version>1.9</version> <version>1.9</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<copyToAppsDirectory>true</copyToAppsDirectory> <copyToAppsDirectory>true</copyToAppsDirectory>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version> <version>2.3.2</version>
<configuration> <configuration>
<source>${jdk.version}</source> <source>1.7</source>
<target>${jdk.version}</target> <target>1.7</target>
<encoding>ISO-8859-1</encoding> <encoding>ISO-8859-1</encoding>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version> <version>2.2.1</version>
<configuration> <configuration>
<descriptorRefs> <descriptorRefs>
<descriptorRef>project</descriptorRef> <descriptorRef>project</descriptorRef>
</descriptorRefs> </descriptorRefs>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId> <artifactId>maven-eclipse-plugin</artifactId>
<version>${eclipsePluginVersion}</version> <version>${eclipsePluginVersion}</version>
<configuration> <configuration>
<!-- by default download all sources when generating project files --> <!-- by default download all sources when generating project files -->
<downloadSources>true</downloadSources> <downloadSources>true</downloadSources>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version> <version>1.7</version>
<executions> <executions>
<execution> <execution>
<id>add-resource</id> <id>add-resource</id>
<phase>generate-resources</phase> <phase>generate-resources</phase>
<goals> <goals>
<goal>add-resource</goal> <goal>add-resource</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<resources> <resources>
<resource> <resource>
<directory>src/main/app/</directory> <directory>src/main/app/</directory>
</resource> </resource>
<resource> <resource>
<directory>src/main/api/</directory> <directory>src/main/api/</directory>
</resource> </resource>
</resources> </resources>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId> <artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version> <version>1.2.1</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>java</goal> <goal>java</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<mainClass>org.mule.MuleServer</mainClass> <mainClass>org.mule.MuleServer</mainClass>
<arguments> <arguments>
<argument>-config</argument> <argument>-config</argument>
<argument>src/main/app/mule-config.xml</argument> <argument>src/main/app/mule-config.xml</argument>
</arguments> </arguments>
<classpathScope>compile</classpathScope> <classpathScope>compile</classpathScope>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<!-- plugins for creating site reports --> <!-- plugins for creating site reports -->
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId> <artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version> <version>2.4.2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId> <artifactId>maven-checkstyle-plugin</artifactId>
<version>2.5</version> <version>2.5</version>
<configuration> <configuration>
<configLocation>http://mulesoft.org/download/attachments/92/checkstyle.xml?version=1</configLocation> <configLocation>http://mulesoft.org/download/attachments/92/checkstyle.xml?version=1</configLocation>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId> <artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version> <version>2.5</version>
<configuration> <configuration>
<targetJdk>${jdk.version}</targetJdk> <targetJdk>${jdk.version}</targetJdk>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId> <artifactId>cobertura-maven-plugin</artifactId>
<version>2.5</version> <version>2.5</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId> <artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version> <version>2.4</version>
<configuration> <configuration>
<tags> <tags>
<tag>TODO</tag> <tag>TODO</tag>
<tag>@todo</tag> <tag>@todo</tag>
<tag>FIXME</tag> <tag>FIXME</tag>
<tag>@fixme</tag> <tag>@fixme</tag>
<tag>@deprecated</tag> <tag>@deprecated</tag>
</tags> </tags>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId> <artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version> <version>2.2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version> <version>2.7</version>
<configuration> <configuration>
<source>${jdk.version}</source> <source>${jdk.version}</source>
<links> <links>
<link>http://java.sun.com/j2ee/1.4/docs/api</link> <link>http://java.sun.com/j2ee/1.4/docs/api</link>
<link>http://java.sun.com/j2se/1.4.2/docs/api</link> <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link> <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links> </links>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId> <artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-2</version> <version>2.0-beta-2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId> <artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version> <version>2.3.2</version>
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
<!-- Mule Dependencies --> <!-- Mule Dependencies -->
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mule</groupId> <groupId>org.mule</groupId>
<artifactId>mule-core</artifactId> <artifactId>mule-core</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Xml configuration --> <!-- Xml configuration -->
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-spring-config</artifactId> <artifactId>mule-module-spring-config</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Mule Transports --> <!-- Mule Transports -->
<dependency> <dependency>
<groupId>org.mule.transports</groupId> <groupId>org.mule.transports</groupId>
<artifactId>mule-transport-file</artifactId> <artifactId>mule-transport-file</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.transports</groupId> <groupId>org.mule.transports</groupId>
<artifactId>mule-transport-http</artifactId> <artifactId>mule-transport-http</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.transports</groupId> <groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jdbc</artifactId> <artifactId>mule-transport-jdbc</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.transports</groupId> <groupId>org.mule.transports</groupId>
<artifactId>mule-transport-jms</artifactId> <artifactId>mule-transport-jms</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.transports</groupId> <groupId>org.mule.transports</groupId>
<artifactId>mule-transport-vm</artifactId> <artifactId>mule-transport-vm</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Mule Modules --> <!-- Mule Modules -->
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-client</artifactId> <artifactId>mule-module-client</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-cxf</artifactId> <artifactId>mule-module-cxf</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-management</artifactId> <artifactId>mule-module-management</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-scripting</artifactId> <artifactId>mule-module-scripting</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-sxc</artifactId> <artifactId>mule-module-sxc</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mule.modules</groupId> <groupId>org.mule.modules</groupId>
<artifactId>mule-module-xml</artifactId> <artifactId>mule-module-xml</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- for testing --> <!-- for testing -->
<dependency> <dependency>
<groupId>org.mule.tests</groupId> <groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId> <artifactId>mule-tests-functional</artifactId>
<version>${mule.version}</version> <version>${mule.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mockobjects</groupId> <groupId>mockobjects</groupId>
<artifactId>mockobjects-core</artifactId> <artifactId>mockobjects-core</artifactId>
<version>0.09</version> <version>0.09</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>${junit.version}</version> <version>${junit.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<repositories> <repositories>
<repository> <repository>
<id>Central</id> <id>Central</id>
<name>Central</name> <name>Central</name>
<url>http://repo1.maven.org/maven2/</url> <url>http://repo1.maven.org/maven2/</url>

View File

@ -1,34 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src
svn://172.17.26.185/COMACO
2021-05-14T20:47:05.591314Z
4636
usermaia1
a11ad980-3ca8-45f0-88f7-f0e618c262b7
test
dir
main
dir

View File

@ -1,40 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main
svn://172.17.26.185/COMACO
2021-05-14T20:47:05.591314Z
4636
usermaia1
a11ad980-3ca8-45f0-88f7-f0e618c262b7
app
dir
java
dir
api
dir
resources
dir

View File

@ -1,28 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/api
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7

View File

@ -1,436 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/app
svn://172.17.26.185/COMACO
2021-05-14T20:47:05.591314Z
4636
usermaia1
a11ad980-3ca8-45f0-88f7-f0e618c262b7
centralwebservices-datosnap.xml
file
2022-07-28T03:40:47.054822Z
abd7e0b326e86a8083d32c46df9edd14
2016-02-02T21:18:20.974622Z
4422
cvasquez
1799
centralwebservicessnap-ruc.xml
file
2022-07-28T03:40:47.054822Z
bea6413e59dbaeea24ac722ae0afce7a
2015-04-30T06:52:25.886120Z
4063
cpiedra
has-props
1506
centralwebservicessnap-ced.xml
file
2022-07-28T03:40:47.054822Z
4f863119b8acfe73437106bf70173ee2
2021-05-14T20:47:05.591314Z
4636
usermaia1
has-props
1478
centralwebservices-lectura.xml
file
2022-07-28T03:40:47.055822Z
0abb5675df5e30bdbeeb5d07e8d74a8b
2015-04-30T06:52:25.886120Z
4063
cpiedra
has-props
1799
centralwebservices-documentos.xml
file
2022-07-28T03:40:47.055822Z
f381cac442c8bb564915e393b9621351
2015-04-30T06:52:25.886120Z
4063
cpiedra
has-props
1812
mule-deploy.properties
file
2022-07-28T03:40:47.055822Z
dfe5215305598015e6ab8b5936303519
2016-02-02T21:18:48.187992Z
4423
cvasquez
has-props
440
centralwebservices-consultalogin.xml
file
2022-07-28T03:40:47.056822Z
953b7500cf9a50010434f5472bbd0493
2015-04-30T06:52:25.886120Z
4063
cpiedra
has-props
2016
centralwebservices-lectura2.xml
file
2022-07-28T03:40:47.056822Z
234ab207d8fe5d4689896602521552d7
2015-05-08T04:25:52.157662Z
4082
cpiedra
1602
centralwebservices-consultalogin1.xml
file
2022-07-28T03:40:47.056822Z
1c8401a38c24019d4d08a01e833179ec
2015-05-08T04:25:52.157662Z
4082
cpiedra
1834
centralwebservices-armas.xml
file
2022-07-28T03:40:47.056822Z
d3330dcc84d047009ddb09a75d5ddc96
2015-04-30T06:52:25.886120Z
4063
cpiedra
has-props
2200
centralwebservices-colaimpresion.xml
file
2022-07-28T03:40:47.057822Z
bf06f779305e2e2e09e4ebe6604a7bf1
2017-06-26T18:54:33.784915Z
4605
jespinosa
has-props
1863
mule-app.properties
file
2022-07-28T03:40:47.057822Z
d41d8cd98f00b204e9800998ecf8427e
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
0

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<https:connector name="HTTP_HTTPS" cookieSpec="netscape" validateConnections="true" sendBufferSize="0" receiveBufferSize="0" receiveBacklog="0" clientSoTimeout="10000" serverSoTimeout="10000" socketSoLinger="0" doc:name="HTTP-HTTPS">
<https:tls-key-store path="/home/comaco/servers/mule-standalone-3.5.0/conf/mule.jks" keyPassword="szx2014@YJA" storePassword="szx2014@YJA"/>
</https:connector>
<flow name="centralwebservices-1Flow1" doc:name="centralwebservices-1Flow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/armasSerieProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service doc:name="Proxy servicio armas" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ArmaServiceImpl?wsdl"
namespace="http://impl.webservices.frontend.fp.com/" service="ArmaServiceImplService"/>
<cxf:proxy-client doc:name="Proxy cliente servicio armas" payload="body"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ArmaServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<https:connector name="HTTP_HTTPS" cookieSpec="netscape" validateConnections="true" sendBufferSize="0" receiveBufferSize="0" receiveBacklog="0" clientSoTimeout="10000" serverSoTimeout="10000" socketSoLinger="0" doc:name="HTTP-HTTPS">
<https:tls-key-store path="/home/comaco/servers/mule-standalone-3.5.0/conf/mule.jks" keyPassword="szx2014@YJA" storePassword="szx2014@YJA"/>
</https:connector>
<flow name="centralwebservices-1Flow1" doc:name="centralwebservices-1Flow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/armasSerieProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service doc:name="Proxy servicio armas" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ArmaServiceImpl?wsdl"
namespace="http://impl.webservices.frontend.fp.com/" service="ArmaServiceImplService"/>
<cxf:proxy-client doc:name="Proxy cliente servicio armas" payload="body"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ArmaServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-colaimpresionFlow" doc:name="centralwebservices-colaimpresionFlow">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/colaImpresionProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ColaImpresionServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ColaImpresionServiceImpl?wsdl" doc:name="Servicio cola impresion"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio cola impresion"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://172.17.26.183/frontend/ColaImpresionServiceImpl" doc:name="HTTP" responseTimeout="1800000"/>
</flow>
</mule>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-consultalogin1" doc:name="centralwebservices-consultalogin1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/consultaLoginProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow>
</mule>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-consultalogin1" doc:name="centralwebservices-consultalogin1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/consultaLoginProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">
<flow name="centralwebservices-consultalogin2" doc:name="centralwebservices-consultalogin2">
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/consultaLoginProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="http://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">
<flow name="centralwebservices-consultalogin2" doc:name="centralwebservices-consultalogin2">
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/consultaLoginProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="http://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-datosnapFlow1" doc:name="centralwebservices-datosnapFlow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/datoSnapProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="DatosSnapServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/DatosSnapServiceImpl?wsdl" doc:name="Servicio datos del snap"/>
<cxf:proxy-client payload="body" doc:name="Cliente datos del snap"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/DatosSnapServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-documentosFlow1" doc:name="centralwebservices-documentosFlow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/documentosProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="DocumentosServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/DocumentosServiceImpl?wsdl" doc:name="Servicio documentos"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio documentos"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/DocumentosServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-lecturaFlow1" doc:name="centralwebservices-lecturaFlow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/lecturaProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="InventarioServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl?wsdl" doc:name="Servicio lecturas"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio lecturas"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">
<flow name="centralwebservices-lecturaFlow2" doc:name="centralwebservices-lecturaFlow2">
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/lecturaProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="InventarioServiceImplService" payload="body" wsdlLocation="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl?wsdl" doc:name="Servicio lecturas"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio lecturas"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" address="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">
<flow name="centralwebservices-lecturaFlow2" doc:name="centralwebservices-lecturaFlow2">
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/lecturaProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="InventarioServiceImplService" payload="body" wsdlLocation="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl?wsdl" doc:name="Servicio lecturas"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio lecturas"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" address="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl" doc:name="HTTP"/>
</flow>
</mule>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservicessnap-cedFlow1" doc:name="centralwebservicessnap-cedFlow1">
<https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="a" connector-ref="HTTP_HTTPS"/>
<cxf:jaxws-service doc:name="CedulaSnap" serviceClass="com.fp.webservices.snap.cedula.CedulaServicio" service="CedulaServicio"/>
<component class="com.fp.webservices.snap.cedula.impl.CedulaServicioImpl" doc:name="Java"/>
</flow>
</mule>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservicessnap-cedFlow1" doc:name="centralwebservicessnap-cedFlow1">
<https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="a" connector-ref="HTTP_HTTPS"/>
<cxf:jaxws-service doc:name="CedulaSnap" serviceClass="com.fp.webservices.snap.cedula.CedulaServicio" service="CedulaServicio"/>
<component class="com.fp.webservices.snap.cedula.impl.CedulaServicioImpl" doc:name="Java"/>
</flow>
</mule>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservicessnap-rucFlow1" doc:name="centralwebservicessnap-rucFlow1">
<https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="https://serviciosarmas.ccffaa.mil.ec:8085/serviceRUC" connector-ref="HTTP_HTTPS"/>
<cxf:jaxws-service doc:name="RucSnap" service="RucServicio" serviceClass="com.fp.webservices.snap.ruc.RucServicio"/>
<component class="com.fp.webservices.snap.ruc.impl.RucServicioImpl" doc:name="Java"/>
</flow>
</mule>

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservicessnap-rucFlow1" doc:name="centralwebservicessnap-rucFlow1">
<https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="https://serviciosarmas.ccffaa.mil.ec:8085/serviceRUC" connector-ref="HTTP_HTTPS"/>
<cxf:jaxws-service doc:name="RucSnap" service="RucServicio" serviceClass="com.fp.webservices.snap.ruc.RucServicio"/>
<component class="com.fp.webservices.snap.ruc.impl.RucServicioImpl" doc:name="Java"/>
</flow>
</mule>

View File

@ -1,5 +0,0 @@
#Thu Apr 30 15:37:39 COT 2015
redeployment.enabled=true
encoding=UTF-8
config.resources=centralwebservicessnap-ruc.xml,centralwebservicessnap-ced.xml,centralwebservices-lectura2.xml,centralwebservices-lectura.xml,centralwebservices-documentos.xml,centralwebservices-consultalogin1.xml,centralwebservices-consultalogin.xml,centralwebservices-colaimpresion.xml,centralwebservices-armas.xml,centralwebservices-datosnap.xml
domain=default

View File

@ -1,5 +0,0 @@
#Thu Apr 30 15:37:39 COT 2015
redeployment.enabled=true
encoding=UTF-8
config.resources=centralwebservicessnap-ruc.xml,centralwebservicessnap-ced.xml,centralwebservices-lectura2.xml,centralwebservices-lectura.xml,centralwebservices-documentos.xml,centralwebservices-consultalogin1.xml,centralwebservices-consultalogin.xml,centralwebservices-colaimpresion.xml,centralwebservices-armas.xml,centralwebservices-datosnap.xml
domain=default

View File

@ -9,7 +9,7 @@ http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/htt
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd"> http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<https:connector name="HTTP_HTTPS" cookieSpec="netscape" validateConnections="true" sendBufferSize="0" receiveBufferSize="0" receiveBacklog="0" clientSoTimeout="10000" serverSoTimeout="10000" socketSoLinger="0" doc:name="HTTP-HTTPS"> <https:connector name="HTTP_HTTPS" cookieSpec="netscape" validateConnections="true" sendBufferSize="0" receiveBufferSize="0" receiveBacklog="0" clientSoTimeout="10000" serverSoTimeout="10000" socketSoLinger="0" doc:name="HTTP-HTTPS">
<https:tls-key-store path="/home/comaco/servers/mule-standalone-3.5.0/conf/mule.jks" keyPassword="szx2014@YJA" storePassword="szx2014@YJA"/> <https:tls-key-store path="/home/comaco/servers/mule-standalone-3.5.0/conf/mule.jks" keyPassword="5pAr1A02@YcFa" storePassword="5pAr1A02@YcFa"/>
</https:connector> </https:connector>
<flow name="centralwebservices-1Flow1" doc:name="centralwebservices-1Flow1"> <flow name="centralwebservices-1Flow1" doc:name="centralwebservices-1Flow1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/armasSerieProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/> <https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/armasSerieProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting" <mule xmlns:https="http://www.mulesoft.org/schema/mule/https" xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting"
xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.5.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd"> http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/https/current/mule-https.xsd">
<flow name="centralwebservices-consultalogin1" doc:name="centralwebservices-consultalogin1"> <flow name="centralwebservices-consultalogin1" doc:name="centralwebservices-consultalogin1">
<https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/consultaLoginProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/> <https:inbound-endpoint exchange-pattern="request-response" address="https://serviciosarmas.ccffaa.mil.ec:8085/consultaLoginProxy" doc:name="HTTP" connector-ref="HTTP_HTTPS"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/> <cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/> <cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<https:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/> <https:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow> </flow>
</mule> </mule>

View File

@ -10,6 +10,6 @@ http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/consultaLoginProxy" doc:name="HTTP"/> <http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/consultaLoginProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/> <cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="ConsultaLoginServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl?wsdl" doc:name="Servicio consulta login"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/> <cxf:proxy-client payload="body" doc:name="Cliente servicio consulta login"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="https://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/> <http:outbound-endpoint exchange-pattern="request-response" method="POST" doc:name="HTTP" address="http://tramitesarmas.ccffaa.mil.ec/frontend/ConsultaLoginServiceImpl"/>
</flow> </flow>
</mule> </mule>

View File

@ -6,8 +6,8 @@ http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/htt
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd"> http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">
<flow name="centralwebservices-lecturaFlow2" doc:name="centralwebservices-lecturaFlow2"> <flow name="centralwebservices-lecturaFlow2" doc:name="centralwebservices-lecturaFlow2">
<http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/lecturaProxy" doc:name="HTTP"/> <http:inbound-endpoint exchange-pattern="request-response" address="http://serviciosarmas.ccffaa.mil.ec:8086/lecturaProxy" doc:name="HTTP"/>
<cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="InventarioServiceImplService" payload="body" wsdlLocation="https://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl?wsdl" doc:name="Servicio lecturas"/> <cxf:proxy-service namespace="http://impl.webservices.frontend.fp.com/" service="InventarioServiceImplService" payload="body" wsdlLocation="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl?wsdl" doc:name="Servicio lecturas"/>
<cxf:proxy-client payload="body" doc:name="Cliente servicio lecturas"/> <cxf:proxy-client payload="body" doc:name="Cliente servicio lecturas"/>
<http:outbound-endpoint exchange-pattern="request-response" method="POST" address="https://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl" doc:name="HTTP"/> <http:outbound-endpoint exchange-pattern="request-response" method="POST" address="http://tramitesarmas.ccffaa.mil.ec/frontend/InventarioServiceImpl" doc:name="HTTP"/>
</flow> </flow>
</mule> </mule>

View File

@ -8,7 +8,7 @@ http://www.mulesoft.org/schema/mule/https http://www.mulesoft.org/schema/mule/ht
<flow name="centralwebservicessnap-cedFlow1" doc:name="centralwebservicessnap-cedFlow1"> <flow name="centralwebservicessnap-cedFlow1" doc:name="centralwebservicessnap-cedFlow1">
<https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="a" connector-ref="HTTP_HTTPS"/> <https:inbound-endpoint exchange-pattern="request-response" doc:name="HTTP" address="https://serviciosarmas.ccffaa.mil.ec:8085/serviceCedula" connector-ref="HTTP_HTTPS"/>
<cxf:jaxws-service doc:name="CedulaSnap" serviceClass="com.fp.webservices.snap.cedula.CedulaServicio" service="CedulaServicio"/> <cxf:jaxws-service doc:name="CedulaSnap" serviceClass="com.fp.webservices.snap.cedula.CedulaServicio" service="CedulaServicio"/>
<component class="com.fp.webservices.snap.cedula.impl.CedulaServicioImpl" doc:name="Java"/> <component class="com.fp.webservices.snap.cedula.impl.CedulaServicioImpl" doc:name="Java"/>
</flow> </flow>

View File

@ -1,5 +1,5 @@
#Thu Apr 30 15:37:39 COT 2015 #Sat Dec 21 16:43:53 COT 2019
redeployment.enabled=true redeployment.enabled=true
encoding=UTF-8 encoding=UTF-8
config.resources=centralwebservicessnap-ruc.xml,centralwebservicessnap-ced.xml,centralwebservices-lectura2.xml,centralwebservices-lectura.xml,centralwebservices-documentos.xml,centralwebservices-consultalogin1.xml,centralwebservices-consultalogin.xml,centralwebservices-colaimpresion.xml,centralwebservices-armas.xml,centralwebservices-datosnap.xml
domain=default domain=default
config.resources=centralwebservices-armas.xml,centralwebservices-colaimpresion.xml,centralwebservices-consultalogin.xml,centralwebservices-consultalogin1.xml,centralwebservices-datosnap.xml,centralwebservices-documentos.xml,centralwebservices-lectura.xml,centralwebservices-lectura2.xml,centralwebservicessnap-ced.xml,centralwebservicessnap-ruc.xml

View File

@ -1,34 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
ec
dir
com
dir

View File

@ -1,31 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
fp
dir

View File

@ -1,31 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
webservices
dir

View File

@ -1,31 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
snap
dir

View File

@ -1,43 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
recursos
dir
seguridad
dir
ruc
dir
cedula
dir
util
dir

View File

@ -1,65 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/cedula
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7
impl
dir
CedulaServicio.java
file
2022-07-28T03:40:47.288823Z
cc831e65c0ab50aeb9d440ffa4da6e38
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
427

View File

@ -1,19 +0,0 @@
package com.fp.webservices.snap.cedula;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import ec.gob.registrocivil.consultacedula.Cedula;
/**
* Servicio que contiene los datos de la c&eacute;dula de identidad en el registro civil
* @author dcruz
*
*/
@WebService
public interface CedulaServicio {
@WebMethod
public Cedula consultarCedula(@WebParam(name="cedula")String cedula);
}

View File

@ -1,19 +1,13 @@
package com.fp.webservices.snap.cedula; package com.fp.webservices.snap.cedula;
import ec.gob.registrocivil.consultacedula.Cedula;
import javax.jws.WebMethod; import javax.jws.WebMethod;
import javax.jws.WebParam; import javax.jws.WebParam;
import javax.jws.WebService; import javax.jws.WebService;
import ec.gob.registrocivil.consultacedula.Cedula;
/**
* Servicio que contiene los datos de la c&eacute;dula de identidad en el registro civil
* @author dcruz
*
*/
@WebService @WebService
public interface CedulaServicio { public interface CedulaServicio {
@WebMethod @WebMethod
public Cedula consultarCedula(@WebParam(name="cedula")String cedula); Cedula consultarCedula(@WebParam(name = "cedula") String paramString);
} }

View File

@ -1,62 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/cedula/impl
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7
CedulaServicioImpl.java
file
2022-07-28T03:40:47.279823Z
860daeb75f5c927bc65650abacb4ec81
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
1527

View File

@ -1,33 +0,0 @@
package com.fp.webservices.snap.cedula.impl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import com.fp.webservices.snap.cedula.CedulaServicio;
import com.fp.webservices.snap.recursos.MsgSnap;
import com.fp.webservices.snap.seguridad.DatosHeader;
import com.fp.webservices.snap.seguridad.HeaderHandlerResolver;
import com.fp.webservices.snap.seguridad.PermissionClient;
import ec.gob.registrocivil.consultacedula.Cedula;
@WebService(endpointInterface="com.fp.webservices.snap.cedula.CedulaServicio", serviceName="CedulaServicio")
public class CedulaServicioImpl implements CedulaServicio {
@Override
@WebMethod
public Cedula consultarCedula(@WebParam(name = "cedula") String cedula) {
DatosHeader headers= new DatosHeader();
PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_cedula"));
headers = permissionClient.generaToken();
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service service = new ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver);
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula port = service.getWSRegistroCivilConsultaCedulaPort();
ec.gob.registrocivil.consultacedula.Cedula result = port.busquedaPorCedula(cedula, MsgSnap.getString("usuario"), MsgSnap.getString("password"));
return result;
}
}

View File

@ -1,33 +1,77 @@
package com.fp.webservices.snap.cedula.impl; package com.fp.webservices.snap.cedula.impl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import com.fp.webservices.snap.cedula.CedulaServicio; import com.fp.webservices.snap.cedula.CedulaServicio;
import com.fp.webservices.snap.recursos.MsgSnap; import com.fp.webservices.snap.recursos.MsgSnap;
import com.fp.webservices.snap.seguridad.DatosHeader; import com.fp.webservices.snap.seguridad.DatosHeader;
import com.fp.webservices.snap.seguridad.HeaderHandlerResolver; import com.fp.webservices.snap.seguridad.HeaderHandlerResolver;
import com.fp.webservices.snap.seguridad.PermissionClient; import com.fp.webservices.snap.seguridad.PermissionClient;
import ec.gob.registrocivil.Ciudadano;
import ec.gob.registrocivil.ConsultaCiudadano;
import ec.gob.registrocivil.ConsultaCiudadano_Service;
import ec.gob.registrocivil.consultacedula.Cedula; import ec.gob.registrocivil.consultacedula.Cedula;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.xml.ws.handler.HandlerResolver;
@WebService(endpointInterface="com.fp.webservices.snap.cedula.CedulaServicio", serviceName="CedulaServicio") @WebService(endpointInterface = "com.fp.webservices.snap.cedula.CedulaServicio", serviceName = "CedulaServicio")
public class CedulaServicioImpl implements CedulaServicio { public class CedulaServicioImpl implements CedulaServicio {
@Override public Cedula consultarCedula(@WebParam(name = "cedula") String cedula) {
@WebMethod DatosHeader headers = new DatosHeader();
public Cedula consultarCedula(@WebParam(name = "cedula") String cedula) { PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_cedula"));
DatosHeader headers= new DatosHeader();
PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_cedula"));
headers = permissionClient.generaToken(); headers = permissionClient.generaToken();
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service service = new ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver);
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula port = service.getWSRegistroCivilConsultaCedulaPort();
ec.gob.registrocivil.consultacedula.Cedula result = port.busquedaPorCedula(cedula, MsgSnap.getString("usuario"), MsgSnap.getString("password"));
return result;
}
ConsultaCiudadano_Service service = new ConsultaCiudadano_Service();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver((HandlerResolver) handlerResolver);
ConsultaCiudadano port = service.getConsultaCiudadanoPort();
String codigoInstitucion = MsgSnap.getString("codigoInstitucion_rc");
String codigoAgencia = MsgSnap.getString("codigoAgencia_rc");
String usuario = MsgSnap.getString("usuario_rc");
String contrasenia = MsgSnap.getString("contrasenia_rc");
Ciudadano ciudadano = port.busquedaPorNui(codigoInstitucion, codigoAgencia, usuario, contrasenia, cedula);
Cedula result = getCedula(ciudadano);
return result;
}
private Cedula getCedula(Ciudadano ciudadano) {
Cedula result = null;
if (ciudadano != null) {
result = new Cedula();
result.setCalleDomicilio(ciudadano.getCalle());
result.setCedula(ciudadano.getNUI());
result.setCodigoError(ciudadano.getCodigoError());
result.setCondicionCedulado(ciudadano.getCondicionCedulado());
result.setConyuge(ciudadano.getConyuge());
result.setDomicilio(ciudadano.getDomicilio());
result.setError(ciudadano.getError());
result.setEstadoCivil(ciudadano.getEstadoCivil());
result.setFechaCedulacion(ciudadano.getFechaCedulacion());
result.setFechaNacimiento(ciudadano.getFechaNacimiento());
result.setFirmaElectronica(ciudadano.getFirmaElectronica());
result.setGenero(ciudadano.getGenero());
result.setIndividualDactilar(ciudadano.getIndividualDactilar());
result.setInstruccion(ciudadano.getInstruccion());
result.setLugarNacimiento(ciudadano.getLugarNacimiento());
result.setNacionalidad(ciudadano.getNacionalidad());
result.setNombreMadre(ciudadano.getNombreMadre());
result.setNombrePadre(ciudadano.getNombrePadre());
result.setNombre(ciudadano.getNombre());
result.setNumeroDomicilio(ciudadano.getNumeroCasa());
result.setProfesion(ciudadano.getProfesion());
System.out.println("Result = " + ciudadano.getCodigoNacionalidadMadre());
}
return result;
}
} }
/* Location: /data/COMACO/SINCOAR2022/Entorno/produccion/servers/mule-standalone-3.5.0/apps/centralwebservices-2.1.zip!/centralwebservices-2.1/classes/com/fp/webservices/snap/cedula/impl/CedulaServicioImpl.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 1.1.3
*/

View File

@ -1,62 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/recursos
svn://172.17.26.185/COMACO
2014-12-11T05:00:43.966009Z
3415
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7
MsgSnap.java
file
2022-07-28T03:40:47.224822Z
6bdad900e65e71776e163b22cafac4fb
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
572

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,26 +0,0 @@
package com.fp.webservices.snap.recursos;
import java.util.ResourceBundle;
/**
* Clase utilitaria que maneja el archivo de propiedades del usuario
* @author dcruz
*
*/
public class MsgSnap {
private static final String RESOURCES = "com.fp.webservices.snap.recursos.snap";
private static ResourceBundle properties = null;
static{
properties = ResourceBundle.getBundle(RESOURCES);
}
public static String getString(String key) {
return properties.getString(key);
}
public static String getObject(String key) {
return properties.getString(key);
}
}

View File

@ -2,25 +2,20 @@ package com.fp.webservices.snap.recursos;
import java.util.ResourceBundle; import java.util.ResourceBundle;
/**
* Clase utilitaria que maneja el archivo de propiedades del usuario
* @author dcruz
*
*/
public class MsgSnap { public class MsgSnap {
private static final String RESOURCES = "com.fp.webservices.snap.recursos.snap"; private static final String RESOURCES = "com.fp.webservices.snap.recursos.snap";
private static ResourceBundle properties = null; private static ResourceBundle properties = null;
static{ static {
properties = ResourceBundle.getBundle(RESOURCES); properties = ResourceBundle.getBundle("com.fp.webservices.snap.recursos.snap");
} }
public static String getString(String key) { public static String getString(String key) {
return properties.getString(key); return properties.getString(key);
} }
public static String getObject(String key) { public static String getObject(String key) {
return properties.getString(key); return properties.getString(key);
} }
} }

View File

@ -1,65 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/ruc
svn://172.17.26.185/COMACO
2015-01-23T13:20:32.296918Z
3801
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7
impl
dir
RucServicio.java
file
2022-07-28T03:40:47.264823Z
236cc864ebdff3808f292311920311b4
2015-01-23T13:20:32.296918Z
3801
dcruz
has-props
566

View File

@ -1,5 +0,0 @@
K 13
svn:mime-type
V 10
text/plain
END

View File

@ -1,24 +0,0 @@
package com.fp.webservices.snap.ruc;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
/**
* Web servicio que interact&uacute;a con el servicio web del SRI y retorna los datos del contribuyente
* @author dcruz
*
*/
@WebService
public interface RucServicio {
/**
* Retorna los datos del contribuyente si es el RUC es v&aacute;lido
* @param ruc
* @return
*/
@WebMethod
public ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String ruc);
}

View File

@ -1,24 +1,14 @@
package com.fp.webservices.snap.ruc; package com.fp.webservices.snap.ruc;
import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
import javax.jws.WebMethod; import javax.jws.WebMethod;
import javax.jws.WebParam; import javax.jws.WebParam;
import javax.jws.WebService; import javax.jws.WebService;
import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
/**
* Web servicio que interact&uacute;a con el servicio web del SRI y retorna los datos del contribuyente
* @author dcruz
*
*/
@WebService @WebService
public interface RucServicio { public interface RucServicio {
/** @WebMethod
* Retorna los datos del contribuyente si es el RUC es v&aacute;lido ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String paramString);
* @param ruc
* @return
*/
@WebMethod
public ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String ruc);
} }

View File

@ -1,62 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/ruc/impl
svn://172.17.26.185/COMACO
2015-01-23T13:20:32.296918Z
3801
dcruz
a11ad980-3ca8-45f0-88f7-f0e618c262b7
RucServicioImpl.java
file
2022-07-28T03:40:47.252823Z
4dc21adca22706586eab23c1cd87b606
2015-01-23T13:20:32.296918Z
3801
dcruz
has-props
1492

View File

@ -1,38 +0,0 @@
package com.fp.webservices.snap.ruc.impl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import com.fp.webservices.snap.recursos.MsgSnap;
import com.fp.webservices.snap.ruc.RucServicio;
import com.fp.webservices.snap.seguridad.DatosHeader;
import com.fp.webservices.snap.seguridad.HeaderHandlerResolver;
import com.fp.webservices.snap.seguridad.PermissionClient;
import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
import ec.gov.sri.wsconsultacontribuyente.WebServiceContribuyenteService;
@WebService(endpointInterface="com.fp.webservices.snap.ruc.RucServicio", serviceName="RucServicio")
public class RucServicioImpl implements RucServicio {
@WebMethod
@Override
public ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String ruc) {
// TODO Auto-generated method stub
DatosHeader headers= new DatosHeader();
PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_ruc"));
headers = permissionClient.generaToken();
WebServiceContribuyenteService service = new WebServiceContribuyenteService();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver);
ContribuyenteCompleto contribuyente = service.getWsConsultaContribuyentePort().obtenerCompleto(ruc, "");
return contribuyente;
}
public static void main(String[] args) {
RucServicioImpl ruc = new RucServicioImpl();
ruc.consultarRuc("");
}
}

View File

@ -1,38 +1,32 @@
package com.fp.webservices.snap.ruc.impl; package com.fp.webservices.snap.ruc.impl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import com.fp.webservices.snap.recursos.MsgSnap; import com.fp.webservices.snap.recursos.MsgSnap;
import com.fp.webservices.snap.ruc.RucServicio; import com.fp.webservices.snap.ruc.RucServicio;
import com.fp.webservices.snap.seguridad.DatosHeader; import com.fp.webservices.snap.seguridad.DatosHeader;
import com.fp.webservices.snap.seguridad.HeaderHandlerResolver; import com.fp.webservices.snap.seguridad.HeaderHandlerResolver;
import com.fp.webservices.snap.seguridad.PermissionClient; import com.fp.webservices.snap.seguridad.PermissionClient;
import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto; import ec.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
import ec.gov.sri.wsconsultacontribuyente.WebServiceContribuyenteService; import ec.gov.sri.wsconsultacontribuyente.WebServiceContribuyenteService;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.xml.ws.handler.HandlerResolver;
@WebService(endpointInterface="com.fp.webservices.snap.ruc.RucServicio", serviceName="RucServicio") @WebService(endpointInterface = "com.fp.webservices.snap.ruc.RucServicio", serviceName = "RucServicio")
public class RucServicioImpl implements RucServicio { public class RucServicioImpl implements RucServicio {
@WebMethod public ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String ruc) {
@Override DatosHeader headers = new DatosHeader();
public ContribuyenteCompleto consultarRuc(@WebParam(name = "ruc") String ruc) { PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_ruc"));
// TODO Auto-generated method stub
DatosHeader headers= new DatosHeader();
PermissionClient permissionClient = new PermissionClient(MsgSnap.getString("url_consulta_ruc"));
headers = permissionClient.generaToken(); headers = permissionClient.generaToken();
WebServiceContribuyenteService service = new WebServiceContribuyenteService(); WebServiceContribuyenteService service = new WebServiceContribuyenteService();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers); HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver); service.setHandlerResolver((HandlerResolver) handlerResolver);
ContribuyenteCompleto contribuyente = service.getWsConsultaContribuyentePort().obtenerCompleto(ruc, ""); ContribuyenteCompleto contribuyente = service.getWsConsultaContribuyentePort().obtenerCompleto(ruc, "");
return contribuyente; return contribuyente;
} }
public static void main(String[] args) {
public static void main(String[] args) { com.fp.webservices.snap.ruc.impl.RucServicioImpl ruc = new com.fp.webservices.snap.ruc.impl.RucServicioImpl();
RucServicioImpl ruc = new RucServicioImpl(); ruc.consultarRuc("1715060073001");
ruc.consultarRuc(""); }
}
} }

View File

@ -1,198 +0,0 @@
10
dir
4669
svn://172.17.26.185/COMACO/sources/centralwebservices/src/main/java/com/fp/webservices/snap/seguridad
svn://172.17.26.185/COMACO
2015-05-08T04:26:40.595617Z
4083
cpiedra
a11ad980-3ca8-45f0-88f7-f0e618c262b7
DatosHeader.java
file
2022-07-28T03:40:47.238822Z
707509334c90fcd31bf52c3376036056
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
2124
RegistroCivilClient.java
file
2022-07-28T03:40:47.239822Z
537f026e30322c15c6f6927f38cd065d
2015-05-08T04:26:40.595617Z
4083
cpiedra
has-props
2346
HeaderHandler.java
file
2022-07-28T03:40:47.239822Z
90c71209f7d8525e5460b02901976ea1
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
5879
PermissionClient.java
file
2022-07-28T03:40:47.239822Z
afdaeba57ffcd8b1a6ee55b019f29ee4
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
2619
HeaderHandlerResolver.java
file
2022-07-28T03:40:47.240822Z
7f089ef57fd848eee3f432a77089c6ab
2014-12-11T05:00:43.966009Z
3415
dcruz
has-props
1770

View File

@ -1,102 +0,0 @@
/*
*
* Copyright (C) 2013 Libreria para Cliente Consulta Títulos development team.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
******************************************************
* SUBSECRETARIA DE TECNOLOGIAS DE LA INFORMACION
* DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
*
* FECHA CREACION : 02 -02-2013
* AUTHOR: DIG DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
* PROGRAMADOR:LUIGGI ANDRADE
* CONCEPTO : Consulta De Titulos de Ciudadanos
* Utilización del servicio web de la senascyt
*
*
* MODIFICACION (Fecha, Autor y la descripción de la modificación)
*
*
*******************************************************
*/
package com.fp.webservices.snap.seguridad;
/**
* Contiene informaci&oacute;n acerca de la autenticaci&oacute;n realizada
* @author landrade
*/
public class DatosHeader {
private String fecha;
private String fechaf;
private String nonce;
private String digest;
private String usuario;
public DatosHeader()
{
}
public DatosHeader(String fecha,String nonce,String digest)
{
this.fecha = fecha;
this.fechaf = fecha;
this.nonce = nonce;
this.digest = digest;
}
public String getFecha() {
return fecha;
}
public void setFecha(String fecha) {
this.fecha = fecha;
}
public String getFechaf() {
return fechaf;
}
public void setFechaf(String fechaf) {
this.fechaf = fechaf;
}
public String getNonce() {
return nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
}
public String getDigest() {
return digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getUsuario() {
return usuario;
}
public void setUsuario(String usuario) {
this.usuario = usuario;
}
}

View File

@ -1,164 +0,0 @@
/*
*
* Copyright (C) 2013 Libreria para Cliente Consulta Títulos development team.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
******************************************************
* SUBSECRETARIA DE TECNOLOGIAS DE LA INFORMACION
* DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
*
* FECHA CREACION : 02 -02-2013
* AUTHOR: DIG DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
* PROGRAMADOR:LUIGGI ANDRADE
* CONCEPTO : Consulta De Titulos de Ciudadanos
* Utilización del servicio web de la senascyt
*
*
* MODIFICACION (Fecha, Autor y la descripción de la modificación)
*
*
*******************************************************
*/
package com.fp.webservices.snap.seguridad;
import java.util.Set;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPHeader;
import javax.xml.soap.SOAPMessage;
import javax.xml.ws.handler.MessageContext;
import javax.xml.ws.handler.soap.SOAPHandler;
import javax.xml.ws.handler.soap.SOAPMessageContext;
/**
* Handler JAX-WS para manejar ws-security en el WS
* @author landrade
*/
public class HeaderHandler implements SOAPHandler<SOAPMessageContext> {
DatosHeader DHLista= new DatosHeader();
public HeaderHandler(DatosHeader DHeader){
DHLista.setDigest(DHeader.getDigest());
DHLista.setNonce(DHeader.getNonce());
DHLista.setFecha(DHeader.getFecha());
DHLista.setFechaf(DHeader.getFechaf());
DHLista.setUsuario(DHeader.getUsuario());
}
/**
* M&eacute;todo que manipula el mensaje y agrega los datos de la cabecera del servicio
*/
public boolean handleMessage(SOAPMessageContext smc) {
Boolean outboundProperty = (Boolean) smc.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);
if (outboundProperty.booleanValue()) {
SOAPMessage message = smc.getMessage();
try {
SOAPEnvelope envelope = smc.getMessage().getSOAPPart().getEnvelope();
SOAPHeader header = envelope.addHeader();
// get SOAP envelope from SOAP message
SOAPElement security =
header.addChildElement("Security", "wss", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd");
SOAPElement timeStamp = security
.addChildElement(
"Timestamp",
"wsu",
"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd");
SOAPElement createdTime =
timeStamp.addChildElement("Created", "wsu");
createdTime.addTextNode(DHLista.getFecha());
SOAPElement expires =
timeStamp.addChildElement("Expires", "wsu");
expires.addTextNode(DHLista.getFechaf());
SOAPElement usernameToken =
security.addChildElement("UsernameToken","wss");
//usernameToken.addAttribute(new QName("xmlns:wsu"), "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd");
SOAPElement username =
usernameToken.addChildElement("Username", "wss");
username.addTextNode(DHLista.getUsuario());
SOAPElement password =
usernameToken.addChildElement("Password", "wss");
password.setAttribute("Type", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest");
password.addTextNode(DHLista.getDigest());
//password.addTextNode("Qro+U/5Swf50Pt04i4WS/PsbljY=");
SOAPElement nonce =
usernameToken.addChildElement("Nonce", "wss");
nonce.setAttribute("EncodingType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary");
nonce.addTextNode(DHLista.getNonce());
//nonce.addTextNode("He+y+afyHy7lWugWrn6LBQ==");
SOAPElement created = usernameToken.addChildElement("Created", "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd");
created.addTextNode(DHLista.getFecha());
//created.addTextNode("2012-12-07T13:40:21Z");
//Print out the outbound SOAP message to System.out
message.writeTo(System.out);
} catch (Exception e) {
e.printStackTrace();
}
} else {
try {
//This handler does nothing with the response from the Web Service so
//we just print out the SOAP message.
SOAPMessage message = smc.getMessage();
message.writeTo(System.out);
} catch (Exception ex) {
ex.printStackTrace();
}
}
return outboundProperty;
}
/**
* Retorna las cabeceras del servicio
*/
public Set getHeaders() {
//throw new UnsupportedOperationException("Not supported yet.");
return null;
}
public boolean handleFault(SOAPMessageContext context) {
//throw new UnsupportedOperationException("Not supported yet.");
return false;
}
public void close(MessageContext context) {
//throw new UnsupportedOperationException("Not supported yet.");
}
}

View File

@ -1,62 +0,0 @@
/*
*
* Copyright (C) 2013 Libreria para Cliente Consulta Títulos development team.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
******************************************************
* SUBSECRETARIA DE TECNOLOGIAS DE LA INFORMACION
* DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
*
* FECHA CREACION : 02 -02-2013
* AUTHOR: DIG DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
* PROGRAMADOR:LUIGGI ANDRADE
* CONCEPTO : Consulta De Titulos de Ciudadanos
* Utilización del servicio web de la senascyt
*
*
* MODIFICACION (Fecha, Autor y la descripción de la modificación)
*
*
*******************************************************
*/
package com.fp.webservices.snap.seguridad;
import java.util.ArrayList;
import java.util.List;
import javax.xml.ws.handler.Handler;
import javax.xml.ws.handler.HandlerResolver;
import javax.xml.ws.handler.PortInfo;
/**
*
* @author landrade
*/
public class HeaderHandlerResolver implements HandlerResolver {
private DatosHeader headerData = new DatosHeader();
public HeaderHandlerResolver(DatosHeader HeaderList) {
headerData.setDigest(HeaderList.getDigest());
headerData.setNonce(HeaderList.getNonce());
headerData.setFecha(HeaderList.getFecha());
headerData.setFechaf(HeaderList.getFechaf());
headerData.setUsuario(HeaderList.getUsuario());
}
public List<Handler> getHandlerChain(PortInfo portInfo) {
List<Handler> handlerChain = new ArrayList<Handler>();
HeaderHandler hh = new HeaderHandler(headerData);
handlerChain.add(hh);
return handlerChain;
}
}

View File

@ -1,67 +0,0 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.fp.webservices.snap.seguridad;
import com.fp.webservices.snap.recursos.MsgSnap;
/**
*
*/
public class PermissionClient {
//@WebServiceRef(wsdlLocation = "WEB-INF/wsdl/www.bsg.gob.ec/sw/STI/BSGSW08_Acceder_BSG.wsdl")
// private AccesoBSGService service = new AccesoBSGService();
private String urlServicio;
public PermissionClient(String urlServicio){
this.urlServicio = urlServicio;
}
public DatosHeader generaToken() {
try { // Call Web Service Operation
DatosHeader headers = new DatosHeader();
ec.gob.bsg.accesobsgservice.AccesoBSGService service = new ec.gob.bsg.accesobsgservice.AccesoBSGService();
ec.gob.bsg.accesobsgservice.BSG04AccederBSG port = service.getBSG04AccederBSGPort();
// TODO initialize WS operation arguments here
ec.gob.bsg.accesobsgservice.ValidarPermisoPeticion validarPermisoPeticion = new ec.gob.bsg.accesobsgservice.ValidarPermisoPeticion();
// TODO process result here
validarPermisoPeticion.setCedula(MsgSnap.getString("cedulapermiso"));
validarPermisoPeticion.setUrlsw(urlServicio);
ec.gob.bsg.accesobsgservice.ValidarPermisoRespuesta result = port.validarPermiso(validarPermisoPeticion);
if (!result.getMensaje().getCodError().equals("000"))
{
System.out.println(result.getMensaje().getDesError());
headers.setNonce(result.getMensaje().getDesError());
headers.setDigest(result.getMensaje().getDesError());
headers.setFecha(result.getMensaje().getDesError());
headers.setFechaf(result.getMensaje().getDesError());
}
else
{
headers.setNonce(result.getNonce());
headers.setDigest(result.getDigest());
headers.setFecha(result.getFecha());
headers.setFechaf(result.getFechaF());
headers.setUsuario(MsgSnap.getString("cedulapermiso"));
}
System.out.println("Acceso = " + result.getMensaje().getDesError());
return headers;
} catch (Exception ex) {
System.out.println(" ERROR "+ex.getMessage());
ex.printStackTrace();
// TODO handle custom exceptions here
return null;
}
}
}

View File

@ -1,57 +0,0 @@
package com.fp.webservices.snap.seguridad;
/**
* Susbsecretaria de Gobierno Electrónico
* Elaborado por : Ing.Luiggi Andrade
*/
public class RegistroCivilClient
{
//@WebServiceRef(wsdlLocation = "WEB-INF/wsdl/bsg.gob.ec/sw/RC/BSGSW01_Consultar_Cedula.wsdl")
// private static WSRegistroCivilConsultaCedula_Service service = new WSRegistroCivilConsultaCedula_Service();
public static void main(String[] args) {
PermissionClient permissionClient = new PermissionClient("https://www.bsg.gob.ec/sw/RC/BSGSW01_Consultar_Cedula?wsdl");
try { // Call Web Service Operation
DatosHeader headers= new DatosHeader();
//AuxValidarPermisoRespuesta validarPermiso = new AuxValidarPermisoRespuesta();
headers = permissionClient.generaToken();
//DatosHeader headerData = new DatosHeader();
//headerData.setDigest(DatosHeader.getDigest());
//headerData.setNonce(validarPermiso.getNonce());
//headerData.setFecha(validarPermiso.getFecha());
//headerData.setFechaf(validarPermiso.getFechaF());
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service service = new ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver);
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula port = service.getWSRegistroCivilConsultaCedulaPort();
System.out.println(" --- >> >");
// TODO initialize WS operation arguments here
java.lang.String cedula = "1001114840";
java.lang.String usuario = "testroot";
java.lang.String contrasenia = "Sti1DigS21";
// TODO process result here
ec.gob.registrocivil.consultacedula.Cedula result = port.busquedaPorCedula(cedula, usuario, contrasenia);
System.out.println("Result = " + result.getNombre());
} catch (Exception ex) {
// TODO handle custom exceptions here
System.out.println(" --> "+ex.getMessage());
ex.printStackTrace();
}
}
}

View File

@ -1,57 +0,0 @@
package com.fp.webservices.snap.seguridad;
/**
* Susbsecretaria de Gobierno Electrónico
* Elaborado por : Ing.Luiggi Andrade
*/
public class RegistroCivilClient
{
//@WebServiceRef(wsdlLocation = "WEB-INF/wsdl/bsg.gob.ec/sw/RC/BSGSW01_Consultar_Cedula.wsdl")
// private static WSRegistroCivilConsultaCedula_Service service = new WSRegistroCivilConsultaCedula_Service();
public static void main(String[] args) {
PermissionClient permissionClient = new PermissionClient("https://www.bsg.gob.ec/sw/RC/BSGSW01_Consultar_Cedula?wsdl");
try { // Call Web Service Operation
DatosHeader headers= new DatosHeader();
//AuxValidarPermisoRespuesta validarPermiso = new AuxValidarPermisoRespuesta();
headers = permissionClient.generaToken();
//DatosHeader headerData = new DatosHeader();
//headerData.setDigest(DatosHeader.getDigest());
//headerData.setNonce(validarPermiso.getNonce());
//headerData.setFecha(validarPermiso.getFecha());
//headerData.setFechaf(validarPermiso.getFechaF());
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service service = new ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula_Service();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver(headers);
service.setHandlerResolver(handlerResolver);
ec.gob.registrocivil.consultacedula.WSRegistroCivilConsultaCedula port = service.getWSRegistroCivilConsultaCedulaPort();
System.out.println(" --- >> >");
// TODO initialize WS operation arguments here
java.lang.String cedula = "1001114840";
java.lang.String usuario = "testroot";
java.lang.String contrasenia = "Sti1DigS21";
// TODO process result here
ec.gob.registrocivil.consultacedula.Cedula result = port.busquedaPorCedula(cedula, usuario, contrasenia);
System.out.println("Result = " + result.getNombre());
} catch (Exception ex) {
// TODO handle custom exceptions here
System.out.println(" --> "+ex.getMessage());
ex.printStackTrace();
}
}
}

View File

@ -1,38 +1,5 @@
/*
*
* Copyright (C) 2013 Libreria para Cliente Consulta Títulos development team.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
******************************************************
* SUBSECRETARIA DE TECNOLOGIAS DE LA INFORMACION
* DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
*
* FECHA CREACION : 02 -02-2013
* AUTHOR: DIG DIRECCION DE INTEROPERABILIDAD GUBERNAMENTAL
* PROGRAMADOR:LUIGGI ANDRADE
* CONCEPTO : Consulta De Titulos de Ciudadanos
* Utilización del servicio web de la senascyt
*
*
* MODIFICACION (Fecha, Autor y la descripción de la modificación)
*
*
*******************************************************
*/
package com.fp.webservices.snap.seguridad; package com.fp.webservices.snap.seguridad;
/**
* Contiene informaci&oacute;n acerca de la autenticaci&oacute;n realizada
* @author landrade
*/
public class DatosHeader { public class DatosHeader {
private String fecha; private String fecha;
@ -41,22 +8,18 @@ public class DatosHeader {
private String digest; private String digest;
private String usuario; private String usuario;
public DatosHeader() public DatosHeader() {
{
} }
public DatosHeader(String fecha,String nonce,String digest) public DatosHeader(String fecha, String nonce, String digest) {
{
this.fecha = fecha; this.fecha = fecha;
this.fechaf = fecha; this.fechaf = fecha;
this.nonce = nonce; this.nonce = nonce;
this.digest = digest; this.digest = digest;
} }
public String getFecha() { public String getFecha() {
return fecha; return this.fecha;
} }
public void setFecha(String fecha) { public void setFecha(String fecha) {
@ -64,16 +27,15 @@ public class DatosHeader {
} }
public String getFechaf() { public String getFechaf() {
return fechaf; return this.fechaf;
} }
public void setFechaf(String fechaf) { public void setFechaf(String fechaf) {
this.fechaf = fechaf; this.fechaf = fechaf;
} }
public String getNonce() { public String getNonce() {
return nonce; return this.nonce;
} }
public void setNonce(String nonce) { public void setNonce(String nonce) {
@ -81,22 +43,24 @@ public class DatosHeader {
} }
public String getDigest() { public String getDigest() {
return digest; return this.digest;
} }
public void setDigest(String digest) { public void setDigest(String digest) {
this.digest = digest; this.digest = digest;
} }
public String getUsuario() { public String getUsuario() {
return usuario; return this.usuario;
} }
public void setUsuario(String usuario) { public void setUsuario(String usuario) {
this.usuario = usuario; this.usuario = usuario;
} }
} }
/* Location: /data/COMACO/SINCOAR2022/Entorno/produccion/servers/mule-standalone-3.5.0/apps/centralwebservices-2.1.zip!/centralwebservices-2.1/classes/com/fp/webservices/snap/seguridad/DatosHeader.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 1.1.3
*/

Some files were not shown because too many files have changed in this diff Show More