Recently active
The migration of the production server from RCS to database repository is done. The staging server needs to be migrated. The available migration document http://support.ptc.com/WCMS/files/143564/en/MKSDatabaseRepositoryMigrator_2009SP7.pdf was referred for the process.Can the same document be referred for the migration of the staging server as well?Thanks,Sujith
Hi All,We have procured PTC integrity for our ALM. We are using codewarrior 10.6 IDE for our code development ( It's a eclipse ( juno 2.2) based IDE). We planned to integrate it with PTC integrity SCM ( software code management) . Would like to know whether its feaasible ?
My role in my company is changing soon. I've prepared a lot of documentation for newer users, but was wondering if you in the community have additional ideas?What would you say are 2-3 most useful things you learned LATE about Integrity-- that is, what do you wish you had understood earlier? For example, my list would include:1- How to multi-edit a list of items2- How relationship fields are set-up, and how they work3- How Export puts priority on local vs. server configuration files and templates4- How to configure email alerts for myself on the Web interfaceetc.Anything *you* would put on the list?Bob
I have defined an executeCmdAs with the following command "im diag --diag=runsql --param=select login from mksdomainusers". However, the following error is returned: "Runsql Diagnostic: SQL Statement execution failed: Invalid SQL type: sqlKind = UNINITIALIZED"Thank you,Paul Hartwig
I want to make an external login page that checks for the username and password of a user, if the user is authenticated, it redirects the user to a certain mashup.Is there a service in thingworx that I can use to authenticate the user given a user name and a password.Thanks
My user wants to roll back a member to a previous version. I know there is a way to do this in other tools. Can PTC Integrity do this?Thanks,Ginny
Hi, I'm trying to test PTC web services in Visual Studio by adding a web reference to a project.I've been able to successfully testhttp://integrityserver:7001/webservices/2009/7/Source/?wsdlwhere (integrityserver is the name of our server). I can see the 25 methods of the /Source web serviceHowever when I add a web reference forhttp://integrityserver:7001/webservices/10/2/Integrity/?wsdlI get the error below from Visual StudioThe document was understood, but it could not be processed. - The WSDL document contains links that could not be resolved. - There was an error downloading 'http://www.w3.org/2005/05/xmlmime'. - The request failed with HTTP status 407: Proxy Authorization Required.There was an error downloadOther tools like SoapUI don't work as well asking for authentication too.Why is this 'http://www.w3.org/2005/05/xmlmime' URL blocked by the proxy server in this context ? ( I can certainly access 'http://www.w3.org/2005/05/xmlmime in my
Hi,have some trouble using PTC Integrity ... hope it´s due to my beginner status Usecase:(0) setup a sandbox(1) have a binary file member(2) make working file writable(3) apply some changes in the sandbox (to the working file)(4) do a CheckOut to bring the changes under source control(5) the CheckOut always (regardless of any settings in the UI, e.g. "overwrite working file if changed") overwrites the "local" changes in the sandbox with the content from the server! (similar as Resynchronize command)If I do the same workflow on a ASCII/Text file, then the CheckOut keeps the local changes in the sandbox, which is absolutely what I expect and want.To me it seems that Integrity behaves totally different for binary files as for ASCII files.How can I change the behavior to always keep local changes in the :working file on a CheckOut?Integrity Version 10, Build 10.5.0.5479Thanx in advanceMarkus
Hello,We are working with Integrity 10.5. I have seen that in 10.8, there are no project.pj files in the sandboxes anymore (all sandboxes kept in local database).Does this mean that we could have multiple sandboxes (from the same project) in the same folder?We are especially interested in having multiple sandboxes from different user PCs pointing to one sandbox on a network drive.This could help replacing our shared sandboxes...Any info is appreciated.Regards,Stephan
Question for Department of Defense users/administrators of MKS/PTC Integrity.Have any of you been able to configure MKS Integrity to authenicate using your CAC card? If so, how or what did you do to make it work? I need help. Any help would be greatly appreciated.Presently we are using the MKS Domain as our security method. It is a pain when you have hundreds and hundreds of users.We are currently running MKS Integrity 2009 SP5 on AIX. We are planning to upgrade to 10.x in the future.Thank you,Dan
Some of our items with lots of history cause an error. There is about a 2 minute delay as it tries to process the item, and then throws this error:EXCEPTION: com.mks.api.response.APIConnectionException: Unbuffered entity enclosing request can not be repeated.sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)java.lang.reflect.Constructor.newInstance(Unknown Source)java.lang.Class.newInstance(Unknown Source)com.mks.api.response.APIExceptionFactory.getAPIExceptionObject(APIExceptionFactory.java:134)com.mks.api.response.APIExceptionFactory.createAPIException(APIExceptionFactory.java:80)com.mks.connect.AbstractCmdRunner.executeCommand(AbstractCmdRunner.java:317)com.mks.connect.AbstractCmdRunner.executeCommand(AbstractCmdRunner.java:242)com.mks.connect.AbstractCmdRunner.execute(AbstractCmdRunner.java:394)foo.bar.MksClient.build
Good Morning,Again my apologies if it is a dumb question. I want to display all the detail via cli command just like I can do it in GUI document->view. I want to process that in a different program.Thank you for your help.
I have a doors-module with an already defined attribute.But now I have to re-create it from a RIF-file [which has to be imported].Nevertheless if a rename or delete this attribute, it stays valid in the roundtrip configuration and is therefore not imported and raises an error in the report.Any suggestions ?Than you,Thomas MIGLINCI
I can't get attachments to download through the API. I've tried adding "remote://" for both the "cwd" and "outputFile" options but nothing seems to point the command to my local computer. Any idea what I'm missing? Here is my code private string localFolder = Windows.Storage.ApplicationData.Current.LocalFolder.Path; public void SaveAttachments(int IssueId, string FieldName, List<MKS.ManagedAPI.Item> AttachmentItems) { try { Command cmd = new Command("im", "extractattachments"); cmd.AddOption("hostname", hostServer); cmd.AddOption("port", hostPort.ToString()); cmd.AddOption("user", userName); cmd.AddOption("password", userPassword); cmd.AddOption("cwd", Path.Combine("remote://", localFolder, IssueId.ToString())); cmd.AddOption("outputFile", Path.Combine("remote://", localFolder, IssueId.ToString(), AttachmentItems[0].Id.ToString())); cmd.AddOption("field", FieldName); cmd.AddOption("issue", IssueId.ToString()); if (!APIFactory.IsInitialized) APIFactory.MKSInitialize(); IIntegrati
I am aware that MKSSI_PROJECT_CONFIG_PATH command displays the project configuration path.If i had to display the configuration path of a subproject then what would be the command?I would like to know if the below understanding is correct: MKSSI_SUBPROJECT" + cnt + "_CONFIG_PATH when a normal subproject is configured as Build.Due to the above command MKSSI_BUILD environment variable value is not getting set.
I am trying to get last login time of user by using CLI command. I didn't find any specific command to find out this.Could you please help me to get last login detail of user by using CLI command?Thanks,Sithik
HiI’m trying to add a label via si command to a selected member in the Sandbox-Window but unfortunately it doesn’t work. I’m using the following command paramters:si addlabel --hostname=integrity --port=<port> --user=<user id> --sandbox=<sandbox path> -L <label> <member>I’m always getting the following message:MKS125335: Out of tree members and subprojects (not located in the project directory or a subdirectory of the project directory) are not supported.Any idea where the problem is ? It’s working if I’m trying to add the label via si command below to a selected member in the Project-Window:si addlabel --hostname=integrity --port=<port> --user=<user id> --project=<Project path> -L <label> <member>The only difference between the two commands are the parameters “--project” and “--sandbox”.Best RegardsStephan
Dear Community,I am struggeling a little with an approach...I would like to show an image from a server, using a Longtext field (Richtext activated) - no problem so far.Using the menu 'Insert->Image->URL', the client pulls a copy, and attaches it to the item. But this is of course only static.Modifying the the <!-- MKS HTML --> content a little via the CLI, I was able to force him to keep using the server address.But also here some sort of caching mechanism seems to be in place. Because if I replace the original image on the server, no update happens.If you ask yourself what I am planning to do... We do have an external Reporting-Engine producing nightly charts (rendered images). We would like to give the user a chance to have the nightly report within his item without having to navigate somewhere else (of course we could set a link to the browser etc. but we would like to keep it within the item).And why is all that? Unfortunately, Integrity does not allow to include its o
Hello, I see a number of my users with a red question mark on their image.What does this indicate and how do I resolve it?Integrity 10.2Thanks!
Hello,How can I change line styles for link items in PTC Integrity Modeler? 1) For example, I would like the link lines to run in a rectangular fashion (i.e. parallel to grid lines instead of across), but I can't seem to find the button/option where to set this.2) How can I force links to collapse? This applies for nesting links for example, I'd prefer a design that resembles an file structure rather that a few separate links.Thank you!Lisa Moevius
I've found some slides from PTC Live Worx, and I have found this Community: "PTC Cloud Services"But does anyone have further experiences in this issue?Can Integrity be used as a Cloud Application in an efficient way AND on a secure basis in the near future?
Good morningI am just wondering if it is possible to login from CLI command? The reason I ask is I have to import data through PTC integrity and into a web based application so if I can login from client computer it can import data for anybody that is using the web application.Thank you for the help
I would like to generate a report of all the members in a project that meet a specific criteria such as all revisions created by a specific user or all revisions created during a specific time period (within a specific sub-project). I don't see a way to create a query or report on archive members. I can create queries and reports on items (e.g. defects, change packages), but I do not see any way of creating a report for a specific project that yields a result of members in that project with the specified criteria. Is this not possible?
Hi All,I've been trying to find out how to know in which checkpoint version is my project now.I am working on a project(mainline) that everyday is changing but lets say that today I have checkpoint 1.45 and this is the last one, The next day this move forward but I don't want to update my sandbox yet, when I see the history it shows me all the changes until the last one let's say 2.01.Is there a way to find out what's the version that I have in my sandbox? I mean in the case above how I can know that my sandbox is in 1.45??? I hope you can help me .Regards,Samuel.
I can seem to find the location in the PTC Integrity GUI that would turn on content entry confirmation. In other words, after entering content on a document, I want the window to display that forces to select yes or no to confirm the entry.
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.