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 - Neoris_alm

Pages: [1]
1
Automation Interface, Add-Ins and Tools / Re: Integration with EA
« on: October 26, 2007, 11:25:09 am »

Thanks David,
I follow your comments and I get it  :)

also I found the steps into the "Help Contents" to Add new elemet in my Model

1. Call AddNew to add a new item
2. Modify the item as required
3. Call Update on the item to save it to the database
4. Call Refresh on the collection to include it in the current set

I´m grateful for your quickly answers

TA

Israel Ruiz





2
Automation Interface, Add-Ins and Tools / Re: Integration with EA
« on: October 26, 2007, 09:09:36 am »
Hi David!!

I looked for the examples but I don´t find anything about insert from Java api () a new Element. I do this

Repository r = new Repository();

r.OpenFile("c:\\ALM_Process.eap");
 
Collection <Datatype> coll =  r.GetDatatypes();
coll.AddNew("New Requirement", "Requirement");
 
r.CloseFile();

it run without problems, but I don´t see any change on my
ALM_Process.eap

do u have some suggestion ??

3
Automation Interface, Add-Ins and Tools / Re: Integration with EA
« on: October 26, 2007, 05:32:33 am »
Ok  :o , but Where can I find some examples about that.
or the Api documentation ??

thanks.


4
Automation Interface, Add-Ins and Tools / Integration with EA
« on: October 25, 2007, 01:29:14 pm »
 How can I make to insert a new element to EA from
another application? I try to use a java API, but I don´t see which classes have that operation ??

The elements that I need to Insert like new are Requirements and package and its relations.

EA has some another method to get this Integration like webservices ??

thanks

Israel Ruiz

Pages: [1]