Intrexx Portal Manager Changelog

What's new in Intrexx Portal Manager 8.0.0.16

Mar 14, 2018
  • API:
  • The deprecated mode in DbQuery has been removed. This was introduced in May 2009 for Intrexx 5 in order to ensure compatibility with previous versions.
  • def l_rs = l_stmt.executeQuery()
  • while (l_rs.next()) l_rs.getStringValue(1)
  • .value(int) -> getStringValue(int), getIntValue(int), ....
  • .prepareDeprecated(....) -> prepare(....)
  • The method prepareDeprecated can theoretically be replaced with the prepare method. This can, however, behave slightly differently under certain circumstances, with the return of Boolean-values.
  • UNITED PLANET - INTREXX 8 - TECHNICAL DOCUMENTATION - UPDATE TO INTREXX 8 3
  • The old deprecated methods from IFileValueHolder have been removed and must be replaced with the following:
  • getContentType replace with getFirstFile().getContentType()
  • getPath() replace with getFirstFile().getPath()
  • getFileName() replace with getFirstFile().getFileName()
  • SQL Server settings:
  • To avoid any sporadic deadlocks, any existing portal databases should be switched to Microsoft SQL server and to the snapshot-based read-committed mode, unless this is already done by the update itself.
  • More information on this topic can be found in our knowledgebase at help.unitedplanet.com in post no. 1967 – MSSQL database adjustment SET READ_COMMITTED_SNAPSHOT ON;
  • IMAP- event sources:
  • Until now, when configuring IMAP event sources for STARTTLS, it was necessary to set the property mail.imap.starttls.enable=true. In Intrexx 8 the property will automatically be set from the server side to true, unless it has already been set manually (true or false).
  • In addition, the following property:
  • mail.imap.starttls.required=true
  • will also be automatically set from the server side if it has not already been set manually.
  • The reason for the above settings is that in rare cases, the choice of STARTTLS can lead to problems when updating to Intrexx 8. These settings will prevent a fallback to a non-secure connection.
  • If you already manually changed the settings of mail.imap.starttls.enable and mail.imap.starttls.required, the settings will not be overwritten from the server side. Manually changes can be made at any time before or after updating.
  • General (WEB): Access via JS | VTL to form-information: From Intrexx 8 onwards, the linking of an input field to a form will be created through the HTML(5) attribute form. For Microsoft Internet Explorer the corresponding polyfills are provided.
  • An Intrexx-generic input element, that has been added to a form, will not automatically be included when posting and forwarding the page. The following describes how the form of an element can be determined.
  • Javascript:
  • getFormObjectByElement(HTML-Element) This code will give you the UP object of the enclosed form:
  • var inp = document.createElement("input"); inp.setAttribute("form", getFormObjectByElement(HTML-Element).id)
  • UNITED PLANET - INTREXX 8 - TECHNICAL DOCUMENTATION - UPDATE TO INTREXX 8
  • Velocity:
  • This code will give you the ID of the enclosed form:
  • <input name="test" value="test" form="#writeCurrentFormId()"/>
  • $AppWalker is deprecated. All code that uses $AppWalker should be modified. Further information on this topic can be found at:
  • http://docs.intrexx.com/intrexx/version/8000/api/velocity/jdk/?de/uplanet/luc y/server/appservice/ApplicationWalker.html.
  • Apache Solr:
  • The switch to Apache Solr will cause a re-indexing of your data. This may take some time to complete. As the portal export no longer includes the index data of your search configuration, the re-indexing will run automatically after importing a portal.
  • Office Integration:
  • Due to increased security measures, the Office integration is not currently compatible with Intrexx version 8. It will be updated in a future online update.

New in Intrexx Portal Manager 4.50.20080918.28733 (Oct 20, 2008)

  • MS Office Integration, Groovy Support, redesigned user management, optimized application import/export, improved configuration of portal search, new JavaScript editor, depending selection lists via dialogue, references depending on language settings