dkur

Results 16 issues of dkur

I noticed, that BIMvie.ws always duplicates objects in the tree if there is more than one revision: ![image](https://user-images.githubusercontent.com/33101961/144220219-57cb8e2b-5b31-475c-90a6-9a0cd39b0634.png) There can be even more duplications. Usually more revisions leads to more...

bug
low level interface
good first issue

Hello! I prepared 2 models of small size that help to get this error. Each is of size approximately 40 Kb. In order to get the error you need to...

bug
query language

I have a case where I need to update location of IfcLocalPlacement->IfcAxis2Placement3D. I extracted IfcCartesianPoint and tried to do the following: ``` existingPoint.getCoordinates().set(0, newValue); // ... model.commit(); ``` That didn't...

bug
low level interface
Java client library

I checked how standard model comparers work. It seems that they catch only new objects and updates in attributes. I tried the following: 1. Changed direction for LocalPlacement of some...

low level interface

Maybe I am missing something but ClientIfcModel.get(long oid) and ClientIfcModel.loadExplicit(long oid) have very strange behaviour. Method "get" does the following: `IdEObject idEObject = super.get(oid); if (idEObject == null) { loadExplicit(oid);...

Is it possible to open several connections to BIMServer and start working in parallel? I tried to implement this in many ways but I get random errors whereas there are...