mercoledì 29 febbraio 2012

IBM jdk over Ububtu 10.04 LTS with Gnome

per installare la JVM di IBM, è sufficente, ripulire la macchina se eventualmente sono presenti altre JVM
scaricare il file appropriato, Download poi procedere come segue

da terminale

sudo -s mkdir -p /opt/ibm/java
cd /root/Downloads
cp -r ibm-java-jre-xxxxxxx.bin /opt/ibm/java/
cp -r ibm-java-sdk-xxxxxxx.bin /opt/ibm/java/
cd /opt/ibm/java
chmod X+ *.bin

eseguire il file interesato o la jre o l'sdk

./ibm-java-jre-7.0-0.0-x86_64-archive.bin

rispondere alle videate in modo congruo


OK


 scorrere la licenza per accettarla e Next


Next


scegliere la homeroot e Next


Install


 Done


settare la JAVA_HOME nel .profile

export PATH=${PATH}:/opt/ibm/java/bin:/opt/ibm/java/jre/bin:$PATH
export JAVA_HOME=/opt/ibm/java/

eseguire un logout ed un login per ricaricare il .profile

informare il sistema che ora ha una jvm IBM

update-alternatives --install "/usr/bin/java" "java" "/opt/ibm/java/jre/bin/java" 1


e provare la JVM se tutto ok risponde con:

java -version
java version "1.7.0"
Java(TM) SE Runtime Environment (build pxa6470-20110827_01)
IBM J9 VM (build 2.6, JRE 1.7.0 Linux amd64-64 20110810_88604 (JIT enabled, AOT enabled)
J9VM - R26_Java726_GA_20110810_1208_B88592
JIT  - r11_20110810_20466
GC   - R26_Java726_GA_20110810_1208_B88592
J9CL - 20110810_88604)
JCL - 20110809_01 based on Oracle 7b147


enjoy......

p.s. configurazione testata con JDK6 e JDK7







giovedì 9 febbraio 2012

Post to IBM Connections Blog using cUrl Command

to create a specific blog post of Connections, the outside, is enough to create an XML file that defines the specifications of the Post, as tags, categories etc etc ....


the command is:
 
curl -# -s -o ./<fileOutLog>.xml -v -X POST -H --post301 --post302 --header "Content-Type: application/atom+xml" --data "@<filePost>.xml" -k -L -v  "http://<fqdn>/blogs/<blogname>/api/entries"  -u <userName>:<password>

XML sample:
 
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
    <title type="text">Test HTML External Post</title>
    <category term="test" />
    <category term="External Post" />
 <content type="html"><![CDATA[

Body of post in HTML format, like <div>...<b etc etc...

]]>
 </content>

<category term="wiki" />
<category term="Connections" />
</entry>
 
your post is:
 
 

lunedì 6 febbraio 2012

Customizing the IBM Connections 3.0.1

Customizing the IBM Connections 3.0.1 UI: Different Themes in a Single Installation

ora finalmente è possibile gestire un unica installazione di IC 3.0.1 in una soluzione Multi-brand, dove il tema dipende dall'FQDN di origine.

 

il docuumento completo sulla Wiki di IC ------> more >>......