Book a Demo

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.


Topics - nilspc

Pages: [1]
1
PCS Bugs and Issues / Prolaborate diagrams blurred/unclear for some users
« on: September 24, 2024, 04:00:08 pm »
Hi,

Running Prolaborate 3.7 / PCS 5.1

We have a problem that for some users the diagrams are blurred/unclear in Prolaborate, works fine for other users.
Anyone seen this problem?

/Nils


2
PCS Bugs and Issues / PCS 4.2 to 5.1.128 upgrade issues
« on: February 02, 2024, 05:42:02 pm »
Hi,

We use PCS as floating licens server and to get access to the repository. We are running the 32bit version

We are doing a second attempt to upgrade to PCS 5.1.128 and are experience several problems
Day 1 after upgrade everything seemed to work
Day 2 Sparx client loose connection to database end we get the message "No available key for Architect could be found. Enter a key or connect to e new keystore". After trying several times you eventually get a key. There are plenty of empty keys available
Restart of the server late day 2
Day 3 everything seemed to work fine
Day 4 everything seemed to work fine except for one user loosing connection to the database 
Day 5 (today) I again get the message "No key........"

There are no messages in any logs and I'm running the PCS log with trace without seeing anything that can explain the problem

Has anyone seen and solved this ?
We need to roll back to 4.2 (again if we don't solve this soon) and difficult to open a support case without anymore information but will do that to see it there are any explanation to this



/Nils

3
Bugs and Issues / Query works in 16.0 but stops working 16.1
« on: May 09, 2023, 08:51:27 pm »
Hi,

Upgraded to v16.1 and discovered that one of our queries no longer work
this query works in 16.0

Code: [Select]
select f.ea_guid,c.ea_guid,f.name, c.name
from t_xref as a, t_connector as b, t_object as c,  t_object as f,  t_objectproperties as tag2
where a.behavior = 'conveyed'
and a.Description LIKE '%'+c.ea_guid+'%'
and a.client = b.ea_guid
and b.Start_Object_ID = f.Object_ID
and f.Object_ID = tag2.Object_ID and tag2.Property = 'ID'

By working I mean that it returns values in all 4 columns.
In 16.1 column 1 and 3 are blank.

I discovered the problem when running one of our script but the query builder have the same behavior.
And the problem occurs both in a repository in an sqlserver or a local qeax file

Anyone seen something like this? is the something I am missing?

Regards
Nils

4
Bugs and Issues / Problems using ADODB.Stream in JavaScript
« on: January 02, 2023, 09:08:53 pm »
Hi,
I'm importing files in UTF-8 format and Scripting.FileSystemObject apparently does not support UTF-8. When importing nordic characters are randomly corrupted so I'm testing using ADODB.Stream instead.
The code work in JScript but NOT in JavaScript. The JavaScript code runs with no errors but the file appears to be empty.
Can anyone explain why it works in JScript but not in JavaScript?  se the code below
Or rather, how I can get it to work in JavaScript (prefer JavaScript because of the built-in debugger)

Running 16.1

Regards
Nils

JavaScript
Code: [Select]
var fileName;
var file;
fileName = "c:/temp/storutftestfil.csv";
var stream = new COMObject("ADODB.Stream");
stream.Type = 2 // text data (as apposed to binary data)
stream.Charset = "utf-8";
stream.LineSeparator = -1; // carriage return line feed
stream.Open();
stream.LoadFromFile = fileName;
file = stream.ReadText();
Session.Output("Stream : " + stream.Size);
Session.Output("Line : " + file);
stream.Close();

JScript
Code: [Select]
var fileName;
var file;
fileName = "c:/temp/storutftestfil.csv";
var stream = new ActiveXObject("ADODB.Stream");
stream.Type = 2 // text data (as apposed to binary data)
stream.Charset = "utf-8";
stream.LineSeparator = -1; // carriage return line feed
stream.Open();
stream.LoadFromFile = fileName;
file = stream.ReadText();
Session.Output("Stream : " + stream.Size);
Session.Output("Line : " + file);
stream.Close();


5
Bugs and Issues / UTF-8 Javascript import to notes problem
« on: December 02, 2022, 11:13:50 pm »
Hi,
I'm trying to update the note field for components with text containing Swedish characters like ö ä å with a javascript.
I have them in an UTF-8 text file and have set the option "code page for source editing" to UTF-8

But when I import they get corrupted when importing into the notes field, works fine for import into tagged values.

Any ideas? Is there something special with the notes field?

Running v16.0.1604

Regards
Nils

6
PCS Bugs and Issues / Performance issues after upgrade to PCS 5.0.105
« on: November 16, 2022, 12:17:08 am »
Hi,

After upgrade to PCS 5.0 Sparx EA (16.0.1604) sometimes freezes fore several seconds (>10), anyone experienced the same problem? solution?

/Nils

7
PCS Bugs and Issues / Unable to disable eaworker
« on: November 10, 2022, 09:14:19 pm »
Hi,
I tested using "Periodically generate diagram images for WebEA & Prolaborate", but since we are using an MDG and the worker does not we cannot use it.
My problem now is that I cannot disable the worker. 
I've obviously disabled it in the "Configure database manager" and even deleted the connection and created a new one with the same name.

any ideas ?

/Nils

8
Bugs and Issues / Cannot insert duplicate key in object 'dbo.t_seclocks'
« on: September 13, 2022, 10:20:22 pm »
Hi,

We get the following error in the Pro Cloud Server log
2022-09-13 14:13:37 [WARNING]: Microsoft OLE DB Provider for SQL Server [-2147217873]
2022-09-13 14:13:37 [WARNING]: Violation of PRIMARY KEY constraint 'pk_seclocks'. Cannot insert duplicate key in object 'dbo.t_seclocks'. The duplicate key value is ({87EC09A9-CD9B-42df-BFCB-5912EFF01FFB})

Does anyone know why?
Everything seems to work fine

/Nils

9
Bugs and Issues / Migrating eapx files to qeax problems
« on: September 05, 2022, 07:32:17 pm »
Hi,

We have upgraded to v16.0.1604 64 bits which no longer supports eapx files.
Tried to migrate eapx files to qeax files but the qeax repository becomes more or less corrupt. It is possible to open but takas a long time to open and running to project integrity gives a lot of errors. After correcting the errors the diagrams are missing information.

Anyone have the same problem and solved this?

/Nils

Pages: [1]