Archives
Tweet thisMetastorm global conference has kicked off today. Details to come ….
Tuesday 18th
Rating 3.00 out of 5
[?]
Tweet thisMetastorm has released the anticipated SR1 update. The update is unique in a sense that it will allow the integration of 7 and 9 environments.
Quick notes on installtion:
- Oracle client 11.1.0.7 is the only version that will work against an 11g server. Becareful to upgrade in the following sequence:
1. Install 11.1.0.6.21 first [...]
Tweet thisThe setup is, you have a form with a non-editable grid and fields to collect the data to be entered into the grid.
Grid Name: GridTest
Business Object: TestGrid
Button to Add Record: “Add” – Server side button with Code Activity
Code Activity:
System.Data.DataSet ds = TestGrid.Read();
System.Data.DataRow dr = ds.Tables[0].NewRow();
dr["FIRST_COLUMN"] = “FIRST COLUMN DATA”;
dr["SECOND_COLUMN"] = “SECOND COLUMN DATA”;
ds.Tables[0].Rows.Add(dr);
//write changes [...]
Tweet thisAfter looking through the source code (html) of a metastorm 9 form with a grid, it appears that Metastorm has purchased RadGrid component from Telerik. I’ve looked around the API and it seems that they are using Ajax and JQuery. I am still investigating ways of making JQuery calls through client scripting. I’m not [...]
Tweet thisWell actually the title should be “Roles Not being able to use the LDAP Business Object”. I have attempted the following:
Build an LDAP business object
Bind the data of that object to a role
I configured my LDAP business object and tried to access the data returned by the LDAP query in a dynamic role and [...]
Tweet thisMetastorm has come a long way with the recent release of Metastorm 9. Although Metastorm 9 is powerful and very flexible, there are times when extra customization is in need. For this, Metastorm has an SDK (software development kit).
It seems that Metastorm will release their SDK for Metastorm 9 with SR1. This is tentative [...]
Tweet thisMetastorm 9 ships with a tool to convert your existing Metastorm 7.x processes to Metastorm 9. The tool is simple enough to use, however, this doesn’t mean that your migration will be easy. Depending on how customized your process is, the code will most likely port over to Metastorm 9 format successfully.
As you may [...]
Tweet thisMetastorm is offering a 3 day upgrade class for those individuals who are interested in upgrading their skills from Metastorm v7.x to Metastorm v9.
You can download the class syllabus.
Click here for more details!
Rating 3.00 out of 5
[?]
Tweet thisHello,
It has been a while since our last post. We’ve been busy upgrading to Metastorm 9. We’ve added a new section on our forum for Metastorm 9 related issues. Please visit: http://www.metastormguru.com/forums/metastorm-9/
Sections:
Metastorm 9 Migration Tool: http://www.metastormguru.com/forums/metastorm-9/metastorm-9-migration-tool/
Metastorm 9 Designer: http://www.metastormguru.com/forums/metastorm-9/metastorm-9-designer-update-insert-delete-activities/
Metastorm 9 Business Objects: http://www.metastormguru.com/forums/metastorm-9/metastorm-9-business-object-query-builder-param/
Metastorm 9 Installation: http://www.metastormguru.com/forums/metastorm-9/metastorm-9-installation-findings/
Metastorm 9 is a significant change from the earlier versions. [...]
Comments