Recently active
I am trying to add some kind of Interface class to an existing VB Project in order to be able to acces the IMS services. My current solution uses the command line interface, which works pretty fine. The only problems I have are related to "im createcontent" and "im createissue". In those cases I want to know the ID of the created objects but the streamreader object in my software seems so be empty (please see code snippet) VB.NET Code of CmdLineInterface Function: Private Function RunCommandCom(command As String, arguments As String) As String() Dim p As Process = New Process() Dim pi As ProcessStartInfo = New ProcessStartInfo() Dim output As String pi.Arguments = " " + "/c" + " " + command + " " + arguments pi.FileName = "cmd.exe" pi.RedirectStandardOutput = True pi.CreateNoWindow = True pi.WindowStyle = ProcessWindowStyle.Hidden pi.UseShellExecute = False p.StartInfo = pi p.Start() Using streamReader As System.IO.StreamReader = p.StandardOutput output = streamReade
Hello All, PTC Inc is planing out a UI replacement strategy for Integrity Lifecycle Manager & we have created a Group "Integrity Lifecycle Manager UI Replacement" that some of you already have received an invitation. If not, feel free to send a request to join the group. Do take a note that you have to join the Group and not the Sub-community by the same name. The Sub-community would be deleted as it was not the right place for the various discussions regarding this topic. Thanks Kartik Oak Message was edited by: Kartik Oak
Without checking out: Is it posssible to find out the file size of a specific member revision via CLI or other means?(For local differences a sandbox view already offers a file size delta compared to the current member revision.) Jürgen
Excel sheet is checked-in in the server and changed locally. SO is it possible to compare it ?
After downloading and installing PTC Integrity Modeler Trial I followed the instructions to request a trial 30-day license from -. I received this message from the Yahoo mail daemon: Sorry, we were unable to deliver your message to the following address. <->: 550: #5.1.0 Address rejected. --- Below this line is a copy of the message.
Hi all, How can I use/integrate a model within another model in Integrity Modeler? E.g.: In a model "profile" I define my own stereotypes, I would like to use in many projects. In a second model "project A" I wan't to integrate the content of "profile", to model A-project-specific content with my own stereotypes (defined in "profile"). In a third model "project B" I wan't to integrate the content of "profile" as well, to model B-project-specific content with my own stereotypes (defined in "profile"). If changes/additions to my profile are needed, I wish to model this in the model "profile". Automatically (maybe clicking an update-button ...) the new content of "profile" should be available within "project A" and "project B". I know this functionality from other SysML-Tools... Somehow I can't find something like this in Integrity Modeler... Thanks for your answers in advance! Best Regards, Georg
Tag values can be displayed on both of these types of items using the diagram and object View Options The video below shows an example of this process including the creation and application of the Stereotypes and Tags
Hi Team, Is there any SI command to detect whether MKS sandbox in Integrity client 10.9. SI importsandbox command expects .pj filepath as sandbox name but as we all knew 10.9 version is not generating .pj file while creating sandbox. Even in integrity client 10.9 UI expects .pj file while importing sandbox(Sandbox->import sandbox-> It's ask to select .pj file). I reference this forum Importing sandbox without .pj file but i didn't get information.Please let me know how to detect MKS Sandbox without .pj file. Thanks.
Hi all, normally if you wants to connect items via relationship fields, you will have two fields: forward and backward relationship. So if you want to have both directions visible in each item, you have to show two fields. Is it possible to have both directions in one visible field, whcih is still usable by the user in a similar way like the normal ones? Thanks, Jens
How to Export Segment fields in Excel through Integrity-Excel Integration?
Since now, I am creating multiple import parser for different documents. Now What i want is to create a single generic parser for many Documents.
I want to establish Microsoft project professional 2016 with Integrity knowing the fact that the version isn't yet available as a established integration from PTC. Has anyone established a workaround or want to establish this integration as a customer requirement? As 2016 version is the latest one, this is a need for most of the organization. Regards, Abhishek Patil
Hi all together! I'm a bit wondering for some time and today thought about something which would improve the performance of one of our integrations (communicating with Integrity using the Java API), if this wouldn't be the case. There're notes in the Java Doc of the Integrity Java API (mksapi.jar), like this: "Note: The MKS implementation of this interface is not thread safe and it is not recommended that multiple threads be used to access this interface." (From the com.mks.api.response.Response interface) So, the problem is, if I want to reliable access the methods of a PTC/MKS implementation of the Response interface (which is the usual thing returned by CmdRunner.executeCommand(), I need to build my whole application as a single-threaded, sequenciel application. This is, at least from performance point of view, not the best idea in all cases. Consider this case: We've an integration which periodically requests information from Integrity and performs tasks based on the
Can we uninstall or remove the solution(.imt solution) completely from Integrity 10.9?
Hi all,at the moment we're working with Integrity 10.7, but we are in the evaluation process to update to 11.0. And we are using some external tools to work with integrity, and these tools mostly are using the Java-API to Integrity.Until now the external tools can create and use sandboxes, and for creating sandboxes they look into a choosed filesystem folder for the project.pj to determine whether this folder is already used as a sandbox. Since Integrity 10.8 the project.pj-files in the sandbox-folders are gone, and now we are searching for a new, quick solution to replace the old functionality.Certainly we can use the API-connection to the integrity client and use the information the client is holding, but this would be much more complex than a quick look into a folder without opening a client-connection. As an idea: Is it possible to read the new database, which is holding all the sandbox information (bypassing the client)?Thanks, Jens
HelloI am trying to connect to Mks using the mks java api and encounter the Connection refused: connect error.I am using the following code { IntegrationPointFactory ipf = IntegrationPointFactory.getInstance();CmdRunner cmdRunner;Response resp = null;try {cmdRunner = ipf.createLocalIntegrationPoint(4, 10).getCommonSession().createCmdRunner();Command cmd = new Command(Command.SI, "about");resp = cmdRunner.execute(cmd);} catch (APIException e) {System.out.println("Error " + e.getMessage());resp = e.getResponse();}}to connect at mks client (I am using MKS Integrity Client 2009) and I encounter the following error { Connection refused: connect} How can I improove the above code in order to successfully connect to mks and skyp the error ?Best regards,
Hi,I execute following CLI in script, which gives me response. var command = new Packages.com.mks.api.Command("im", "viewissue"); command.addOption(new Packages.com.mks.api.Option("showHistory")); ProjectID = 30300; command.addSelection(ProjectID); var response = api.executeCmd(command); if(response != null) { var status = response.getWorkItems().next(); //want history here }I don't know how to read History through it, here I want what modification was done on the project 30300 in last few days. Is there any method in API Bean instead of CLI ?
Does PTC Integrity integration with LabView?
I am trying to put together a document when a trigger is run from Integrity. In particular I want to get the text which you can find by viewing the "History" tab of any item from the User viewset. 1) Am I correct in assuming the history cannot be accessed from a standard bean? I have tried the following code to retrieve the history using the API from my script: var apisession = eb.createAPISessionBean(); var command = new Packages.com.mks.api.Command("im", "viewissue"); command.addOption(new Packages.com.mks.api.Option("showHistory")); command.addSelection(10000); var response = apisession.executeCmd(command); But I can't really tell if this is useful, it doesn't seem to contain the history (despite use of "showHistory") when I've looked through the "response" object's keys. 2) Is there another way to do this? Thanks
FATAL log:2016-03-13 14:03:22,041 Unable to create temporary file in directory C:\Windows\system32\config\systemprofile\AppData\Local\Temp\. An exception occurred: The system cannot find the path specified. Ensure that the directory exists and that the Integrity Server has permission to write to it.2016-03-13 14:03:22,182 Service Configuration not started due to errors: Service mks:name=SysConfig not started due to errors: Unable to create temporary file in directory C:\Windows\system32\config\systemprofile\AppData\Local\Temp\. An exception occurred: The system cannot find the path specified. Ensure that the directory exists and that the Integrity Server has permission to write to it.Server log:2016-03-13 14:02:41,198 ERROR [org.apache.catalina.startup.Embedded] Cannot find specified temporary folder at C:\Windows\system32\config\systemprofile\AppData\Local\Temp\2016-03-13 14:02:42,010 INFO [org.apache.coyote.http11.Http11NioProtocol] Initializing Coyote H
How can we Export Integrity Document into PDF directly rather then Exporting to DOC and Converting to PDF ?
Hi everyone, When we execute out test session then we set verdict in respect of every test case and if more then one test case fails then our test session if failed then we again create Test Session for the same Test Objective again but i want to accomplish some scenarios if can be possible or there is any workaround:- 1.) Suppose we have total of 10 Test Case and assume in first Test Session 3 get fail and 7 gets passed then in 2nd test session only those 3 test case comes automatically. 2.) If Test case T1 is related with T2 and T3 then if we select T1 test case then both of related test case also get selected automatically. Any quick response might be helpful. I look forward to hear from you all... Regards, Kapil
On document Level ,document owner is a field capturing current user who will create that document by trigger. And in content level of that document Assigned user is a field can control each content. How to accomplish that document owner can also edit or control all the content (Only assigned user can edit the content as of now but want to give permission to Document owner as well ). By trigger I know how to do , but is there any short method ?
Does anyone suggest me how to capture effort and costing in testing cycle up to project level ? And if you are doing what is your way to achieve the same ? Any quick suggestion and idea would be helpful ? (Not only technical idea any business side idea would also be helpful.)
Dear All,is it possible to import requirements into PTC IM from Word, Excel files for instance?Regards,Alessandro
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.