This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package it.dontesta.lab.jobs.kettle; | |
import org.pentaho.di.core.KettleEnvironment; | |
import org.pentaho.di.core.logging.LogChannel; | |
import org.pentaho.di.core.logging.LogChannelInterface; | |
import org.pentaho.di.core.plugins.PluginRegistry; | |
import org.pentaho.di.core.plugins.RepositoryPluginType; | |
import org.pentaho.di.job.Job; | |
import org.pentaho.di.job.JobMeta; | |
import org.pentaho.di.repository.RepositoriesMeta; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jun 13, 2011 8:50:00 PM org.apache.catalina.core.AprLifecycleListener init | |
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java | |
Jun 13, 2011 8:50:00 PM org.apache.coyote.http11.Http11Protocol init | |
INFO: Initializing Coyote HTTP/1.1 on http-8080 | |
Jun 13, 2011 8:50:00 PM org.apache.catalina.startup.Catalina load | |
INFO: Initialization processed in 617 ms | |
Jun 13, 2011 8:50:01 PM org.apache.catalina.core.StandardService start | |
INFO: Starting service Catalina | |
Jun 13, 2011 8:50:01 PM org.apache.catalina.core.StandardEngine start | |
INFO: Starting Servlet Engine: Apache Tomcat/6.0.29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:http.service.portal.liferay.com"> | |
<soapenv:Header/> | |
<soapenv:Body> | |
<urn:getUserRoles soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> | |
<userId xsi:type="xsd:long" xs:type="type:long" xmlns:xs="http://www.w3.org/2000/XMLSchema-instance">11317</userId> | |
</urn:getUserRoles> | |
</soapenv:Body> | |
</soapenv:Envelope> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Got Connection. | |
jdbcMajorVersion:3 | |
jdbcMinorVersion:0 | |
driverName=PostgreSQL Native Driver | |
driverVersion=PostgreSQL 8.4 JDBC3 (build 701) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one or more | |
contributor license agreements. See the NOTICE file distributed with | |
this work for additional information regarding copyright ownership. | |
The ASF licenses this file to You under the Apache License, Version 2.0 | |
(the "License"); you may not use this file except in compliance with | |
the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.sql.Connection; | |
import java.sql.DatabaseMetaData; | |
import java.sql.DriverManager; | |
/** | |
* Classe di Test connessione JDBC verso un data base Oracle | |
* utilizzando il driver JDBC Thin. | |
* | |
* @author amusarra | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one or more | |
contributor license agreements. See the NOTICE file distributed with | |
this work for additional information regarding copyright ownership. | |
The ASF licenses this file to You under the Apache License, Version 2.0 | |
(the "License"); you may not use this file except in compliance with | |
the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ID":"39CA2939-38C0-4C4E-AE6C-CFA5172B8CEB","name":"Doe","first-name":"John","age":25,"hobbies":["reading","cinema",{"sports":["volley-ball","snowboard"]}],"address":{}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//$post_data_response = file_get_contents("https://raw.github.com/gist/1245028/80e690bcbe6f1c5b46676547fbd396ebba97339b/Person_John.json"); | |
//$PersonObject = json_decode($post_data_response); | |
// Get Person Object from JSON Source | |
$PersonObject = json_decode('{"ID":"39CA2939-38C0-4C4E-AE6C-CFA5172B8CEB","lastname":"Doe","firstname":"John","age":25,"hobbies":["reading","cinema",{"sports":["volley-ball","snowboard"]}],"address":{}}'); | |
// Get data from Object | |
echo "Person ID => $PersonObject->ID<br>"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<job> | |
<name>ExecuteCalculateCodiceFiscale</name> | |
<description>Job che esegue la trasformazione per l'integrazione del Codice Fiscale</description> | |
<extended_description/> | |
<job_version>1.0</job_version> | |
<job_status>1</job_status> | |
<directory>/</directory> | |
<created_user>-</created_user> | |
<created_date>2011/01/25 17:21:26.000</created_date> |
OlderNewer