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

Pages: [1] 2
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 / Re: PCS 4.2 to 5.1.128 upgrade issues
« on: February 02, 2024, 06:28:56 pm »
Hi

Had to roll back to 4.2 again
Are there anyone that successfully run PCS 5.1.128 as floating licens server and access to the repository?

/Nils

3
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

4
Bugs and Issues / Re: Problems using ADODB.Stream in JavaScript
« on: January 16, 2024, 07:58:26 pm »
Hi,

Thank you ;D
Seems to work

Regards
Nils

5
General Board / Re: can't unlock diagram
« on: November 24, 2023, 08:43:27 pm »
Hi,

Found the solution to our problem.
If you have enabled auto refresh on a diagram it shows like locked when you right click on the diagram and the auto refresh is also exported so same behavior after import into another repository

/N

6
General Board / Re: can't unlock diagram
« on: November 24, 2023, 01:29:20 am »
Hi,

Did you find any solution for this?
We appear to have the same problem with one diagram

/Nils

7
Bugs and Issues / Re: Query works in 16.0 but stops working 16.1
« on: May 09, 2023, 09:20:00 pm »
Hi,

Thank you for a very quick response
Upgraded to 16.1 again and it now works  :D

Strange though that it worked in 15.2 and 16.0

Regards
Nils

8
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

9
Hi,

Thank you for the update  :'(

/N

10
Hi,

Any progress on a solution for this?
Also in Sweden and we see the same problem, but what we also see is that the search works fine in Prolaborate running in IIS against the same PCS and repository so the problem appears to be caused by WebEA and not by configuration in IIS or SqlServer.

/Nils

11
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();


12
Bugs and Issues / Re: UTF-8 Javascript import to notes problem
« on: December 23, 2022, 07:20:31 pm »
Hi,
Thank you Eve
That solved the problem
/Nils

13
Bugs and Issues / Re: UTF-8 Javascript import to notes problem
« on: December 14, 2022, 06:28:42 pm »
Hi,
Just an update for those who are interested
It is the same problem in 15.2 and 16.1
/Nils

14
Bugs and Issues / Re: UTF-8 Javascript import to notes problem
« on: December 03, 2022, 12:36:31 am »
Hi,
Thanks for quick respons  :D
In debug Xnotes are just text and looks correct.
Seems like I need to test another version of Sparx and see if that is the problem.
During my tests I have seen some weird behavior that the text I import into tagged values also sometimes gets corrupted but with no apparent pattern when it happens.

Thanks for the call to Refresh() tip :-)

/Nils

15
Bugs and Issues / Re: UTF-8 Javascript import to notes problem
« on: December 03, 2022, 12:18:39 am »
Hi,

And tested this but didn't work
app = Repository.GetElementByGuid(sourceGUID);
Xnote = Repository.GetFormatFromField("TXT", applicationToCheck[15]);
app.Notes = Xnote;
app.Update();
app.Refresh()

/N

Pages: [1] 2