Tom van Oost @ 6:00 AM on May 20, 2010
In this posts we explain howto setup the straitPortal 2.6 vpc. Only a few steps are required to run this demo installation of straitPortal on your own pc! This vpc comes with the full range of straitPortal products, including straitPortal Express, straitPortal Enterprise, straitPortal Web Parts and much more.
Setup steps
Download the straitPortal 2.6 [...]
More >>
Tom van Oost @ 1:21 PM on May 17, 2010
The following code example shows how simple it is to create your first straitPortal app. It shows howto get a list of users from the PLM system.
HelloWorld.vb
Imports Infostrait.Generic.StraitWeb.Shared
Module [Module]
Sub Main()
Console.WriteLine(”My first straitPortal Application.”)
Console.WriteLine(”Connecting…”)
Dim query As SimpleDataRetrieveDefinition
query = New SimpleDataRetrieveDefinition()
query.Class.ClassName = “Users”
query.Attributes.Add(New Attribute(”LOGIN”))
Try
Dim result As DataSet
result = LibraryFactory.GetLibrary(My.Settings.DefaultServiceUrl).Query(query).ConvertToDataSet()
Console.WriteLine(”Listing PLM users: “)
If result.Tables.Count > 0 Then
For Each [...]
More >>
Tom van Oost @ 1:28 PM on May 6, 2010
A new version of the straitPortal SmarTeam Suite, containing a new version of the straitPortal platform, is available. straitPortal SmarTeam Suite is a fully functional suite with services and applications around SmarTeam, based on the straitPortal platform. Setup is easy, and the goal is simple: simplify the deployment of straitPortal products. The suite contains components [...]
More >>