<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>NewPush &#187; Java</title> <atom:link href="http://newpush.com/category/tech/java/feed/" rel="self" type="application/rss+xml" /><link>http://newpush.com</link> <description>Server Hosting, Data Warehouse Hosting, Collaboration</description> <lastBuildDate>Mon, 30 Jan 2012 15:40:45 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Hello Xtend</title><link>http://newpush.com/2011/11/xtend/</link> <comments>http://newpush.com/2011/11/xtend/#comments</comments> <pubDate>Sun, 06 Nov 2011 16:48:18 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Java]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Xtend]]></category><guid isPermaLink="false">http://newpush.com/?p=1399</guid> <description><![CDATA[The Eclipse foundation announced today the availability of Xtend, and improvement on the Java language, that remains compatible. See the video below, and check out the Xtend website to see for yourself, how Xtend embraces Java, while improving it readability &#8230; <a href="http://newpush.com/2011/11/xtend/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>The Eclipse foundation announced today the availability of <a href="http://www.eclipse.org/Xtext/xtend/" title="Xtend" target="_blank">Xtend</a>, and improvement on the Java language, that remains compatible.  See the video below, and check out the <a href="http://www.eclipse.org/Xtext/xtend/" title="Xtend" target="_blank">Xtend</a> website to see for yourself, how Xtend embraces Java, while improving it readability and adding a number of nifty features, some of which programmers like in Smalltalk, Perl, and PHP.</p><p><iframe src="http://player.vimeo.com/video/31248257?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe><p><a href="http://vimeo.com/31248257">Xtend Intro</a> from <a href="http://vimeo.com/user2817486">Xtext Team</a> on <a href="http://vimeo.com">Vimeo</a>.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/11/xtend/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to install Tomcat 6 on RHEL 6 or CentOS 6</title><link>http://newpush.com/2011/10/how-to-install-tomcat-6-on-rhel-6-or-centos-6/</link> <comments>http://newpush.com/2011/10/how-to-install-tomcat-6-on-rhel-6-or-centos-6/#comments</comments> <pubDate>Mon, 31 Oct 2011 18:41:03 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[Apache Tomcat]]></category> <category><![CDATA[CentOS 6]]></category> <category><![CDATA[Java 6]]></category> <category><![CDATA[RHEL 6]]></category> <category><![CDATA[Tomcat 6]]></category><guid isPermaLink="false">http://newpush.com/?p=1263</guid> <description><![CDATA[Here are some steps to install Tomcat 6 on Red Hat 6 (or CentOS 6). &#160; First we are going to prepare the repository: yum install yum-priorities rpm -Uvh http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm rpm -Uvh http://mirrors.dotsrc.org/jpackage/6.0/generic/free/RPMS/jpackage-utils-5.0.0-7.jpp6.noarch.rpm Next we will install &#8230; <a href="http://newpush.com/2011/10/how-to-install-tomcat-6-on-rhel-6-or-centos-6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Here are some steps to install Tomcat 6 on Red Hat 6 (or CentOS 6).</h1><p>&nbsp;</p><h3>First we are going to prepare the repository:</h3><p><code><br /> yum install yum-priorities<br /> rpm -Uvh http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm<br /> rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm<br /> rpm -Uvh http://mirrors.dotsrc.org/jpackage/6.0/generic/free/RPMS/jpackage-utils-5.0.0-7.jpp6.noarch.rpm<br /> </code></p><h3>Next we will install Java and Tomcat 6:</h3><p><code><br /> yum -y install java<br /> yum -y install tomcat6 tomcat6-webapps tomcat6-admin-webapps<br /> </code></p><h3>Finally we can launch Tomcat 6:</h3><p><code><br /> service tomcat6 start<br /> </code></p><h3>To connect to Tomcat, just browse to port 8080 on the server, for example:</h3><p><code><br /> http://127.0.0.1:8080/<br /> </code><br /> Here are a couple of diagnostic commands to test that Tomcat is running:<br /> <code><br /> # service tomcat6 status<br /> tomcat6 (pid 17318) is running... [ OK ]<br /> # netstat -nlp|grep 800<br /> tcp 0 0 0.0.0.0:8009 0.0.0.0:* LISTEN xxxxx/java<br /> tcp 0 0 127.0.0.1:8005 0.0.0.0:* LISTEN xxxxx/java<br /> # netstat -nlp|grep 8080<br /> tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN xxxxx/java<br /> </code></p><h3>File Structure</h3><p>The Red Hat file structure is different than the default file structure Tomcat 6 has when installing from source. Here is the file structure that is used when installing with this method:<br /> <code><br /> /etc/tomcat6 (this is where the main tomcat config files reside)<br /> /usr/share/doc/usr/share/tomcat6<br /> /usr/share/tomcat6/bin<br /> /usr/share/tomcat6/conf<br /> /usr/share/tomcat6/lib<br /> /usr/share/tomcat6/logs<br /> /usr/share/tomcat6/temp<br /> /usr/share/tomcat6/webapps<br /> /usr/share/tomcat6/work<br /> /var/cache/tomcat6<br /> /var/cache/tomcat6/temp<br /> /var/cache/tomcat6/work<br /> /var/lib/tomcat6 (this is where you will add and/or change most of your files)<br /> /var/lib/tomcat6/webapps<br /> /var/log/tomcat6<br /> </code></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/10/how-to-install-tomcat-6-on-rhel-6-or-centos-6/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Installing a Secure Certificate on IBM Smart Business Server (VERDE)</title><link>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/</link> <comments>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/#comments</comments> <pubDate>Mon, 23 May 2011 07:41:06 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Business Intelligence]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Cognos 10]]></category> <category><![CDATA[Collaboration]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Domino]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[IBM Smart Business Server]]></category> <category><![CDATA[VDI]]></category> <category><![CDATA[VERDE]]></category> <category><![CDATA[Virtual Desktop]]></category><guid isPermaLink="false">http://newpush.com/?p=1130</guid> <description><![CDATA[At the time of this writing, the IBM Smart Business Server&#8217;s control panel doesn&#8217;t allow importing a secure certificate (SSL cert). Never-the-less it is possible to install a valid (CA signed) secure certificate from the command line. This article assumes &#8230; <a href="http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>At the time of this writing, the IBM Smart Business Server&#8217;s control panel doesn&#8217;t allow importing a secure certificate (SSL cert).  Never-the-less it is possible to install a valid (CA signed) secure certificate from the command line.  This article assumes that the reader is familiar with SSL and the basic SSL KEY, CSR, and CRT generation step.  We are therefore picking up at the point where you have an SSL KEY as well as an SSL CRT.  You will also need a machine that has <code>openssl</code> installed (any Linux or Mac box will do).  In fact the smart business server itself has openssl installed, as well as keytools, so all the steps can be performed directly on the smart business server.</p><p>Please note that this is a draft document, and work in progress.  At this time only the public facing websites have been successfully set up with a CA signed certificate.</p><ul><li>The Apache configuration file for the setup wizard is:<code>/etc/apache2/httpdWSW.conf</code></li><li>The Apache configuration file for the intranet is here:<code>/etc/apache2/httpdInt.conf</code> with the corresponding SSL configuration here: <code>/etc/apache2/extra/httpdInt-ssl.conf</code></li><li>First copy the new key and cert (in the same file, key goes on top and then the cert) into <code>/etc/opt/ibm/bbp/smartcontainer/httpdWSW.cert</code></li><li>(Optional, this step hasn&#8217;t been successfully tested, because a non-RFC compiant method is used.) To create an RFC compliant PKCS8 version of the key pair where the intranet config file is expecting it:<code><br /> cd /etc/opt/ibm/bbp/<br /> openssl pkcs8 -topk8 -inform PEM -nocrypt -in smartcontainer/httpdWSW.cert -out PKCS8.cert</code></li><li>Make sure the CA bundle is made available and properly reference in the above mentioned config files (<code>cp path/to/sf_bundle.crt smartcontainer/</code>)</li><li>Create a PKCS12 version of your certificate:<code><br /> openssl pkcs12 -export -chain -CAfile sf_bundle.crt -in '&lt;your>.crt' -inkey '&lt;your>.key' -out PKCS12.cert -name &lt;name> -passout pass:111111<br /> </code>(at the time of this writing, the default cert store password hard coded in the VERDE install is <code>111111</code>)</li><li>Location of the Java SSL Keystore: <code>/etc/opt/ibm/bbp/SSLkeystore</code></li><li>Location of the [SAFEv3] encription tool:<code>/opt/ibm/bbp/saf/encryptPassword.sh</code></li><li>Password retrieval command:<code>/opt/ibm/bbp/saf/lib/security/manageAdminCreds -f get -a JavaKeyStore2048BitKey -i 1</code></li><li>Create a new keystore based on the PKCS#12 cert: <code><br /> keytool -importkeystore -destkeystore SSLkeystore.new -srckeystore PKCS12.cert -srcstoretype PKCS12  -alias &lt;common_name_of_SSL_cert></code></li><li>Update the Keystore configuration reference in <code>/opt/ibm/bbp/saf/cfg</code> (use the password retrieved above).</li><li>Copy the PKCS#12 cert to the VERDE Tomcat cert store:<code><br /> cp PKCS12.cert /var/lib/verde/host.p12<br /> cp /var/lib/verde/host.p12 /usr/lib/verde/etc/host.p12<br /> </code>(Make sure you save your previous copies of any file you modify.)</li></ul><p>At this point, you have to restart the system, to make sure that all public services get the proper certificate loaded on boot.  If you prefer, you can restart the services:</p><ul><li><code>/etc/init.d/lwi restart </code></li><li><code>/etc/init.d/simpleAgent_d restart</code></li><li>restart the VERDE software from the web console</li></ul><h2>References</h2><ul><li>http://conshell.net/wiki/index.php/Keytool_to_OpenSSL_Conversion_tips</li><li>http://cunning.sharp.fm/2008/06/importing_private_keys_into_a.html</li><li>Many thanks to the bISV IBM support team</li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sametime 8.5.1 Deployment</title><link>http://newpush.com/2011/05/sametime-8-5-1-deployment/</link> <comments>http://newpush.com/2011/05/sametime-8-5-1-deployment/#comments</comments> <pubDate>Fri, 13 May 2011 20:25:13 +0000</pubDate> <dc:creator>Bill</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Collaboration]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Domino]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[Lotus]]></category> <category><![CDATA[Sametime]]></category><guid isPermaLink="false">http://newpush.com/?p=1105</guid> <description><![CDATA[To deploy a Sametime environment with multiple levels of licensing, multiple Sametime servers with each respective license versions needed (Entry, Standard, etc.). The Sametime wiki has a number of useful resources to plan out a complex Sametime deployment: http://www-10.lotus.com/ldd/stwiki.nsf/page.xsp?documentId=6F6353B28F5FB51185257775007AC431&#038;action=openDocument http://www-10.lotus.com/ldd/stwiki.nsf/dx/1.3_Lotus_Sametime_product_family &#8230; <a href="http://newpush.com/2011/05/sametime-8-5-1-deployment/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>To deploy a Sametime environment with multiple levels of licensing, multiple Sametime servers with each respective license versions needed (Entry, Standard, etc.).  The Sametime wiki has a number of useful resources to plan out a complex Sametime deployment:</p><ul><li>http://www-10.lotus.com/ldd/stwiki.nsf/page.xsp?documentId=6F6353B28F5FB51185257775007AC431&#038;action=openDocument</li><li>http://www-10.lotus.com/ldd/stwiki.nsf/dx/1.3_Lotus_Sametime_product_family</li><li>http://www-10.lotus.com/ldd/stwiki.nsf/xpViewCategories.xsp?lookupName=Learning%20Center</li></ul><p>And here are some documents that delve into the details:</p><ul><li>http://www-10.lotus.com/ldd/stwiki.nsf/dx/Chapter_2._Planning_a_Sametime_8.5.1_deployment</li><li>http://publib.boulder.ibm.com/infocenter/sametime/v8r5/index.jsp?topic=/com.ibm.help.sametime.v851.doc/plan/plan_topol_deploy.html</li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/05/sametime-8-5-1-deployment/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Verifying SSL Certificates</title><link>http://newpush.com/2010/12/verifying-ssl-certificates/</link> <comments>http://newpush.com/2010/12/verifying-ssl-certificates/#comments</comments> <pubDate>Fri, 31 Dec 2010 00:53:26 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[OpenBSD]]></category> <category><![CDATA[OpenSSL]]></category> <category><![CDATA[SSL]]></category><guid isPermaLink="false">http://newpush.com/?p=915</guid> <description><![CDATA[Problem You have a few SSL cert files on your server, but you are not sure which one is the newest, or the right cert to use. Solution Look at the contents of a CSR openssl req -noout -text -in &#8230; <a href="http://newpush.com/2010/12/verifying-ssl-certificates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Problem</h4><p>You have a few SSL cert files on your server, but you are not sure which one is the newest, or the right cert to use.</p><h4>Solution</h4><h5>Look at the contents of a CSR</h5><p><code><br /> openssl req -noout -text -in [domain_name].csr<br /> </code><br /> Where <code>[domain_name].csr</code> is the name of the CSR file.</p><h5>Look at the contents of a certificate</h5><p><code><br /> openssl x509 -noout -text -in [domain_name].crt<br /> </code></p><h5>Look at the MD5 fingerprint of a certificate</h5><p><code><br /> openssl x509 -fingerprint -noout -in [domain_name].crt<br /> </code></p><h5>Check the private key, the CSR, and the signed cert</h5><p>To check that the private key, the CSR, and the signed cert belong to the same set, you need to compare the MD5 outputs:<br /> <code><br /> openssl rsa -noout -modulus -in [domain_name].key |openssl md5<br /> openssl req -noout -modulus -in [domain_name].csr |openssl md5<br /> openssl x509 -noout -modulus -in [domain_name].crt |openssl md5<br /> </code></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/12/verifying-ssl-certificates/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Java Shopping Cart and eCommerce Solutions</title><link>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/</link> <comments>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/#comments</comments> <pubDate>Tue, 07 Dec 2010 07:27:38 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[Shopping Cart]]></category><guid isPermaLink="false">http://newpush.com/?p=860</guid> <description><![CDATA[Java Shopping Cart Hosting The need to host a shopping cart comes up on a regular basis. There are literally hundreds of very good solutions out there. Here is a list of carts that satisfy the following criteria: - configurable &#8230; <a href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Java Shopping Cart Hosting</h1><p>The need to host a shopping cart comes up on a regular basis.  There are  literally hundreds of very good solutions out there.  Here is a list of carts that satisfy the following criteria:<br /> - configurable<br /> - customizable<br /> - embeddable<br /> - has a flexible API<br /> - compatible with IBM DB2<a rel="attachment wp-att-865" href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/im-mark-170x22/"> <img class="size-full wp-image-865 alignright" title="Java Shopping Cart Hosting for IBM DB2" src="http://newpush.com/wp-content/uploads/2010/12/im-mark-170x22.gif?9d7bd4" alt="Java Shopping Cart Hosting for IBM DB2" width="170" height="22" /></a><br /> - scalable<br /> - reliable</p><p>With these requirements, Java EE is a good technology to settle on, hence the need to find Java Shopping Cart Hosting.</p><h2>Java Shopping Cart Hosting &#8211; Ready to Go Solutions</h2><p>The following products have been identified as viable solutions for Java Shopping Cart Hosting deployments:</p><ul><li>http://www-01.ibm.com/software/genservers/commerce/express/<a rel="attachment wp-att-866" href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/ws-mark-170x22/"> <img class="size-full wp-image-866 alignright" title="IBM Websphere Commerce" src="http://newpush.com/wp-content/uploads/2010/12/ws-mark-170x22.gif?9d7bd4" alt="Java Shopping Cart Hosting with IBM Websphere Commerce" width="170" height="22" /></a></li><li>http://www.softslate.com/</li><li>http://ofbiz.apache.org/</li><li>http://www.shopizer.com/</li><li>http://www.jadasite.com/</li><li>http://www.openedit.org/</li><li>http://www.konakart.com/</li><li>http://www.avetti.com/</li><li>http://allbinary.appspot.com/Weblisket.jsp</li></ul><h3>Java Shopping Cart Hosting &#8211; Tutorials</h3><p>There are also a couple good tutorials we found that would walk you through how to create a shopping cart from scratch to embed into an existing application:</p><ul><li>http://www.ibm.com/developerworks/library/j-ajax1/</li><li>http://www.tech-freaks.in/Java-Programming/JSP-Servlets/shopping-cart.html</li></ul><p>Any of the above is supported in our <a href="/category/services/managed-hosting/">Managed Hosting</a> environment for a successful Java Shopping Cart Hosting deployment.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Online fax service with SSL API</title><link>http://newpush.com/2010/10/online-fax-service-with-ssl-api/</link> <comments>http://newpush.com/2010/10/online-fax-service-with-ssl-api/#comments</comments> <pubDate>Wed, 06 Oct 2010 16:52:25 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Collaboration]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[OpenBSD]]></category> <category><![CDATA[Perl]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Services]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Fax]]></category> <category><![CDATA[Fax API]]></category> <category><![CDATA[MetroFax]]></category> <category><![CDATA[Online Fax]]></category><guid isPermaLink="false">http://newpush.com/?p=693</guid> <description><![CDATA[Problem You need to create an online application that is capable of sending a FAX securely (PCI, HIPAA or other compliance). Solution After trying trustfax and eFax, neither of which has a secure API, Ralph found that Metro Fax has &#8230; <a href="http://newpush.com/2010/10/online-fax-service-with-ssl-api/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Problem</h4><p>You need to create an online application that is capable of sending a FAX securely (PCI, HIPAA or other compliance).</p><h4>Solution</h4><p>After trying trustfax and eFax, neither of which has a secure API, Ralph found that Metro Fax has a SSL API for developers and the cost is reasonable.</p><p>The following SDK as well as some supporting documentation below will help you get started: <a href='http://newpush.com/2010/10/online-fax-service-with-ssl-api/wsfsdk/' rel='attachment wp-att-694'>WsfSDK</a></p><p>The MetroFax webservice gateway is available at:</p><p>https://wsf.metrofax.com/webservice.asmx</p><p>And there is supporting documentation (NDoc) available below:</p><p>https://wsf.metrofax.com/doc</p><p>The attached SDK contains sample implementations of numerous common methods.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/online-fax-service-with-ssl-api/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Installing Informix IDS 11.x on Mac OS X</title><link>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/</link> <comments>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/#comments</comments> <pubDate>Mon, 20 Sep 2010 06:31:52 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[DB2]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[IBM Informix]]></category> <category><![CDATA[Informix]]></category> <category><![CDATA[Snow Leopard]]></category><guid isPermaLink="false">http://newpush.com/?p=670</guid> <description><![CDATA[Problem Installing IDS 11 on Mac OS X Solution After installing the server, update the sqlhosts file and replace the default host name by * so that the server listens on all IPs. The sqlhosts file may be names sqlhosts.ol_server_name, &#8230; <a href="http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Problem</h4><p>Installing IDS 11 on Mac OS X</p><h4>Solution</h4><p>After installing the server, update the <code>sqlhosts</code> file and replace the default host name by <code>*</code> so that the server listens on all IPs.   The <code>sqlhosts</code> file may be names <code>sqlhosts.ol_server_name</code>, and its contents would look like:<br /> <code><br /> ol_server_name onsoctcp * ol_server_name<br /> dr_server_name drsoctcp * dr_server_name<br /> </code></p><h4>References</h4><p>When IDS 11 is officially released, more information will be published here.  For now, the following links have pointers:</p><ul><li><a href="http://practicallyagile.com/2010/01/installing-informix-on-a-mac/">http://practicallyagile.com/2010/01/installing-informix-on-a-mac/</a></li><li><a href="http://www.xmission.com/~dbaresrc/Intro_IDS_on_Mac_v3.pdf">http://www.xmission.com/~dbaresrc/Intro_IDS_on_Mac_v3.pdf</a></li><li><a href="http://www.ibm.com/developerworks/downloads/im/ids/dev.html?S_TACT=105AGX28&#038;S_CMP=DLMAIN">http://www.ibm.com/developerworks/downloads/im/ids/dev.html?S_TACT=105AGX28&#038;S_CMP=DLMAIN</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Migrating Data to DB2 9.7 LUW</title><link>http://newpush.com/2010/08/migrating-data-to-db2-9-7-luw/</link> <comments>http://newpush.com/2010/08/migrating-data-to-db2-9-7-luw/#comments</comments> <pubDate>Sun, 08 Aug 2010 04:45:35 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Data Migration]]></category> <category><![CDATA[DB2 9.7]]></category> <category><![CDATA[IBM Data Movement Tool]]></category> <category><![CDATA[Migration Toolkit]]></category> <category><![CDATA[MTK]]></category><guid isPermaLink="false">http://newpush.com/?p=629</guid> <description><![CDATA[Problem You reached the limit or your unhappy with the performance or features of your database server, and you want to move to DB2. The transition can be simple with respect to your code, as it may be just a &#8230; <a href="http://newpush.com/2010/08/migrating-data-to-db2-9-7-luw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Problem</h4><p>You reached the limit or your unhappy with the performance or features of your database server, and you want to move to DB2.  The transition can be simple with respect to your code, as it may be just a matter of changing a few lines of code for the connection string, and setting the correct compatibility mode in DB2.  But how do you move your data?</p><h4>Solution</h4><p>IBM has published a <a href="https://www.ibm.com/developerworks/data/library/techarticle/dm-0906datamovement/">data migration toolkit</a>, that has been updated to work best with DB2 9.7.  Make sure you have service pack 2 installed, which is the latest service pack available as of this writing.</p><p>If you are migrating from MySQL or PostgreSQL, enable the ability to do limits and offsets in the where clause with:<code><br /> db2stop force<br /> echo Set compatibility to 01 or 0F<br /> db2set DB2_COMPATIBILITY_VECTOR=01<br /> db2start<br /> </code></p><h4>References</h4><ul><li><a href="https://www.ibm.com/developerworks/data/library/techarticle/dm-0906datamovement/">DB2 9.7: IBM Data Movement Tool</a></li><li><a href="http://www.redbooks.ibm.com/redbooks/pdfs/sg247093.pdf">MySQL to DB2 conversion guide</a></li><li><a href="http://www.mediawiki.org/wiki/Manual:IBM_DB2">IBM DB2 for MediaWiki</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/08/migrating-data-to-db2-9-7-luw/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IBM Security Tools</title><link>http://newpush.com/2010/07/ibm-security-tools/</link> <comments>http://newpush.com/2010/07/ibm-security-tools/#comments</comments> <pubDate>Fri, 30 Jul 2010 05:53:09 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Cognos 10]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Services]]></category> <category><![CDATA[AppScan]]></category> <category><![CDATA[IBM]]></category> <category><![CDATA[Rational]]></category><guid isPermaLink="false">http://newpush.com/?p=618</guid> <description><![CDATA[IBM has a comprehensive approach to encourage security by design. A free Red Book is available for developers: The IBM Redbook for Security in Development The home page for IBM&#8217;s main security testing tool is IBM Rational AppScan]]></description> <content:encoded><![CDATA[<p>IBM has a comprehensive approach to encourage security by design.  A free Red Book is available for developers: <a href="http://www.redbooks.ibm.com/abstracts/redp4641.html">The IBM Redbook for Security in Development</a></p><p>The home page for IBM&#8217;s main security testing tool is <a href="http://www-01.ibm.com/software/awdtools/appscan/">IBM Rational AppScan</a></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/07/ibm-security-tools/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: newpush.com @ 2012-02-09 23:00:43 by W3 Total Cache -->
