Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hugelsb

Pages: [1] 2
1
Automation Interface, Add-Ins and Tools / Re: Scripts do not run - V15
« on: November 05, 2019, 07:57:41 am »
Unfortunately I have the same issue with a new EA 15 installation on my Windows 10 notebook. Would be grateful for any tip.

2
I used the following code to import an XMI file as a Baseline. The used ZIP file is the result of the extracting the bin data of t_document.
But know I have the same behavior as Arshad posted.
Does someone managed to import XMI programmatically?

Code: [Select]
Sub createBaseline()
     Dim eaConn As New EAConnector

     Dim baselinePackGUID As String
     Dim docGUID As String
     Dim baselineVersion As String
     Dim baselineName As String
     Dim baselineNotes As String
     Dim baselineContent() As Byte

     Dim insertSql As String

     Dim strFilePath As String
     Dim objStream As New ADODB.Stream
     Const adTypeBinary = 1

     baselinePackGUID = "{CFABA5B2-D733-4b80-B761-EECDCA09BB45}"
     baselineVersion = "1.0.1"
     baselineName = "Merge Test"
     baselineNotes = "Notes of the Baseline"

     strFilePath = "C:\temp\zip\txt.zip" 'This is the path to the file on disk.

     'Set objStream = CreateObject("ADODB.Stream")
     objStream.Open
     objStream.Type = adTypeBinary
     objStream.LoadFromFile strFilePath
     baselineContent = objStream.Read

     docGUID = generateEA_GUID

     insertSql = "INSERT INTO t_document " & _
             "(DocID, DocName, ElementID, Version, Notes, BinContent, DocDate, ElementType, DocType,Style,isActive)" & _
             " VALUES ('" & docGUID & "','" & _
             baselineName & "','" & _
             baselinePackGUID & "','" & _
             baselineVersion & "','" & _
             baselineNotes & "','" & _
             EncodeBase64(baselineContent) & "'," & _
             "Now(),'" & _
            "Package','Baseline','Zip=1;',0)"
     Debug.Print (insertSql)
     Call eaConn.getRepository.Execute(insertSql)
     objStream.Close
End Sub 'createBaseline

3
Does anyone have a solution for this?
I need a possibility to import baselines programmatically from an other project (database) in order to merge models finally.
Thanks to any hint.

4
Bugs and Issues / Re: SqlServer 2012 Schema support
« on: February 26, 2019, 08:18:00 pm »
Hi ea0818
Thanks a lot for the solution!
Is there any documentation about this or I have to analyze the DDL templates?

5
Bugs and Issues / SqlServer 2012 Schema support
« on: February 26, 2019, 03:44:20 am »
Does someone managed that the DDL Builder (version 14.1) generates valid DDL with schema support for SqlServer 2012?
Even setting the "Tablespace" Tagged Value (to "ana") does not change anything. The DDL statements doesn’t change (e.g.:
current result:
Code: [Select]
CREATE TABLE [SixidLogfile]should be:
Code: [Select]
CREATE TABLE [ana].[SixidLogfile]
Thanks for any hint!

6
Suggestions and Requests / Re: BPMN
« on: May 10, 2010, 09:51:06 pm »
Would be great, if we get any indication from Sparx about the plan how adn when BPMN 2.0 will be supported.
Thx and best regards,
Beat

7
Suggestions and Requests / How to modell exceptions
« on: April 28, 2010, 01:41:27 am »
How I can model exceptions on an operation of a class? I would like to select one or more possible exceptions with the Project Browser to define which class will be thrown. I was thinking about Tagged Values, but then I have to write the ExceptionClasses manualy.
 
Thanks for any idea.

8
General Board / Re: How export/import Matrix Profile (Resources vi
« on: May 05, 2014, 09:49:28 pm »
Did someone find a way to export and import Matrix Profiles? With the Export/Import Reference Data feature it does not work.

Thanks for any help.

Regards

9
General Board / Best performance with which MYSQL?
« on: October 27, 2011, 06:39:08 pm »
We are starting to use MySQL as EA repository.
Which MYSQL MyISAM or InnoDB has the best performance?
Which DB parameter configuration you are recommending?

Thanks a lot for your help.
Beat

10
General Board / Modeling Transformation Mapping
« on: July 17, 2010, 01:45:39 am »
I'm looking for a possibility to document a transformation mapping: e.g.:
Class A with its attributes (In reality a RPG file) should be mapped to a Java Class with its attributes to document which attribute in Class A will be represented in the Java Class. At the end I should have a cross reference matrix where I can see how the Class A attributes will be mapped to the Java Class attributes.
I'm looking forward for advices. Thanks a lot!

11
General Board / Link to Glossary Terms from other elements
« on: October 14, 2009, 07:49:35 pm »
Is there a way to define a link to a Glossary entry? I'd like to avoid that I have to document abbreviations on different location (e.g. in notes on classes and components diagrams etc.).

12
General Board / Re: XMI import from Borland Together
« on: January 25, 2008, 08:50:19 am »
I'm trying to import Together XMI files as well and all diagrams are disappeared. Was someone successful with such an import including the diagrams?

Thanks for help.

13
Bugs and Issues / Renaming Stereotypes
« on: June 15, 2010, 10:27:07 pm »
How I can rename Stereotypes in a model, so that all elements which are assigned to this Stereotype gets the renamed one?

14
Bugs and Issues / Re:  BPMN validation does not work
« on: June 27, 2008, 05:36:16 pm »
I don't have an entry BPMN under Add-Ins. I can see in Manage Add-Ins one entry: BPMN with Status Error. http://www.sparxsystems.com/cgi-bin/yabb/YaBB.cgi?num=1213672351/0#0 says that the Add-In should not be installed as normal Add-In. Please let me know how I can implement BPMN validation with Enterprise 7.0.
Thanks a lot.

15
Bugs and Issues / Re:  BPMN validation does not work
« on: June 24, 2008, 08:53:00 pm »
I followed the instructions and it seems to be that validations are done now. However where I can find which validations are done? I still get 0 errors and 0 warnings with for sure invalid BPNM diagram.

Pages: [1] 2