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

Pages: [1]
1
Suggestions and Requests / Auto show project view panel
« on: January 12, 2006, 07:08:00 am »
I hide the project browse to save space on my screen.

When I use Alt-G (select in project browse) on diagram elements, the project browser remains hidden...  :-/

I would save time if the panel appeared automatically   :D

2
Suggestions and Requests / Multiple check-in
« on: January 12, 2006, 07:13:37 am »
I 'm working with a SQL repository and version control (SCC).

I check-out a lot. It's sometimes hard to find checked-out packages in the project browser.

I would appreciate a "find all checked-out packages" or at least a "check-out all packages".


Thanks.

4
General Board / Dependencies deduction ?
« on: July 25, 2005, 02:06:57 pm »
Is there a way to make EA deduce dependencies between packages from class associations or opération parameters ?

Example : Class Ca in package Pa is associated with class Cb in package Pb.
There is a dependency between pacakge Pa and package Pb.
Can EA compute it ?

Thanks

5
General Board / Re: work at home ;-)
« on: September 21, 2005, 05:14:59 am »
Thanks.
It works fine.

6
General Board / work at home ;-)
« on: September 19, 2005, 07:58:52 am »
Hi,

We have an EA repository in a SQL server DB.
I would like to work while disconnected of the office network.
So, I make a copy of the repository (Data tranfert DBMS to EAP file).
Back to the office, I export my package to xmi file from my EAP file, then import to the SQL repository.
Unfortunaltely, all links external to my package were lost.

It seems this method is not the good one.
Does anybody knows how to work disconnected ?

Thanks

7
General Board / Re: link use cases scenario and sequence diagram
« on: September 20, 2005, 08:26:27 am »
Here it is how I do it :
In the project view, right clic on the use case, choose "new child diagram", then select "sequence diagram".
That's it.

8
General Board / Re: Windows Authentication
« on: September 16, 2005, 04:17:02 am »
I had the same problem with a local project, an eap file which is a copy of a repository in an SQL SERVER DB (by Tools/Data management/Data Transfer).

I finally fix it. Here is what I have done:
- Login as admin
- Project/Security/maintain users
- Uncheck Accept Windows Authentication
- Close the "Maintain User" dialog
- Re-open then "Maintain user" dialog
- Check Accept Windows Authentication
- Close the project

When I re-open the project, the windows authentication works.

Hope it will work for you.

9
General Board / Re: Windows Authentication
« on: September 14, 2005, 09:21:43 am »
Is "Remerber Id" in the login screen unchecked ?

10
General Board / Re: Automatic generation of documentation
« on: September 05, 2005, 08:03:31 am »
i forget the sub of the pl :


sub OleQuit {
   my $self = shift;
   $self->Exit();
}

11
General Board / Re: Automatic generation of documentation
« on: September 05, 2005, 08:00:29 am »
Any idea ?
The perl script is launched by a bat file.
I have make a simple test :
- run a scheduled task while NOT logged on
- run a scheduled task while logged on

The logged off test fails (see the pl script below):
- Logged off :
+++ starting EA

- Logged on :
+++ starting EA
+++ opening model
+++ getting project interface
+++ Enumerating projects 1
+++ running HTML Report
+++ Atodoc ended


Here is the pl :

Open the model file
print "+++ starting EA\n";

my $ex = Win32::OLE->new('EA.Repository', \&OleQuit) or die "Can't start EA\n";

print "+++ opening model\n";
$ex->OpenFile($model);

# get the XML/Report interface

print "+++ getting project interface \n";

my $pi = $ex->GetProjectInterface();

# the next call is not necessary, but without it does not work :-/

print "+++ Enumerating projects 1\n";


$pi->EnumProjects(1);
# start the report

my $GUID = "{}"; # can be found in the properties window

print "+++ running HTML Report\n";

$pi->RunHTMLReport ($GUID, "$ContentDir", "PNG", "", ".htm") ;
#

print "+++ Atodoc ended\n";



12
General Board / Re: Automatic generation of documentation
« on: September 05, 2005, 06:07:17 am »
Hi

I generate HTML report with autodoc.pl
It work fine when I run il interactively.
But, when It run via the scheduler (windows 2003 server, user with administrative rigths, logged off), there is no file generated.

Can someone help ?

Tks

Pages: [1]