Archive for: ‘März 2014’

EntwicklerCamp 2014: XPages und Java

18. März 2014 Posted by Bernd Hort

EntwicklerCamp

Der erste meiner zwei Vorträge auf dem diesjährigen EntwicklerCamp lief sehr gut.

Im Vortrag „XPages und Java“ ging es primär darum, wie eigene Klassen für XPages in Java geschrieben werden können, was Managed Beans sind und welche Elemente aus dem JSF-Umfeld sinnvoll für eigene Anwendungen eingesetzt werden können. Den Abschluss bildete eine Betrachtung des Model-View-Controller-Patterns und wie wir es in unserem assono XPages-Framework einsetzen.

Die Beispielanwendung ist die gleiche wie letztes Jahr.


Apache xml-rpc download links are broken

18. März 2014 Posted by Ralf Petter

I needed the Apache xml-rpc download for our CTI project, but all download links on http://ws.apache.org/xmlrpc/download.html are broken. I had really a hard time to figure out how to find the download, so if someone else needs xmlrpc you can find it on http://archive.apache.org/dist/ws/xmlrpc/. Maybe someone can fix the broken links on the Apache homepage.

6 Kriterien für sichere Clouds

18. März 2014 Posted by IBM Experts

Laut ersten Ergebnissen des "Cloud-Monitor 2014", den KPMG in Zusammenarbeit mit Bitkom Research durchgeführt hat, nennen Unternehmen die Sorge vor unberechtigten Zugriffen auf ihre Daten, die Gefahr...

Big Data erobert den Mittelstand

18. März 2014 Posted by IBM Experts

Riesige Datenmengen fallen nicht nur in Großkonzernen an – auch Mittelständler produzieren enorme Berge an Informationen, die nur darauf warten, geborgen zu werden. Das ergab die Studie "Big Data im...

Noteboks sind uncool

18. März 2014 Posted by IBM Experts

Sie haben karrieretechnisch noch etwas vor? Dann sollten Sie sich nicht mit einem Notebook erwischen lassen. Die Statussymbole der Yuppie-Ära haben ausgedient – heutzutage muss es ein Tablet sein....

AZ Direct weiß, was Kunden wünschen

18. März 2014 Posted by IBM Press Releases - All Topics - Germany

Kunden wollen individuell angesprochen werden und schätzen es, wenn Werbebriefe oder Newsletter persönlich an sie adressiert sind. So lautet eines der zentralen Ergebnisse aus der Studie Customer-Journey-Typologie 2012, die die AZ Direct GmbH in Kooperation mit dem IFH Köln durchgeführt hat.

EntwicklerCamp 2014: Fehlerbehandlung in Notes

18. März 2014 Posted by Thomas Bahn

EntwicklerCamp
Wow, das ging schnell, der erste Tag ist schon vorbei, und auch mein erster Vortrag. Was mir dabei besonders gut gefallen hat, waren die vielen Fragen und die interessante Diskussion während des Vortrags. Sie halfen, das doch eher theoretische Thema mit Leben zu füllen.

Wie versprochen, die Präsentation zu meinem Vortrag Fehlerbehandlung in Notes:

SharePoint auf dem Abstellgleis?

17. März 2014 Posted by Jonas Steffl

SharePoint auf dem Abstellgleis?

http://hirschtec.eu/index.php/microsoft-sharepoint-ein-auslaufmodell/

Was bedeutet diese Vermutung für IBM Connections? Wird das die Möglichkeit für IBM Connections den Platz von SharePoint einzunehmen?

Oder ist das ein Fingerzeig, dass diese Collaboration-Lösungen abgelöst werden?

1. Was spricht gegen Blackberry?

17. März 2014 Posted by IBM Experts

Sehr geehrter Besucher,  zu 1)  Zunächst spricht vieles für BlackBerry Produkte: erprobte Technologien, hohe Sicherheitsstandards und mit BES 10 ein Mobile Device Management mit dem neben...

[EN] Official IBM Statement on Data Security and Privacy

17. März 2014 Posted by StefanP.

As an en IBM employee I do find this statement from Robert C. Weber, IBM Senior Vice President, Legal and Regulatory Affairs, and General Counsel,  extremely encouraging. Thank you for the clear Message:

Given the global discussion about data security and privacy, we wanted to communicate our view on these issues.

At the outset, we think it is important for IBM to clearly state some simple facts:

  • IBM has not provided client data to the National Security Agency NSA or any other government agency under the program known as PRISM.
  • IBM has not provided client data to the NSA or any other government agency under any surveillance program involving the bulk collection of content or metadata.
  • IBM has not provided client data stored outside the United States to the U.S. government under a national security order, such as a FISA order or a National Security Letter.
  • IBM does not put “backdoors” in its products for the NSA or any other government agency, nor does IBM provide software source code or encryption keys to the NSA or any other government agency for the purpose of accessing client data.
  • IBM has and will continue to comply with the local laws, including data privacy laws, in all countries in which it operates.

Our Commitment to Clients and Recommendations to Governments

We understand that clients are concerned about the security and privacy of their data. Therefore, we want to offer the following assurances:

  • In general, if a government wants access to data held by IBM on behalf of an enterprise client, we would expect that government to deal directly with that client. …
  • If the U.S. government instead were to serve a national security order on IBM to obtain data stored outside the United States from an enterprise client, IBM will take appropriate steps to challenge the order through judicial action or other means. …

Conclusion

Technology often challenges us as a society. This is one instance in which both business and government must respond. Data is the next great natural resource, with the potential to improve lives and transform institutions for the better. However, establishing and maintaining the public’s trust in new technologies is essential.

via A Letter to Our Clients About Government Access to Data A Smarter Planet Blog.


Filed under: English Tagged: Data Privacy, IBM, NSA, Prism

XPages: A Bootstrap Skin for CKEditor

17. März 2014 Posted by Sven Hasselbach

I have found a very nice skin for CKEditor, the “BootstrapCK-Skin”. It gives a bootstrap look and feel to the Editor:

The dialogs are also skinned:

You can find and download the skin here http://kunstmaan.github.io/BootstrapCK-Skin/

To use the skin in one of your applications, you have to import the unzipped files into your NSF…

… and add your “own” declaration of a xspCKEditor instance:

<xp:scriptBlock id="scriptBlockCKEditor">
   <xp:this.value>
      <![CDATA[
         require( ['dojo/_base/declare', 'ibm/xsp/widget/layout/xspCKEditor'], function( declare, xspCKEditor ){
            return declare( 'ch.hasselba.xpages.CKEDITOR', xspCKEditor, {
               constructor: function ckew_ctor(/*Object*/options){
                  CKEDITOR.timestamp = '';
               }
            });    
         });
      ]]>
   </xp:this.value>
</xp:scriptBlock>

This is required to remove an URL parameter, which is added automatically and will break the references. Then you have to overwrite the dojoType of your RichText control and add a dojoAttribute for the Skin. The path has to be appended after the name of the skin.

<xp:inputRichText
   id="inputRichTextBody"
   value="#{documentInfo.Body}"
   dojoType="ch.hasselba.xpages.CKEDITOR">
   <xp:this.dojoAttributes>
      <xp:dojoAttribute
         name="skin"
         value="BootstrapCK-Skin,/path/to/your/db.nsf/BootstrapCK-Skin/">
      </xp:dojoAttribute>
   </xp:this.dojoAttributes>
</xp:inputRichText>

IBM SmartCloud for Social Business – Überblick Angebote

17. März 2014 Posted by Stefan Krueger

Bild

Reorganize physical file member demystified

17. März 2014 Posted by Ralf Petter

The RGZPFM command of the "IBM i" operating system is a very powerful command to reorganize DB2 tables, but there are some myths and misunderstandings regarding the parameters of the command. So IBM has posted a new RedPaper from Tracy Schramm with a detailed explanation how Reorganize Physical File Member works.


golem.de “Bundesjustizminister setzt Google vor die Tür”

17. März 2014 Posted by Stefan Krueger

"Google ist von Bundesjustizminister Heiko Maas von der Vorbereitung des IT-Gipfels ausgeschlossen worden. Das Unternehmen habe sich nicht durch geeignete Vorschläge hervorgetan, die persönlichen Daten besser zu schützen."

mehr

Das sind die Big Data Analytics-Angebote in Deutschland

17. März 2014 Posted by IBM Experts

Big Data Analytics war eines der beherrsch enden Themen der CeBIT – der Analyst Holm Landrock  von der Experton Group hat sich aus diesem Anlass die bestehenden Lösungen am Markt angesehen. Die...