<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>middleware &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/middleware/</link>
	<description>Feed of posts on WordPress.com tagged "middleware"</description>
	<pubDate>Sat, 11 Oct 2008 15:28:25 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Minerva's IPTV Middleware Replaces Kasenna's at CDE Lightband]]></title>
<link>http://itvt.wordpress.com/?p=1908</link>
<pubDate>Sat, 04 Oct 2008 03:13:38 +0000</pubDate>
<dc:creator>itvtwp</dc:creator>
<guid>http://blog.itvt.com/2008/10/04/minervas-iptv-middleware-replaces-kasennas-at-cde-lightband/</guid>
<description><![CDATA[IPTV middleware and applications provider, Minerva Networks, says that it has deployed its flagship ]]></description>
<content:encoded><![CDATA[<p><strong>IPTV middleware and applications provider, Minerva Networks, says that it has deployed its flagship iTVManager solution to power the Clarksville (TN) Department of Electricity's IPTV service, CDE Lightband. iTVManager replaced middleware from Kasenna which--CDE Lightband president, Ken Spradlin, was quoted in the local newspaper, The Leaf Chronicle, as saying--had not worked as advertised (note: Kasenna was recently acquired by Espial--<a href="http://www.itvt.com/wvjsitvtissue-7.95pt1.html"><span style="text-decoration:underline;"><span style="color:#666666;">see [itvt] Issue 7.95 Part 1</span></span></a>). </strong>According to Minerva, CDE Lightband was seeking a solution that supported HD and PVR, but wanted to retain its investment in Amino set-top boxes and Kasenna video servers, and to be able to change middleware without truck-rolls. Minerva claims to have implemented 25 similar switchovers in North America, in which it replaced four different types of middleware, and says that its professional services team has a proven process for doing so: according to the company, the process is designed to ensure limited or no downtime for existing IPTV subscribers, to minimize or eliminate truck-rolls, and to reuse existing IPTV infrastructure. "We were losing too many customers from a lack of key features," Christy Batts, CDE Lightband's interim VP of telecommunications, said in a prepared statement. "We had to find a replacement. Minerva was able to switchover with no downtime. More importantly, we were able to use the existing infrastructure, which saved us a tremendous amount of money."</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Szoftverfejlesztő - beágyazott rendszerek]]></title>
<link>http://spillerlaszlo.wordpress.com/?p=462</link>
<pubDate>Tue, 30 Sep 2008 07:05:50 +0000</pubDate>
<dc:creator>Spiller László</dc:creator>
<guid>http://spillerlaszlo.de.wordpress.com/2008/09/30/szoftverfejleszto-beagyazott-rendszerek/</guid>
<description><![CDATA[Feladatok:



Piacképes elektronikai termékek szoftverének (főleg firmware, middleware) fejleszt]]></description>
<content:encoded><![CDATA[<p>Feladatok:</p>
<dl>
<dd>
<ul>
<li>Piacképes elektronikai termékek szoftverének (főleg firmware, middleware) fejlesztése, minősítése és dokumentációja az adott költség-, minőségi és határidő követelményeknek és a vonatkozó szabványoknak megfelelően,</li>
<li>Hosszú életciklusú elektronikatermékek szoftverének gondozása és az esetleges hibák felderítése / kijavítása.</li>
</ul>
</dd>
<dt>Elvárások:</dt>
<ul>
<li>Villamosmérnöki, informatikai vagy programozói végzettség (2-3 éves szoftverfejlesztési tapasztalat előny),</li>
<li>Tapasztalat beágyazott szoftverek tervezése és tesztelése terén,</li>
<li>A felhasznált programnyelvek (C, Assembly) alapos ismerete (az objektumorientált programozás és XML ismerete előny),</li>
<li>Valósidejű operációs rendszerek és kommunikációs protokollok (CAN, TCP/IP, stb.) ismerete,</li>
<li>Angol nyelvtudás (német nyelvtudás előny),</li>
<li>Utazási kedv,</li>
<li>Kommunikációs készség, csapatmunka.</li>
</ul>
</dl>
<p><a href="mailto:laszlo_spiller@kellyservices.hu">laszlo_spiller@kellyservices.hu</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Optimal Integer Linear Prediction Coefficients]]></title>
<link>http://pizer.wordpress.com/?p=3</link>
<pubDate>Sun, 28 Sep 2008 15:24:47 +0000</pubDate>
<dc:creator>pizer</dc:creator>
<guid>http://pizer.de.wordpress.com/2008/09/28/optimal-integer-linear-prediction-coefficients/</guid>
<description><![CDATA[Most lossless audio codecs make use of linear prediction as a means to decorrelate signals. Since en]]></description>
<content:encoded><![CDATA[<p>Most lossless audio codecs make use of <a href="http://en.wikipedia.org/wiki/Linear_prediction">linear prediction</a> as a means to decorrelate signals. Since encoder and decoder need to work with the same set of prediction coefficients they either have to be chosen by the encoder and included in the compressed data stream before they are used (<em>forward adaptive</em>) or there must be a deterministic algorithm to compute these coefficients based on previous data (<em>backward adaptive</em>). <a href="http://flac.sourceforge.net/">FLAC</a> and <a href="http://www.thbeck.de/Tak/Tak.html">TAK</a> are two examples of codecs that use <em>forward adaptive</em> linear prediction. This is the case I'm dealing with in this article.</p>
<p><!--more--></p>
<p>Computing good real-valued prediction coefficients isn't that difficult, actually. But these coefficients also need to be coded somehow which involves <a href="http://en.wikipedia.org/wiki/Quantization_(signal_processing)">quantization</a>. One option is to simply quantize the optimal real-valued coefficients to rational numbers that share a certain denominator. <a href="http://flac.sourceforge.net/format.html">FLAC's format specification</a> for example allows transmission of rational coefficients that have a power-of-two as denominator. However, simple per-coefficient rounding to the closest rational number doesn't necessarily lead to the best set of <em>quantized</em> coefficients. What does "best" mean anyway? Suppose we fix the prediction order and the prediction coefficients' accuracy (denominator). We'd like to choose a set of quantized prediction coefficients that reduce the number of bits spent on the residual samples. Since this is a really complicated minimization problem we need to simplify our objective function. The natural choice is to minimize the sum of squared (not-yet-quantized) prediction errors instead. This objective function turns the problem into an "integer least squares" problem.</p>
<p>Suppose you have a block of $latex m$ samples $latex s_k$ ($latex 1&#60;=k&#60;=m$), you want to compute $latex n$ prediction coefficients ($latex n &#60;&#60; m$) for the remaining m-n predictions (the first n samples are the "warm-up" samples) and the coefficients' denominator is 'p' for "precision". This leads to the following integer least squares problem ILS(A,b):</p>
<p style="text-align:center;">$latex A = (a_{i,j}) \in \mathbb{R}^{m-n,n} \, , \, \, b \in \mathbb{R}^{m-n}$</p>
<p style="text-align:center;">$latex a_{i,j} = s_{i+j-1} \, , \, \, b_i = p \cdot s_{i+n}$</p>
<p style="text-align:center;">for $latex 1 &#60;= i &#60;= m-n$ and $latex 1 &#60;= j &#60;= n$</p>
<p style="text-align:center;">find $latex x \in \mathbb{Z}^n$ that minimizes $latex &#124;&#124; A \cdot x - b &#124;&#124;$</p>
<p style="text-align:justify;">
<p style="text-align:justify;">ILS (integer least squares) is known to be NP-hard which practically means that computing the optimal solution for a <em>large</em> problem (matrix with many columns) takes quite some time. However, in case of typical linear prediction problems the complexity of computing the optimal set of oefficients is rather moderate.</p>
<p style="text-align:justify;">How do we solve an ILS problem? There are a couple of approaches. Many include a popular tool known as <a href="http://en.wikipedia.org/wiki/Lenstra%E2%80%93Lenstra%E2%80%93Lov%C3%A1sz_lattice_basis_reduction_algorithm">LLL lattice reduction</a>. With the help of orthogonal transforms and the LLL lattice reduction algorithm the above problem can be reduced to another instance ILS(R,y) where R is square upper triangular matrix of order 'n' with a near-orthogonal columns of low norm. A by-product of the reduction process is a an integer matrix M which connects the two problem instances: Assuming w is an optimal solution for ILS(R,y), x=M*w will be an optimal solution for ILS(A,b). Since M contains integers only, x will also be an integer vector. This reduction process is a kind of preconditioning which means the problem ILS(R,y) is "easier" to solve than ILS(A,b).</p>
<p style="text-align:justify;">Still, we need to solve ILS(R,y). A simple approximation of the optimal solution is called <em>Nulling and Cancelling</em>:</p>
<p style="text-align:center;">$latex w'_j = \lceil \frac{y_j - \sum_{t=j+1}^{n} R_{j,t} w'_t}{R_{j,j}} \rfloor\,$ for j=n,n-1,...,1</p>
<p style="text-align:justify;">The approximation's coefficients are computed one at a time. Except for the rounding part ($latex \lceil \cdot \rfloor$ denotes the closest integer) this is exactly what you do to solve a triangular system. Note that <em>previously quantized</em> coefficients are reused to solve for the next coefficient. If we're lucky we already found the optimal solution (w'=w). But there's no easy way to tell. The optimal solution can be computed with an informed tree search where each outgoing edge corresponds to a certain quantization decision. At the first level $latex w'_n$ is quantized. Next in line is $latex w'_{n-1}$ until we reach a leaf node where all coefficients have been determined. Coupling a depth-first search with <a href="http://en.wikipedia.org/wiki/Branch_and_bound">branch and bound</a> that picks the most promising path first is what I did for my C implementation.</p>
<p style="text-align:justify;">You can download my C implementation <a href="http://www.zshare.net/download/1957411576f7e250/">here</a>. It's released under a two-clause BSD license. Have fun!</p>
<p style="text-align:justify;">- P</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
]]></content:encoded>
</item>
<item>
<title><![CDATA[Premiera pierwszego na świecie telefonu z systemem Google Android]]></title>
<link>http://xteam7.wordpress.com/?p=1751</link>
<pubDate>Wed, 24 Sep 2008 21:08:31 +0000</pubDate>
<dc:creator>ziom2123</dc:creator>
<guid>http://xteam7.de.wordpress.com/2008/09/24/premiera-pierwszego-na-swiecie-telefonu-z-systemem-google-android/</guid>
<description><![CDATA[
Dziś premiera telefonu G1 z systemem Google Android. Bezpośrednią transmisję z międzynarodowej]]></description>
<content:encoded><![CDATA[<p><img class="news_thumb" style="margin-top:15px;" src="http://www.pcformat.pl/g/news/uu/t/android.jpg" alt="thumb" align="left" /></p>
<p>Dziś premiera telefonu G1 z systemem Google Android. Bezpośrednią transmisję z międzynarodowej konferencji można będzie obejrzeć pod linkiem <a href="http://announcement.t-mobileg1.com/" target="_blank">http://announcement.t-mobileg1.com/</a> o godz. 16:30 czasu polskiego.<!--more--></p>
<p>Krótko przypomnijmy, czym jest Android. To opracowana przez firmę Google platforma programistyczna obejmująca mobilny system operacyjny, middleware (czyli oprogramowanie pośredniczące umożliwiające komunikację użytkownika z bazami danych, serwerami i usługami) oraz zestaw kluczowych mobilnych aplikacji, takich jak ekran domowy (Home), kontakty (Contacts), funkcje telefoniczne (Phone) i przeglądarka (Browser).</p>
<p><strong>Źródło &#38; Obrazek: <a title="PC Format" href="http://www.pcformat.pl/" target="_blank">PC Format</a>, Autor: </strong><strong><span class="link">Agnieszka Serafinowicz</span></strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Monumental Games Funded with £300K]]></title>
<link>http://pixellove.wordpress.com/?p=990</link>
<pubDate>Wed, 24 Sep 2008 14:00:06 +0000</pubDate>
<dc:creator>davidhayward</dc:creator>
<guid>http://pixellove.de.wordpress.com/2008/09/24/monumental-games-funded-with-300k/</guid>
<description><![CDATA[
East Midlnads based Monumental Games have won £300,000 of funding from the Technology Strategy Boa]]></description>
<content:encoded><![CDATA[<p><img src="http://pixellove.wordpress.com/files/2008/09/monumental-lenin.jpg" alt="" title="http://flickr.com/photos/86778817@N00/75924772/" width="450" height="100" class="alignnone size-full wp-image-991" /></p>
<p>East Midlnads based Monumental Games have won £300,000 of funding from the Technology Strategy Board, they <a href="http://www.gamesindustry.biz/articles/monumental-games-funding-mmo-engine-developer-trousers--300-000-from-technology-strategy-board">announced yesterday</a>.</p>
<p>It makes a lot of sense, as networked technology is looking like one of the safest bets in games at the moment.</p>
<p>I do wonder if Rocco wrote this or it was written for him, as press release quotes often are:</p>
<blockquote><p>Project Chairman Rocco Loscalzo (CTO of Monumental) praised the approach of the Technology Strategy Board. “This is the first year that the Technology Strategy Board has invited applications from the Creative Industries, and it is encouraging to see recognition for the contribution made by such industries to the UK economy. This award for Collaborative Research and Development has enabled us to kick-start a commercially viable but inherently high-risk project, and we can’t wait to get going with our partners.”</p></blockquote>
<p>Either way, it's fairly progressive for a games company to class themselves under "creative industries"; most stay pretty aloof from the label because they see it as only applying to small, local artisanal businesses.</p>
<p>(CC image of monumental forehead by <a href="http://flickr.com/photos/86778817@N00/75924772/">Salemek</a>)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Technologia PhysX wzmacnia doznania w Cryostasis: Sleep of Reason]]></title>
<link>http://xteam7.wordpress.com/?p=1734</link>
<pubDate>Tue, 23 Sep 2008 13:06:29 +0000</pubDate>
<dc:creator>ParalyserX</dc:creator>
<guid>http://xteam7.de.wordpress.com/2008/09/23/technologia-physx-wzmacnia-doznania-w-cryostasis-sleep-of-reason/</guid>
<description><![CDATA[Nadchodzący  FPS od firmy 1C przyprawi graczy o  dreszcze grozy
W  dzisiejszych czasach deweloperzy]]></description>
<content:encoded><![CDATA[<p align="center"><a href="http://xteam7.files.wordpress.com/2008/09/cryostasis1.jpg"><img class="aligncenter size-large wp-image-1735" title="cryostasis1" src="http://xteam7.wordpress.com/files/2008/09/cryostasis1.jpg?w=510" alt="" width="510" height="340" /></a><em>Nadchodzący  FPS od firmy 1C przyprawi graczy o  dreszcze grozy</em></p>
<p>W  dzisiejszych czasach deweloperzy są zainteresowani nie tylko  olśniewającą, wysoce realistyczną grafiką. Chcą gier, które wciągają  graczy do wirtualnego świata. Aby osiągnąć pełne złudzenie rzeczywistości,  środowisko gry powinno być maksymalnie realistyczne, zaś postacie  muszą poruszać się i oddziaływać na umieszczone w środowisku obiekty,  co z kolei powinno mieć wpływ na rozgrywkę. Nadchodząca gra Crysostasis:  Sleep of Reason, interaktywna kombinacja horroru i thrillera w perspektywie  pierwszej osoby, jest jedną z ciągle zwiększającej się liczby gier  wprowadzających technologię NVIDIA® PhysX™.  Dzięki temu atmosfera jest o wiele bardziej realistyczna - przepełniona  strachem.</p>
<p>“Dla Cryostasis: Sleep  of Reason, głównym założeniem jest podkreślenie wizualnych  efektów dzięki żywemu i interaktywnemu środowisku, które wpływa  na poziom realizmu doświadczanego przez graczy,” powiedział Darryl  Still, dyrektor wydawniczy w 1C. “Technologia NVIDIA PhysX pozwoliła  nam na stworzenie tej przerażającej i wysoce interaktywnej historii.”<!--more--></p>
<p>Z silnikiem fizycznym NVIDIA  PhysX wirtualny świat Cryostasis: Sleep of Reason  ożywa: ubrania mogą być zamrożone lub rozmrożone, rozbite szkło  staje się bronią, której należy unikać,  inne obiekty, takie jak  pudła, beczki i rury kanalizacyjne, w momencie postrzału lub zniszczenia,  zaczynają żyć własnym życiem. Technologia NVIDIA PhysX, składająca  się z silnika fizycznego, API i oprogramowania middleware, jest najbardziej  interaktywnym silnikiem fizyki i wchodzi w skład ponad 140 tytułów  przeznaczonych dla Sony Paystation 3, Micrsoft Xbox 360, Nintendo Wii  i PC.</p>
<p>Wykorzystując komputer kasy  PC,  technologia PhysX wykorzystuje moc zarówno procesora, jak każdego,  zgodnego z CUDA, procesora obliczeń równoległych, czyli również  karty graficznej od serii NVIDIA GeForce 8 wzwyż. Dzięki temu można  obsłużyć od 10 do 20 razy bardziej skomplikowane graficznie środowiska  niż bez zastosowania takiego procesora graficznego GeForce. Jedynie  technologia PhysX jest w stanie wykorzystać w pełni architekturę  CPU oraz  GPU i zapewnić maksymalnie realistyczne doświadczenia  użytkownikom. . Wszystkie procesory graficzne serii GeForce 8 i nowsze  obsługują technologię CUDA, dzięki czemu PhysX ma do dyspozycji  ogromną, ponad 80-milionową bazę procesorów do obliczeń równoległych  ogólnego zastosowania.</p>
<p>“1C i Action Forms, deweloperzy  Cryostasis: Sleep of Reason, wyprodukowali grę, która  niezaprzeczalnie  może zostać nazwana najbardziej przerażającą grą na PC” powiedział  Roy Taylor, wiceprezes NVIDIA do spraw kontaktów z developerami. “Gracze  pokochają tę mieszaninę horroru i powieści science-fiction, która  wrzuca ich na pokład lodołamacza o napędzie nuklearnym, około roku  1968. To jest gra, w którą będziesz musiał grać przy zapalonym  świetle!”</p>
<p>Cryostasis: Sleep of Reason planowo pojawi się na rynku pod koniec  2008 roku. W celu uzyskania większej ilości informacji, odwiedź <a href="http://nzone.co.uk/object/nzone_cryostasis_home.html" target="_blank">http://nzone.co.uk/object/nzone_cryostasis_home.html</a>.</p>
<p><strong>Galeria:</strong></p>
[gallery]
<p><strong>O firmie 1C </strong><br />
1C Company specjalizuje się w dystrybucji, wydawaniu i produkcji  oprogramowania na rynek masowy. Założone w 1991 roku, 1C stało się  wiodącym wydawcą i producentem we wschodniej i centralnej Europie.  1C Company jest uznanym producentem gier i posiada kilka wewnętrznych  studiów.  Produkcje 1C to między innymi IL-2 Sturmovik,  IL-2 Sturmovik: Forgotten Battles, Aces Expansion Pack,  Pacific Fighters i Theatre of War. 1C Company działa jako  wydawca i producent z 30 niezależnymi studiami deweloperów i wyprodukowała  ponad 100 projektów na PC oraz konsole.</p>
<p><strong>O firmie  NVIDIA</strong></p>
<p><a href="http://xteam7.wordpress.com/files/2008/07/nvlogo_3d_darktype.jpg"><img class="alignright size-medium wp-image-895" title="nvlogo_3d_darktype" src="http://xteam7.wordpress.com/files/2008/07/nvlogo_3d_darktype.jpg?w=300" alt="" width="300" height="233" /></a>NVIDIA (Nasdaq: NVDA) jest  światowym liderem technologii obliczeń wizualnych i twórcą GPU (procesora  graficznego), układu o wysokiej wydajności oferującego nowoczesną,  interaktywną grafikę w stacjach roboczych, komputerach osobistych,  konsolach do gier i urządzeniach przenośnych. NVIDIA oferuje produkty  z serii GeForce® dla zastosowań rozrywkowych i domowych, Quadro™  na rynku profesjonalnego projektowania i wizualizacji oraz Tesla™  dla rynku obliczeń o wysokiej wydajności. Siedziba firmy NVIDIA mieści  się w Santa Clara w Kalifornii, z biurami w Azji, Europie i w obu Amerykach.</p>
<p><span style="font-size:x-small;font-family:Times New Roman;">Pewne oświadczenia przedstawione  w tej informacji prasowej, w tym, ale nie ograniczając się do: korzyści,  funkcji, wpływu i możliwości procesorów graficznych NVIDIA GeForce,  technologii NVIDIA PhysX; i CUDA; wpływu fizyki na gry komputerowe  oraz wydania <em>Cryostasis: Sleep of Reason</em> są oświadczeniami  wybiegającymi w przyszłość i jako takie są obciążone ryzykiem  i niepewnością, przez co stan faktyczny może znacząco różnić  się od oczekiwań. Ryzyko to i niepewność dotyczą, ale nie są do  nich ograniczone, możliwości produkcyjnych firm trzecich w zakresie  produkcji, montażu i testowania naszych produktów; problemów projektowych,  produkcyjnych lub programowych; opracowania szybszych lub bardziej wydajnych  procesorów graficznych; opóźnień w publikacji gier; wykorzystania  GPU w grafice komputerowej; wpływu postępu technologicznego i konkurencji;  zmian w preferencjach i wymaganiach klientów oraz innych czynników  ryzyka wyszczególnianych w pewnych okresach czasu w raportach firmy  NVIDIA przesyłanych do Securities and Exchange Commission (Komisja  Papierów Wartościowych i Giełd), w tym w dokumencie Form 10-K za  okres finansowy zakończony 27 kwietnia 2008 roku. Kopie dokumentów  dostarczonych Komisji są dostępne bezpłatnie na stronie internetowej  firmy NVIDIA. Te wybiegające w przyszłość oświadczenia obowiązują  tylko w chwili ich opublikowania i, z wyjątkiem przypadków przewidzianych  przez prawo, firma NVIDIA nie podejmuje żadnych zobowiązań dotyczących  aktualizacji tych wybiegających w przyszłość oświadczeń.</span></p>
<p><span style="font-size:x-small;font-family:Times New Roman;">Copyright © 2008 NVIDIA Corporation.  Wszelkie prawa zastrzeżone. NVIDIA, PhysX, GeForce, Quadro, Tesla i  CUDA są znakami towarowymi i/lub zarejestrowanymi znakami towarowymi  NVIDIA Corporation w Stanach Zjednoczonych i pozostałych krajach. Wszystkie  nazwy firm i/lub produktów mogą być nazwami handlowymi, znakami towarowymi  i/lub zastrzeżonymi znakami towarowymi ich prawnych właścicieli.  Funkcjonalność, ceny, dostępność i specyfikacje mogą ulec zmianie  bez powiadomienia.</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Oracle in Middleware]]></title>
<link>http://oracled.wordpress.com/?p=24</link>
<pubDate>Sun, 21 Sep 2008 18:12:28 +0000</pubDate>
<dc:creator>oracled</dc:creator>
<guid>http://oracled.de.wordpress.com/2008/09/21/oracle-in-middleware/</guid>
<description><![CDATA[Oracle has an array of products for building a strong middleware. Oracle has done everything it ca]]></description>
<content:encoded><![CDATA[<p>Oracle has an array of products for building a strong middleware. Oracle has done everything it can to provide integration solutions to its customers. But not all are happy with these solutions. You can see some curt replies on forums or ask any oracle developer.</p>
<p>If you complain about deployment and usabilities of Oracle Enterprise software, you just know the tip of an iceberg.</p>
<p>When you are (God forbids) unlucky enough to get hired as a Senior Software Developer for Oracle, you will see the full horrible iceberg.</p>
<p>First of all, their enterprise software architecture is bad, and based on all the principles of "How to write slow and unreliable Java code". They use EJB, RMI and all distributed technologies unnecessarily, for no particular reason, except to amuse themselves, and torture their customers.</p>
<p>Second of all, a lot of Oracle enterprise applications claim to be J2EE applications, but contain a lot of Active X and proprietary javascript code for Internet Explorer, so they run only with Internet Explorer.</p>
<p>Third of all, they have very bad intergration strategy between Oracle products, so some Oacle products run very well (well here means relatively less bugs) with every other Application Server, except Oracle Application Server ;-)</p>
<p>Forth of all, they don't have good practice about Refactoring, Code review, Test first Development, only have theory, so the quality of Oracle's code is terrible.</p>
<p>Fifth of all, they have a very funny build process for J2EE application, which involves 10 different tools, from simple javac to Ant to Unix shell sh, m4 interepreter to Cruise Control, perl script, yapp and God know what else. But I swear that one day I really counted them, and there were 10 different things in all. Why the hell they cannot use Ant and Cruise Control, or if they must, use either Perl or Sh script? But they use 10 different things. Thanks God they don't include C# and Visual Basic into the build process.</p>
<p>Sixth of all, they don't have incremental build for some enterprise applications, so each time a developer change some thing in one file, he has to build the whole thing, and deploy the whole J2EE app again.</p>
<p>Seventh of all, Oracle Application Server is the second worst J2EE application server in the whole industry. (The worst is IBM Websphere). Even some Oracle enterprise products cannot be deployed reliably on OAS, while they can be deployed fairly easy on Weblogic or any other things. The performance of OAS is terribly bad, although they advertise something else on Oracle Website. And the Management Console is a typical study case about "How to design bad User Interface".</p>
<p>The last, but not least, that the team spririt in Oracle development team sucks. I don't even want to go into the details.</p>
<p>Of all other things, Oracle Collaboration Suite, Oracle iProcurement and Oracle HR tools ..., I think Oracle produces those kinds of software to take revenge on their customers, make their lives miserable. There is nothing that is more difficult and inconvenient to use than those Oracle hacky wacky products.</p>
<p>So except database which has been developed since Larry Ellison's time, all other Oracle products suck.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA["Why so serious ..... ??"]]></title>
<link>http://sandeepphukan.wordpress.com/?p=7</link>
<pubDate>Tue, 09 Sep 2008 19:58:28 +0000</pubDate>
<dc:creator>Sandeep Phukan</dc:creator>
<guid>http://sandeepphukan.de.wordpress.com/2008/09/09/why-so-serious/</guid>
<description><![CDATA[My blogs are all below&#8230; enjoy:
http://soaranch.wordpress.com/
http://treecast.wordpress.com/
h]]></description>
<content:encoded><![CDATA[<p>My blogs are all below... enjoy:</p>
<p><a href="http://soaranch.wordpress.com/" target="_blank">http://soaranch.wordpress.com/</a></p>
<p><a href="http://treecast.wordpress.com/" target="_blank">http://treecast.wordpress.com/</a></p>
<p><a href="http://algorithmfun.wordpress.com/" target="_blank">http://algorithmfun.wordpress.com/</a></p>
<p><a href="http://simplifyj.wordpress.com/" target="_blank">http://simplifyj.wordpress.com/</a></p>
<p><a href="http://iprocess.wordpress.com/" target="_blank">http://iprocess.wordpress.com/</a></p>
<p><a href="http://middleware.wordpress.com/" target="_blank">http://middleware.wordpress.com/</a></p>
<p><a href="http://messagingengine.wordpress.com/" target="_blank">http://messagingengine.wordpress.com/</a></p>
<p><a href="http://iprocessextend.wordpress.com/" target="_blank">http://iprocessextend.wordpress.com/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Infrastructure Reference]]></title>
<link>http://peoplesoftbits.wordpress.com/?p=14</link>
<pubDate>Sun, 07 Sep 2008 18:45:12 +0000</pubDate>
<dc:creator>idelatorre</dc:creator>
<guid>http://peoplesoftbits.de.wordpress.com/2008/09/07/infrastructure-reference/</guid>
<description><![CDATA[

These are some useful references on PeopleSoft and PeopleSoft EPM Warehouse infrastructure compone]]></description>
<content:encoded><![CDATA[<div class="entry">
<div class="snap_preview">
<p>These are some useful references on PeopleSoft and PeopleSoft EPM Warehouse infrastructure components</p>
<p><strong>OBIEE:</strong></p>
<ul>
<li>PeopleSoftBits OBIEE Installation Post:<br />
<a href="http://peoplesoftbits.wordpress.com" target="_self">Pending...</a></li>
<li>Oracle Technology Network OBIEE Home:<br />
<a href="http://www.oracle.com/technology/documentation/bi_ee.html" target="_blank">http://www.oracle.com/technology/documentation/bi_ee.html</a></li>
<li>OBIEE 10.1.3.2 Infrastructure Setup and Configuration Guide:<br />
<a href="http://peoplesoftbits.wordpress.com">Pending...</a></li>
<li>OBIEE 101 by <span class="post-author vcard"><span class="fn">John Minkjan:<br />
</span></span><a href="http://obiee101.blogspot.com/" target="_blank">http://obiee101.blogspot.com/</a></li>
</ul>
<p><strong>MIDDLEWARE<br />
</strong></p>
<ul>
<li>Oracle Application Server (OAS) Release 3 Documentation on OTN:<br />
<a href="http://www.oracle.com/technology/documentation/appserver.html" target="_blank">http://www.oracle.com/technology/documentation/appserver.html</a></li>
<li>Mike Lehmann on Middleware: <a href="http://mike-lehmann.blogspot.com/" target="_blank"><br />
http://mike-lehmann.blogspot.com/</a></li>
</ul>
</div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Chrome: New Browser Coming Soon  ]]></title>
<link>http://kreuzer33.wordpress.com/?p=850</link>
<pubDate>Mon, 01 Sep 2008 22:28:39 +0000</pubDate>
<dc:creator>kreuzer33</dc:creator>
<guid>http://kreuzer33.de.wordpress.com/2008/09/02/google-chrome-new-browser-coming-soon/</guid>
<description><![CDATA[First, it was Google Android. Now, the news is about Google Chrome, Google&#8217;s long-rumored open]]></description>
<content:encoded><![CDATA[<p>First, it was Google Android. Now, the news is about Google Chrome, Google's long-rumored open-source browser project, which is about to arrive. A detailed, <a href="http://blogoscoped.com/google-chrome/">38-page comic</a> appeared on <a href="http://blogoscoped.com/archive/2008-09-01-n47.html">Google Blogoscoped</a> and the book is broken down into five main sections covering stability; speed; search and the user experience, security, and standards.</p>
<p>From Google:</p>
<p><em>So why are we launching Google Chrome? Because we believe we can add value for users and, at the same time, help drive innovation on the web. All of us at Google spend much of our time working inside a browser. We search, chat, email and collaborate in a browser. And in our spare time, we shop, bank, read news and keep in touch with friends — all using a browser. Because we spend so much time online, we began seriously thinking about what kind of browser could exist if we started from scratch and built on the best elements out there.</em></p>
[caption id="attachment_852" align="alignleft" width="300" caption="Credit: Google Blogoscoped"]<a href="http://kreuzer33.wordpress.com/files/2008/09/chrome.jpg"><img class="size-medium wp-image-852" src="http://kreuzer33.wordpress.com/files/2008/09/chrome.jpg?w=300" alt="Google Blogoscoped" width="300" height="154" /></a>[/caption]
<p><em>We realized that the web had evolved from mainly simple text pages to rich, interactive applications and that we needed to completely rethink the browser. What we really needed was not just a browser, but also a modern platform for web pages and applications, and that’s what we set out to build. On the surface, we designed a browser window that is streamlined and simple. To most people, it isn’t the browser that matters. It’s only a tool to run the important stuff — the pages, sites and applications that make up the web. Like the classic Google homepage, Google Chrome is clean and fast. It gets out of your way and gets you where you want to go.</em></p>
<p>From the <a href="http://ap.google.com/article/ALeqM5hHvkt5UkooUX1otx8ROBM0k-5VcQD92U5R6O0">Associated Press</a>:</p>
<p><em>Google will begin distributing its own browser in a move likely to heat up its rivalry with Microsoft.</em></p>
<p><em>The Internet search leader confirmed the long-rumored browser in a Monday posting on its Web site. Google said the free browser, called "Chrome," will be available for downloading Tuesday.</em></p>
<p><em>The browser represents Google Inc.'s latest challenge to Microsoft, whose Internet Explorer is used by nearly 75 percent of Web surfers. Google has been concerned that Microsoft will try to program Internet Explorer in a way that makes it more difficult for Google's search engine to attract traffic.</em></p>
[caption id="attachment_851" align="alignright" width="300" caption="Credit: Google Blogoscoped"]<a href="http://kreuzer33.wordpress.com/files/2008/09/chrome-intro_540x387.jpg"><img class="size-medium wp-image-851" src="http://kreuzer33.wordpress.com/files/2008/09/chrome-intro_540x387.jpg?w=300" alt="Google Blogoscoped" width="300" height="215" /></a>[/caption]
<p>From <a href="http://gigaom.com/2008/09/01/google-browser-is-real-another-win-for-webkit/">GigaOm</a>:</p>
<p><em>Google in a blog post on their website <a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html">has acknowledged the existence of Google Chrome</a>, a browser that the company will be releasing tomorrow. Kara Swisher has confirmed the existence of Google Chrome, a browser developed by the Mountain View, Calif.-based search company. The rumors of the browser were reported earlier on <a href="http://blogoscoped.com/archive/2008-09-01-n47.html">Google Blogoscoped</a>, which received a comic book that outlined the key features of the browser. </em></p>
<ul>
<li><em>It is based on Webkit and will include Google Gears.</em></li>
<li><em>It includes Javascript Virtual Machine called V8 that was developed by a team in Denmark.<br />
</em></li>
<li><em>It accelerates the Javascript performance and is multi-threaded.</em></li>
<li><em>It has tabs, auto-completion, and a dashboard type start page that can help you get going to the web services you need. Opera has such a dashboard.</em></li>
<li><em>It has a privacy mode that allows you to use the machine without logging anything on the local machine.<br />
</em></li>
<li><em>It might be similar to a feature called Incognito in the latest version of Microsoft IE.</em></li>
<li><em>Malware and phishing protection would be built into this browser.</em></li>
</ul>
<p>From <a href="http://kara.allthingsd.com/20080901/google-ignites-a-new-browser-war-with-microsoft-by-unveiling-one-of-its-own/">BoomTown</a>:</p>
<p><em>In its most frontal and aggressive attack on Microsoft yet, sources with knowledge of the project said Google is preparing to unveil a new browser–ready for download to users as early as tomorrow–to try to loosen Microsoft’s iron grip on the most important piece of software to navigate the Internet.</em></p>
<p><em>In addition, <a href="http://blogoscoped.com/archive/2008-09-01-n47.html">Google Blogoscoped has published a comic book</a> that Google is apparently using to <a href="http://digitaldaily.allthingsd.com/20080901/google-chrome-cliffsnotes-on-the-comic/">explain the technical aspects of its open-source browser</a>, which is called Chrome.</em></p>
[caption id="attachment_853" align="alignright" width="300" caption="Credit: Google Blogoscoped"]<a href="http://kreuzer33.wordpress.com/files/2008/09/chrome-2.jpg"><img class="size-medium wp-image-853" src="http://kreuzer33.wordpress.com/files/2008/09/chrome-2.jpg?w=300" alt="Google Blogoscoped" width="300" height="257" /></a>[/caption]
<p>From <a href="http://news.cnet.com/8301-17939_109-10029914-2.html?tag=mncol;txt">CNET</a>:</p>
<p><em>While the illustrations, created by cartoonist <a href="http://www.scottmccloud.com/">Scott McCloud</a>, were not announced by Google, they do contain the quotes and likenesses of 19 Google developers.</em></p>
<p><em> CNET News.com Editor in Chief Dan Farber's analysis of Google Chrome Monday was this: "It would be in line with other Google open-source projects, such as <a href="http://code.google.com/apis/opensocial/">OpenSocial</a> and <a href="http://code.google.com/apis/gears/?utm_campaign=en&#38;utm_source=en-ha-ww-google&#38;utm_medium=ha&#38;utm_term=google%20gears">Google Gears</a>. Creating a competitor to Firefox, as well as Internet Explorer and Opera, could spur more innovation." </em></p>
<p><em> "Open sourcing the code is a smart way to avoid the 'Google wants to take over the world' fear, but it seems that Google has ambitions to create a comprehensive Internet operating system, including a browser, applications, middleware and cloud infrastructure."</em></p>
<p>From <a href="http://www.informationweek.com/blog/main/archives/2008/09/breaking_google.html">InformationWeek</a>:</p>
<p><em><span>Yes, you read that correctly. Google is taking a major swipe at its competitors with the imminent launch of Chrome, a new Web browser based on Webkit. Thus marks the beginning of a new phase in the browser wars.</span></em></p>
<p><em>Kara Swischer at The Wall Street Journal got perhaps <a href="http://kara.allthingsd.com/20080901/google-ignites-a-new-browser-war-with-microsoft-by-unveiling-one-of-its-own/">one of the biggest scoops of the year</a>. She spoke to some people familiar with some of the projects Google is working on. Those sources say that <a href="http://kara.allthingsd.com/20080901/google-ignites-a-new-browser-war-with-microsoft-by-unveiling-one-of-its-own/">Google is set to unveil a brand new Web browser</a> that will be available to everyone as early as tomorrow (Tuesday).</em></p>
<p><em>Not only is Google going announcing a new browser, but it is making the announcement with a <a href="http://kara.allthingsd.com/20080901/heres-the-google-chrome-browser-comic-book-hey-microsoft-kaa-pow/">comic book</a>. That's hot.</em></p>
<p><em>Google has talked the browser talk for years. The last time I heard anything formal about it from the Google camp was nearly a year ago. Looks like Google is ready to walk the browser walk with Chrome.</em></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Connecting Everything for a Better World !]]></title>
<link>http://dragonuv.wordpress.com/?p=9</link>
<pubDate>Wed, 06 Aug 2008 14:26:08 +0000</pubDate>
<dc:creator>Dragonuv</dc:creator>
<guid>http://dragonuv.de.wordpress.com/2008/08/06/connecting-everything-for-a-better-world/</guid>
<description><![CDATA[How many times have you wondered that when we have the technology at our disposal, why are we so afr]]></description>
<content:encoded><![CDATA[<p>How many times have you wondered that when we have the technology at our disposal, why are we so afraid to use it. At least I ponder over it a considerable time. When we could make it to the moon almost 50 years back, why could we not improve the connectivity on our earth itself? Billions of dollars are being pumped into defence budgets, not that I am oppposed to it; it is required, but why not create and welcome innovation on other avenues as well.</p>
<p>A more disturbing thought than the above one is when we have the Data, the technology and the willingness to do good, but we are unable to do it because of the ubiquitous "<em>SYSTEM DOES NOT ALLOW IT" </em>message<em>.</em> The System that I am talking about here are the systems that connect data generated across different sub - systems across the world. A country does produce food that is more than it can consume, and is willing to give it to those who are perishing, but cannot do so as they do not have the information pertaining to it.</p>
<p>So we come at a point where it turns out that the key to success, or rather the key to prosperity is <em>INFORMATION.</em> Then what stops us from using the information that is just lying there?</p>
<p>The answer to this is the sheer size of the datum that makes it difficult if not impossible to use it. Also the fact that these bits and pieces of information are generated across disparate platforms does not help. Being sane minded, we cannot ask all the information vendors to use the same platforms and representation of data everywhere. So what do we do?</p>
<p>The Answer is effective integration of information - Effective Middleware. The point lies in the integration of all the vendors and linking them together. Making information that needs to available public so that companies who believe in corporate Social responsibility start diverting there attention on this area.</p>
<p>Imagine a world where Scientists predict well in advance about a natural disaster that might happen at place X. This data is made available to specific agencies who are ready with the homework for disaster recovery as well as goverment organizations. The summary of this entire data is then made public for use by NGOs who take over the rescue and recuperation work - The key lies in efficient and timely distribution of information.</p>
<p>If <em>Information</em> is too big a world to handle for us, lets start with a smaller entity and call it <em>Data. </em>And if you are reluctant with <em>Data </em>too ... How about something smaller than <em>Data - </em>How about 1 precise piece of <em>Information - A DATUM.</em></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What's up with MQ?]]></title>
<link>http://andypiper.wordpress.com/2008/08/06/whats-up-with-mq/</link>
<pubDate>Wed, 06 Aug 2008 09:14:44 +0000</pubDate>
<dc:creator>Andy Piper</dc:creator>
<guid>http://andypiper.wordpress.com/2008/08/06/whats-up-with-mq/</guid>
<description><![CDATA[I haven&#8217;t blogged about my core work for a while, so it&#8217;s probably about time. This is a]]></description>
<content:encoded><![CDATA[<p>I haven't blogged about my core work for a while, so it's probably about time. This is a bit of a round-up of some of the things I've observed happening around in the MQ space lately.</p>
<p><strong>WebSphere MQ stuff</strong></p>
<p>It's a year of anniversaries. Apart from <a href="http://jtlog.wordpress.com/2008/08/05/ibm-hursley-golden-anniversary/">IBM Hursley hitting 50</a> (reminding me that I've yet to post my Spitfire photos from the celebratory open day weekend), <a href="http://twitter.com/perrins/statuses/879091388">IBM Warwick is 30</a> and <a href="http://www-306.ibm.com/software/info/webspherebirthday/index.jsp">WebSphere is celebrating 10 years</a>. WebSphere MQ was formerly called MQSeries, of course, and has been around a few years longer than the "parent" brand, with <a href="http://www-306.ibm.com/software/integration/wmq/Celebrating15years.html">a 15th birthday this year</a>.</p>
<p>I'm sure the numbering is merely a coincidence, but there's a good article on IBM developerWorks entitled <a href="http://twitter.com/perrins/statuses/875952140">The top 15 WebSphere MQ best practices</a>.</p>
<p><a href="http://www-306.ibm.com/software/integration/wmq/v7/">WMQ reached version 7</a> this year. I had some very positive experiences with the alpha version of the product last year, although I've not yet had a play with the GA release. The new HTTP support is particularly interesting from a Web 2.0 perspective, and I keep meaning to build some demos around that that feature.</p>
<p>In related news, <a href="http://twitter.com/websphere_mq">WebSphere MQ now has a Twitter account</a>, so if you want to catch the latest news and announcements you might want to follow that.</p>
<p>I picked that last nugget up from my friend and US colleague <a href="http://t-rob.net/blog/">T.Rob Wyatt, who has been blogging for a while now</a>... T.Rob is an expert who is absolutely worth following if you work in the MQ space. He's also pointed out that there's a <a href="http://managedfiletransfer.blogspot.com/">new blog for IBM's new Managed File Transfer product</a> which was <a href="http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?infotype=an&#38;subtype=ca&#38;htmlfid=897/ENUS208-201">announced last month</a>.</p>
<p><strong>Other messaging-related notes</strong></p>
<p>For some non-IBM messaging middleware updates, just to note that <a href="http://www.zeromq.org/">0MQ</a> (ZeroMQ) sounds intriguing (via <a href="http://twitter.com/perrins/statuses/875952140">Matt Perrins, who notes that it is nothing to do with Project Zero</a>). I've done a lot of work with clients in the financial sector in particular, so I'll be interested to see how this develops. One of the nice things about my other "pet" product, <a href="http://www-306.ibm.com/software/integration/wbimessagebroker/">WebSphere Message Broker</a>, is that it sits in the sweet spot of connectivity between different transports and protocols, so I guess I'll be looking at how to make things talk to one another if 0MQ takes off.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Elastra Brings Virtual Mainframe to Cloud Computing]]></title>
<link>http://googlegazer.wordpress.com/?p=159</link>
<pubDate>Mon, 04 Aug 2008 15:55:54 +0000</pubDate>
<dc:creator>dsarna</dc:creator>
<guid>http://googlegazer.com/2008/08/04/elastra-brings-virtual-mainframe-to-cloud-computing/</guid>
<description><![CDATA[Elastra is a company with a neat kind of Cloud-based middleware. The GoogleGazer expects we&#8217;ll]]></description>
<content:encoded><![CDATA[<p><a title="Elastra Website" href="http://www.elastra.com/" target="_blank">Elastra </a>is a company with a neat kind of Cloud-based middleware. The GoogleGazer expects we'll see more of them, and more like them. Founded by serial entrepreneur Kirill Sheynkman, who successfully sold companies to IBM and to BEA.  Elastra is funded by <a title="Hummer Winblad Website" href="http://www.humwin.com/" target="_blank">Hummer Winblad Venture Partners</a>, an experienced VC who invests almost exclusively in software and middleware, and lately has been investing heavily in Software As A Service (SAAS) and in Cloud Computing. John Hummer sits on their board.</p>
<p>Elastra aims to help you easily overcome the challenges of scalability in the Cloud, by making it seem almost transparent to you. Their <a title="Download Elastra White Paper" href="http://www.elastra.com/wp-content/uploads/2008/03/EC_WhitePaper_FINAL.pdf" target="_blank">"White Paper"</a> is a good read, and discusses the problems of scaling as well as Elastra's solutions.The following two pictures, taken from Elastra's website summarize what they accomplish.</p>
<p><img src="/DOCUME~1/David/LOCALS~1/Temp/moz-screenshot.jpg" alt="" />[gallery]</p>
<p>Elastra provides:</p>
<p><img src="/DOCUME~1/David/LOCALS~1/Temp/moz-screenshot-1.jpg" alt="" />Industry-standard database and application infrastructure in the Cloud that is:</p>
<ul>
<li>Easily architected, configured and deployed in a complete, clustered, run-time environment</li>
<li>Elastically scaled with automated system monitoring and management</li>
<li>Priced pay-for-use</li>
<li>Delivered on-demand</li>
</ul>
<p>Right now, Elastra runs on Amazon's infrastructure,  <a title="Amazon Web Services" href="http://www.amazon.com/gp/browse.html?node=201590011" target="_blank">Amazon Elastic Compute Cloud, </a>which provides scalability within minutes on a pay-as-you-go basis, as well as its <a title="Amazon Simple Storage Service" href="http://www.amazon.com/gp/browse.html?node=16427261" target="_blank">Amazon Simple Storage Service.</a> It would not surprise the GoogleGazer to see Elastra support some of the other platforms that we mentioned in our <a title="Cloud Computing - Is It Old Mainframe Bess in a New Dress?" href="http://googlegazer.com/2008/08/03/cloud-computing-is-it-old-mainframe-bess-in-a-new-dress/" target="_blank">previous </a>post. Mean time, they have been garnering an impressive array of clients, and support PostgreSQL, the world's most advanced open source database, and <a title="MySQL Website" href="http://www.mysql.com/" target="_blank">MySQL </a>(<a title="Sun to Aquire MySQL" href="http://www.mysql.com/news-and-events/sun-to-acquire-mysql.html" target="_blank">now owned by Sun</a>). Besides Amazon, Elastra partners with <a title="EnterpriseDB Website" href="http://www.enterprisedb.com/" target="_blank">EnterpriseDB</a>, the world's leading provider of enterprise-class products and services based on PostgreSQL, <a href="http://www.enterprisedb.com/products/postgres_plus.do">Postgres Plus</a> and <a href="http://www.enterprisedb.com/products/postgres_plus_as.do">Postgres Plus Advanced Server.</a></p>
<p>Expect to hear more about them.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Automatizzare le operazioni con XMPP: Vertebra]]></title>
<link>http://itlab.wordpress.com/2008/08/04/automatizzare-le-operazioni-con-xmpp-vertebra/</link>
<pubDate>Mon, 04 Aug 2008 08:30:33 +0000</pubDate>
<dc:creator>Andrea Gumina</dc:creator>
<guid>http://itlab.de.wordpress.com/2008/08/04/automatizzare-le-operazioni-con-xmpp-vertebra/</guid>
<description><![CDATA[Vertebra è un progetto Open Source nato con l&#8217;obiettivo di automatizzare operazioni su larga ]]></description>
<content:encoded><![CDATA[<p align="justify"><a href="http://www.engineyard.com" target="_blank">Vertebra</a> è un progetto Open Source nato con l'obiettivo di automatizzare operazioni su larga scala.</p>
<p align="justify">Dalla solita architettura dei prodotti di <em>operation</em> (server centrale e agenti per ogni oggetto da gestire), lo contraddistingue l'essere fondato su <a href="http://www.xmpp.org/" target="_blank">XMPP (Extensible Messaging and Presence Protocol)</a> - specifica <a href="http://www.ietf.org/" target="_blank">IETF (Internet Engineering Task Force)</a> per lo <em>streaming</em> di strutture XML.</p>
<p align="justify">Vertebra usa <a href="http://www.ejabberd.im/" target="_blank">Ejabberd</a> (server XMPP/<a href="http://www.jabber.org/" target="_blank">Jabber</a> sviluppato con <a href="http://www.erlang.org/about.html" target="_blank">Erlang</a>) come server centrale: prestazioni elevate sono garantite anche con decine di migliaia di connessioni contemporanee.</p>
<p align="justify">Un'unica istruzione è sufficiente ad individuare tutti gli agenti coinvolti e ad avviare l'esecuzione, in parallelo. Per coordinare le operazioni, inoltre, è previsto un <em>workflow</em>.</p>
<p align="justify">Trovo questo progetto interessante anche per altri usi: una dorsale fondata su XMPP collega punti di controllo in grado di eseguire operazioni su "oggetti" che il concetto di risorsa astrae.</p>
<p align="center">[slideshare id=535789&#38;doc=vertebra-1217451913021235-8&#38;w=425]</p>
<p style="text-align:center;">----&#62;&#60;---- </p>
<p align="justify"><span style="font-size:0.9em;">Altro materiale sull'argomento:</span></p>
<ul>
<li><span style="font-size:0.9em;"><a href="http://www.slideshare.net/ezmobius/vertebra">http://www.slideshare.net/ezmobius/vertebra</a></span>
<li><span style="font-size:0.9em;"><a href="http://www.slideshare.net/jvantuyl/vertebra-bringing-the-cloud-down-to-earth">http://www.slideshare.net/jvantuyl/vertebra-bringing-the-cloud-down-to-earth</a></span> </li>
</ul>
<p style="text-align:center;">----&#62;&#60;---- </p>
<p style="text-align:center;"><span style="font-size:0.9em;">Hai trovato questo post interessante? <a href="http://feeds.feedburner.com/itlab" target="_blank">Segui il feed</a> e <a href="http://itlab.wordpress.com/">commenta!</a></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Farewell to Web Services Gateway and XPI]]></title>
<link>http://andrewscg.wordpress.com/?p=263</link>
<pubDate>Fri, 01 Aug 2008 04:03:19 +0000</pubDate>
<dc:creator>Lee Kroon</dc:creator>
<guid>http://andrewscg.de.wordpress.com/2008/07/31/farewell-to-web-services-gateway-and-xpi/</guid>
<description><![CDATA[Last week, Oracle announced plans to retire Web Services Gateway (WSG) and Extended Process Integrat]]></description>
<content:encoded><![CDATA[<p><img class="size-medium wp-image-264 alignright" src="http://andrewscg.wordpress.com/files/2008/07/goodbye.jpg?w=252" alt="" width="252" height="300" />Last week, Oracle <a href="http://www.peoplesoft.com/corp/en/support/roadmap/wxpi_index.jsp" target="_blank">announced plans</a> to retire Web Services Gateway (WSG) and Extended Process Integration (XPI) from JD Edwards EnterpriseOne. While the company has made noises about putting these offerings out to pasture for some time, the announcement puts definite dates on the event.</p>
<p>Beginning September 1, 2008, Oracle will no longer offer WSG with EnterpriseOne Tools. However, existing users will still be able to access WSG via the <a href="http://www.peoplesoft.com/corp/en/update_fix/kgwrapper.jsp?app=uc" target="_blank">Update Center</a>. In addition, Oracle will provide Premier Support for the offering through October 1, 2010. This means that WSG will continue to receive updates, fixes, and certifications for new EnterpriseOne releases. After October 1, 2010, WSG will move to Sustaining Support, which provides technical assistance and pre-existing fixes for known issues.</p>
<p><!--more-->As for XPI, many of you may know that PeopleSoft ceased offering these interfaces with EnterpriseOne Tools shortly before Oracle acquired the company. Once Oracle took over, it put the final XPI release — which shipped with EnterpriseOne Tools 8.94 — on Premier Support. In last week’s announcement, Oracle extended Premier Support for XPI 8.94 to October 1, 2010. After that date, XPI move to Sustaining Support along with WSG.</p>
<p><strong>Hello EnterpriseOne Business Services!</strong></p>
<p>Oracle has decided to sunset these technologies for a simple reason. The vendor’s strategic platform for application integration going forward is neither WSG nor XPI. It is the EnterpriseOne Business Services gateway that the software giant delivered with EnterpriseOne Tools 8.97. Unlike WSG and XPI, which include proprietary integration methods and hard-wired connections, Business Services complies with industry standards and the loosely coupled integration paradigm of today’s service-oriented architectures. Business Services is also a key component of Oracle’s <a href="http://www.oracle.com/applications/oracle-application-integration-architecture.html" target="_blank">Application Integration Architecture</a> (AIA). As result, Business Services can publish, consume, and administer AIA-based web services as native objects, something that WSG and XPI cannot do.</p>
<p>Now that the phase-out of WSG and XPI is official, EnterpriseOne customers who are using these technologies should make concrete plans to migrate off them by 2011 at the latest. Any migration will involve the deployment of EnterpriseOne Tools 8.97 or higher. In addition, customers running OneWorld Xe or EnterpriseOne 8.0 will need to upgrade to current EnterpriseOne releases. Just as importantly, developers should retrain themselves on Oracle JDeveloper, as this is Oracle’s strategic platform for working with Business Services objects.</p>
<p>Fortunately, Oracle has already provided some tools for the migration process. The Update Center offers web services for downloading that cover most of the functionality found in WSG. Information about Business Services can be found on the <a href="http://www.peoplesoft.com/corp/en/iou/implement/soa_enablement.jsp" target="_blank">EnterpriseOne SOA Enablement site</a> along with a <a href="http://www.peoplesoft.com/corp/en/doc_archive/red_paper/rp_e1_bus_services.jsp" target="_blank">Red Paper</a> about migrating from WSG to Business Services.</p>
<p>Of course, this web site and the team at Andrews Consulting Group stand ready to help you with your migration efforts. To learn more about Business Services and AIA, read the articles we have written on both subjects that are listed below. If you want to discuss your migration options, <a href="mailto:info@andrewscg.com" target="_blank">send an email</a> to our JD Edwards team or call us at (800) 775-4261. Feel free as well to leave your thoughts about Oracle’s action in the comment box below.</p>
<p><strong>Related Articles</strong></p>
<p><a href="http://andrewscg.wordpress.com/2008/01/09/the-transformation-of-jd-edwards-applications-ii-part-one/" target="_self">The Transformation of JD Edwards Applications II: Part One</a><br />
<a href="http://andrewscg.wordpress.com/2008/01/29/the-transformation-of-jd-edwards-applications-ii-part-two/" target="_self">The Transformation of JD Edwards Applications II: Part Two</a><br />
<a href="http://andrewscg.wordpress.com/2008/02/28/the-transformation-of-jd-edwards-applications-ii-part-three/" target="_self">The Transformation of JD Edwards Applications II: Part Three</a><br />
<a href="http://andrewscg.wordpress.com/2008/01/16/oracle-delivers-cool-tools-for-jd-edwards-enterpriseone/" target="_self">Oracle Delivers Cool Tools for JD Edwards EnterpriseOne</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Product - Denodo Platform]]></title>
<link>http://2enterprisemashup.wordpress.com/?p=198</link>
<pubDate>Wed, 30 Jul 2008 08:22:15 +0000</pubDate>
<dc:creator>Niek</dc:creator>
<guid>http://2enterprisemashup.de.wordpress.com/2008/07/30/product-denodo-platform/</guid>
<description><![CDATA[
Denodo Technologies levert het &#8220;Denodo Platform&#8221; waarmee Enterprise Data Mashups kunnen]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://www.denodo.com/english/imgs/grafico_extended_eii.jpg"><img class="aligncenter" src="http://www.denodo.com/english/imgs/grafico_extended_eii.jpg" alt="" width="226" height="120" /></a></p>
<p>Denodo Technologies levert het "Denodo Platform" waarmee Enterprise Data Mashups kunnen worden gebouwd. Dit is een middleware oplossing waarmee een groot aantal verschillende databronnen kunnen worden gekoppeld en via één universele interface m.b.v. sql benaderd worden. Het bestaat uit een module voor dataintegratie, een module voor extractie van webdata en een module waarmee data kan worden geïndexeerd.</p>
<p>De <a href="http://www.denodo.com/english/products/vdp/index.php" target="_blank">Denodo Virtual Dataport</a> server vormt het hart van  het platform.  Hiermee kan data uit een groot aantal bronnen worden ontsloten, samengevoegd, genormailseerd en op een universele wijze aan businessapplicaties worden aangeboden via verschillende interfaces.</p>
<p>De <a href="http://www.denodo.com/english/products/itp/index.php" target="_self">Denodo ItPilot</a> module is een geavanceerde screenscraper waarmee op geautomatiseerde wijze data van websites kan worden verzameld en gestructureerd.</p>
<p>De <a href="http://www.denodo.com/english/products/arn/index.php" target="_blank">Denodo Aracne</a> module is een crawler waarmee websites en andere ongestructureerde data zoals documenten kunnen worden geindexeerd.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Serious Security Problem…and a Timely Blog]]></title>
<link>http://andrewscg.wordpress.com/?p=254</link>
<pubDate>Wed, 30 Jul 2008 01:06:27 +0000</pubDate>
<dc:creator>Lee Kroon</dc:creator>
<guid>http://andrewscg.de.wordpress.com/2008/07/29/a-serious-security-problem%e2%80%a6and-a-timely-blog/</guid>
<description><![CDATA[Yesterday, Oracle issued an urgent Security Alert about a vulnerability in Oracle’s WebLogic appli]]></description>
<content:encoded><![CDATA[<p>Yesterday, Oracle issued an urgent <a href="http://www.oracle.com/technology/deploy/security/alerts/alert_cve2008-3257.html" target="_blank">Security Alert</a> about a vulnerability in Oracle’s WebLogic application server (formerly BEA WebLogic). The company also provided a <a href="https://support.bea.com/application_content/product_portlets/securityadvisories/2793.html" target="_blank">workaround</a> for the vulnerability that WebLogic customers can implement until developers create a patch for the flaw. This is the first time in more than three years that Oracle has issued a security alert outside of its regularly scheduled <a href="http://www.oracle.com/technology/deploy/security/alerts.htm" target="_blank">Critical Patch Updates</a>, making this a "must fix" for WebLogic users.</p>
<p>The story behind the unusual alert was broken yesterday by Eric Maurice on the <a href="http://blogs.oracle.com/security/" target="_blank">Oracle Global Product Security Blog</a>. For those of you who do not know him, Maurice anchors this blog and has made it one of the best sources of information about securing Oracle products on the web. As Maurice explained in yesterday’s post, both the vulnerability and the code to exploit it was posted on public forums before it was sent to Oracle (a definite "no no" that separates ethical hackers from the black hats of the business). To make matters worse, the exploit code hit the forums shortly after Oracle released its last Critical Patch Update on July 15. This is forcing Oracle to issue an out of cycle security update.</p>
<p>If you do not subscribe to the feed for the Oracle Global Product Security Blog, I would encourage you to do so. Its timely warnings could save you from a nasty breach of your JD Edwards applications.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Challenges for Mobilizing Enterprises]]></title>
<link>http://bizanywhere.wordpress.com/?p=44</link>
<pubDate>Fri, 18 Jul 2008 17:43:25 +0000</pubDate>
<dc:creator>dvdand</dc:creator>
<guid>http://bizanywhere.de.wordpress.com/2008/07/18/challenges-for-mobilizing-enterprises/</guid>
<description><![CDATA[Enterprises thinking of mobilizing some of their staff face many challenges. In the current economic]]></description>
<content:encoded><![CDATA[<p>Enterprises thinking of mobilizing some of their staff <a href="http://www.cioinsight.com/c/a/Technology/Top-Challenges-of-Enterprise-Mobility/">face many challenges</a>. In the current economic climate, justifying the investment can be a tough sell. In addition to the proliferation of new devices and training issues for users, there are some key issues that need to be addressed.</p>
<p>- <strong>Mobile use cases</strong>: In case of some solutions like Field Sales and Service Management, Logistics, Delivery Management, the use cases are very well defined and hence easy to implement. as such, these are the first ones to get mobilized and several companies have been doing that for years. However, there are several others where the mobile use cases have to be really thought through and vetted.</p>
<p>- <strong>Integration with existing systems</strong>: Either mobilizing existing data or capturing data at customer location, enterprises have to integrate and extend the existing systems to support mobility. This typically involves custom development. A number of vendors have developed connectors to popular systems like SAP, Oracle, etc., however, there is some degree of customization required to support the enterprise specific use cases. </p>
<p>- <strong>Security</strong>: Another big issue with mobility is the security headache of so many disparate devices trying to access the enterprise data. A lot of effort are ongoing into addressing this with integrated device management solutions. Sybase did <a href="http://www.sybase.com/detail?id=1057260" target="_blank">announce</a>the first integrated firewall and anti-virus management solution mobile devices under its Afaria brand of device management solution.</p>
<p>- <strong>Total Cost of Ownership (TCO)</strong>: The aforementioned integration and security solutions come at a price which increase the TCO for an enterprise mobility solution. In addition, most of the mobility middleware solutions themselves require a lot of consulting expertise to implement successfully without customization.</p>
<p>- <strong>Time to market</strong>: Considering all the integration, customization and security resolution, the time to market will be extended. Certainly the prebuilt connectors help speeding the development up, but still the average time to market to get these solutions out are upwards of six months.</p>
<p>With all these challenges, enterprises certainly need to plan their mobility strategy carefully and select the right vendors for their needs.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tips, Traps, and Tangents — July 2008]]></title>
<link>http://andrewscg.wordpress.com/?p=245</link>
<pubDate>Thu, 10 Jul 2008 01:49:17 +0000</pubDate>
<dc:creator>Lee Kroon</dc:creator>
<guid>http://andrewscg.de.wordpress.com/2008/07/09/tips-traps-and-tangents-%e2%80%94-july-2008/</guid>
<description><![CDATA[While the summer doldrums may be upon us, there has been no reduction in the flow of JD Edwards news]]></description>
<content:encoded><![CDATA[<p>While the summer doldrums may be upon us, there has been no reduction in the flow of JD Edwards news coming across my desk. In this article, I’ll discuss important changes on the middleware and tools fronts, promising developments for JD Edwards World, and a way that almost any company can get a fat check from Oracle.</p>
<p><strong>Next Stop…WebLogic?</strong></p>
<p>Last week, I <a href="http://andrewscg.wordpress.com/2008/07/03/oracle-unveils-its-bea-product-roadmap/" target="_self">posted a review</a> of Oracle’s plans to integrate BEA products into its Fusion Middleware portfolio. As the review stated, Oracle’s middleware roadmap raises many questions about the role that BEA products will play in the Oracle Technology Foundation for EnterpriseOne. While we are still working to get definitive answers to those questions, sources inside Oracle have confirmed that there are no plans to force EnterpriseOne customers to use BEA WebLogic Server. If you are running Oracle Application Server or IBM WebSphere Application Server, you will continue to receive support.</p>
<p><!--more-->That said, sources close to the JD Edwards team are saying that the team intends to follow Oracle’s lead when it comes to adopting those BEA products that have been designated as "strategic". As such, EnterpriseOne users should expect that selected BEA products will become part of the Oracle Technology Foundation. Rest assured that we will be on the lookout for further developments on this front and will post new articles as information becomes available.</p>
<p><strong>JD Edwards World Picks Up the Pace</strong></p>
<p>Now that Oracle is past its quarterly "quiet period" for discussing financial results, we’re learning that the company’s fourth fiscal quarter and fiscal year 2008 were quite good for JD Edwards World. In a recent briefing for its business partners, JD Edwards executives revealed several significant wins for World in new accounts. They also unveiled a new "Green sales initiative" that will promote both World and EnterpriseOne during fiscal year 2009. At the same time, JD Edwards World General Manager John Schiff wrote an <a href="http://andrewscg.wordpress.com/files/2008/07/oracle-schiff-letter-to-world-users-06-2008.pdf" target="_self">open letter to the World community</a>. In the letter, Schiff states that the World community has never been as vibrant and active as in recent years.</p>
<p>It is gratifying to see confirming evidence of the growth trend for World that we discussed <a href="http://andrewscg.wordpress.com/2008/05/21/oracle-strengthens-commitment-to-jd-edwards-world/" target="_self">back in May</a>. It will be interesting to see how the Green sales initiative plays out in the coming months.</p>
<p><strong>A Better WebSphere?</strong></p>
<p>If you are running your EnterpriseOne web tier on an IBM System i using WebSphere, check out the latest paper from the IBM Oracle International Competency Center that we just posted to our <a href="http://andrewscg.wordpress.com/white-papers/white-papers-from-other-companies/" target="_self">white papers section</a>. The paper compares the performance of the latest WebSphere Application Server 6.1 release to that of WebSphere 6.0 when running EnterpriseOne 8.12. Unlike WAS 6.0, which runs on a 64-bit JVM, WAS 6.1 uses a streamlined 32-bit JVM. This is one reason why WAS 6.1 delivered faster EnterpriseOne response times than WAS 6.0 while using less memory and fewer CPU cycles.</p>
<p><strong>New EnterpriseOne Tools Update on Tap</strong></p>
<p>Last week, Oracle announced the availability of EnterpriseOne Tools 8.96 Update 4. The update, which is the final maintenance release for Tools 8.96 contains all of the fixes in maintenance packs 8.96.0.1 through 8.96.3.3 along with new fixes of its own. With the release of Update 4, EnterpriseOne Tools 8.96 now moves into "sustaining support" mode in which no further updates are released. To learn more, log into the <a href="http://www.peoplesoft.com/corp/en/update_fix/kgwrapper.jsp?app=uc" target="_blank">EnterpriseOne Update Center</a> on the Oracle Customer Connection web site.</p>
<p><strong>Oracle UCM Goes Midsize</strong></p>
<p>If you ever took a look at Oracle Universal Content Management (formerly known as Stellent UCM) but flinched at the high price, I have news for you. Last month, Oracle announced UCM Standard Edition, a version of the product that strips out some of the advanced features in exchange for a considerably lower price. While Oracle UCM carries a list price of $115,000 per processor, UCM SE weighs in at $57,500, a 50 percent reduction. Considering Oracle’s reputation for deep discounting, street prices for the product will be considerably lower. One nice feature of UCM SE is that it can be easily upgraded to the full version without uninstalls or reinstalls. To learn more, check out Oracle’s latest <a href="http://www.oracle.com/newsletters/information-indepth/midsize/jul-08/content-mgmt.html" target="_blank">Midsize Business Newsletter</a>.</p>
<p><strong>Don’t Thank Me…Just Send Money!</strong></p>
<p>The next time that you get someone from another company interested in Oracle products, your good deed could earn your company some cold, hard cash. Oracle has unveiled an initiative under which companies can receive 5 percent of net software license deals — up to $50,000 — when they refer other firms to Oracle. To learn more about the program and to sign up, visit the <a href="http://www.oracle.com/referral" target="_blank">Referral Initiative portal</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[DELL Walk-in Interview at Mumbai and Pune On 12th/13th July]]></title>
<link>http://thewalkin.wordpress.com/?p=234</link>
<pubDate>Wed, 09 Jul 2008 06:23:45 +0000</pubDate>
<dc:creator>govjobs</dc:creator>
<guid>http://thewalkin.de.wordpress.com/2008/07/09/dell-walkin-mumbai-pune-12th-13th-july/</guid>
<description><![CDATA[Walk-in Interviews at MUMBAI:
Saturday, 12th July, from 9.30 am-5 pm at HOTEL BAWA INTERNATIONAL
Neh]]></description>
<content:encoded><![CDATA[<p><strong>Walk-in Interviews at MUMBAI:</strong><br />
Saturday, 12th July, from 9.30 am-5 pm at HOTEL BAWA INTERNATIONAL<br />
Nehru Road Extn, Near Domestic Airport,<br />
Vile Parle (East), Mumbai-400099</p>
<p><strong>Walk-in Interviews at PUNE:</strong><br />
Sunday, 13th July, from 9.30 am - 5 pm at<br />
DELL INTERNATIONAL SERVICES<br />
2nd Floor, Tower- C, Panchshil Tech Park,<br />
Survey # 191 A/2A, Airport Road,<br />
Next to Donbosco High School,<br />
Yerwada, Pune - 411006</p>
<p><strong>Software Testing</strong> (Min 4 yrs relevant experience)</p>
<ul>
<li>Automated test scripts using QTP or Silk test (Code: TQ1)</li>
<li> Testing in Siebel Call Center application, (Code:TS2)</li>
<li> Oracle Apps Order Management  (Code:TO3)</li>
<li> Middleware Integration testing such as ESB. (Code:TM4)</li>
</ul>
<p><strong>Software Development (Min 4 yrs relevant experience)</strong></p>
<ul>
<li>Microsoft .Net (with experience in Winforms/ Webforms/ ASP COM+) (Code:DN1)</li>
<li> Winchill with experience in Java, JSP, eMatrix, Agile PLM (Code:DW2)</li>
<li> Aqualogic with domain experience in Order Management / Supply Chain  (Code:DA3)</li>
<li> Datawarehouse with experience in Informatica / Business objects/ SAS/ MSAS /</li>
<li> Teradata (Code:DD4)</li>
<li> Oracle Apps (OM, AR, AP, GL, OIC) (Code:DO5)</li>
<li> Siebel EIM Developers (Code:DS6)</li>
<li> Vistaar Developers / Pricing analytic tools like Zilliant/ Rapt/ Venavo (Code:DV8)</li>
<li> Java with Documentum and Endeca search engine exposure (Code:DJ9)</li>
<li> Web analytics developer with knowledge on Omniture/ Visual Sciences/ Click Stream</li>
<li> (Code:DW10)</li>
</ul>
<p><strong>Software Architect (Min 8 yrs of relevant experience)</strong></p>
<ul>
<li>Database Architect with knowledge of rules of data normalization , data modelling, database definition,</li>
<li> design, and configuration  (Code:AD1)</li>
<li> ETL Architect  (Code:AD2)</li>
<li> .Net Architect  (Code:AN3)</li>
<li> Siebel Architects with experience in Siebel Call Center, Siebel Analytics, Siebel Contracts, Siebel EIM &#38; Siebel</li>
<li> EAI  (Code:AS4)</li>
</ul>
<p><strong>Database Administrators (Min 5 yrs of relevant experience)</strong></p>
<ul>
<li>Oracle DBA with experience in oracle 9i/10g as DBA, preferably on linux / unix platform. Knowledge in RAC,</li>
<li> Dataguard and Oracle 10g preferred  (Code:DB1)</li>
<li> SQL DBA with extensive hands on experience in SQL Server 2000 and SQLServer  (Code:DB2)</li>
<li> Teradata DBA with knowledge in back up restore technology  (Code:DB3)</li>
<li> Oracle Apps DBA  (Code:DB4)</li>
</ul>
<p><!--more--><br />
In addition, we are also looking for<strong> Delivery Manager / Program Manager / Business Analysts</strong> with 8+ yrs of exp.</p>
<p><a title="Dell Careers" href="http://dell-itcareers.co.in/jds.php" target="_blank"><strong>You Can Apply For the Above Posts Here</strong></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
