Quantcast
Channel:
Viewing all 44947 articles
Browse latest View live

Forum Post: using starteam url with stcmd

$
0
0
Best I can tell stcmd requires user:name@server:port.  Is there a way to give stcmd the url instead?

Forum Post: RE: using starteam url with stcmd

$
0
0
afraid not, no. certainly something worth investigation, eventually providing as an alternative to -p, perhaps. however, we would still need a mechanism to specify the user name & the password, which are not part of the url syntax.

Forum Post: Monitoring a folder

$
0
0
Need to convert this program in C# for Cobol can anyone help me to understand what I need is to make a routine that it is reading a particular folder and when you input files it shows me, this routine found on the Microsoft website. thanks, sorry for the English, translated by Google. using System; using System.IO; using System.Security.Permissions; public class Watcher {     public static void Main()     {     Run();     }     [PermissionSet(SecurityAction.Demand, Name="FullTrust")]     public static void Run()     {         string[] args = System.Environment.GetCommandLineArgs();         // If a directory is not specified, exit program.         if(args.Length != 2)         {             // Display the proper way to call the program.             Console.WriteLine("Usage: Watcher.exe (directory)");             return;         }         // Create a new FileSystemWatcher and set its properties.         FileSystemWatcher watcher = new FileSystemWatcher();         watcher.Path = args[1];         /* Watch for changes in LastAccess and LastWrite times, and            the renaming of files or directories. */         watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite            | NotifyFilters.FileName | NotifyFilters.DirectoryName;         // Only watch text files.         watcher.Filter = "*.txt";         // Add event handlers.         watcher.Changed += new FileSystemEventHandler(OnChanged);         watcher.Created += new FileSystemEventHandler(OnChanged);         watcher.Deleted += new FileSystemEventHandler(OnChanged);         watcher.Renamed += new RenamedEventHandler(OnRenamed);         // Begin watching.         watcher.EnableRaisingEvents = true;         // Wait for the user to quit the program.         Console.WriteLine("Press \'q\' to quit the sample.");         while(Console.Read()!='q');     }     // Define the event handlers.     private static void OnChanged(object source, FileSystemEventArgs e)     {         // Specify what is done when a file is changed, created, or deleted.        Console.WriteLine("File: " +  e.FullPath + " " + e.ChangeType);     }     private static void OnRenamed(object source, RenamedEventArgs e)     {         // Specify what is done when a file is renamed.         Console.WriteLine("File: {0} renamed to {1}", e.OldFullPath, e.FullPath);     } }

Wiki Page: What is the format of the catalog file that is used by Relativity?

$
0
0
Problem A user is trying to open a Relativity catalog, but is getting format errors within the designer tool. Why is that happening? Resolution As part of the process of creating a Relativity catalog, the file manager needs to be identified. For the majority of cases, this is the RM file handler as the data files are RM files. It is possible to configure Relativity to access MF files, so the file handler needs to be set to the MF file handler. Once the catalog file handler has been set, not only are the data files accessed using the specified file handler, but the catalog is also created using that file handler. This means that if the MF file handler is used, the catalog is created in the Micro Focus format, not in the RM file format. When the catalog is deployed, or the location is moved (eg moved from a development machine to a deployment server), the same version of the file handler needs to be present so that the catalog is correctly accessed. Incident #2827659

Wiki Page: Is RM/COBOL v12.10 supported on Windows 10?

$
0
0
Problem What version of RM/COBOL will work on the new Windows 10 operating system? Resolution Windows 10 is due to be released on 29th of July, and we are currently working on supporting it with the next version of  RM/COBOL. Please note that RM/COBOL v12.10, and prior versions will not support Windows 10, however, the next release of RM/COBOL will be supported on this new version of Windows. Please keep an eye on the RM/COBOL Blog for more information on the release of the RM/COBOL products for Windows 10. Incident # 2829050

Forum Post: RE: using starteam url with stcmd

$
0
0
incidentally, you can pull the password out of -p , by specifying -epwdfile “passwordfilepath” all commands that take -p or -s also take an optional -epwdfile. if you use -epwdfile, then -p reduces to user@host:port/project/view you produce a password file (with a saved password encoded in a private encryption algorithm) using the command store-password –password “password” -epwdfile “passwordFilePath”

Forum Post: Trial License for ServerExpress

$
0
0
Hi. Is it possible to acquire a trial license for ServerExpress running on AIX? THanks

Forum Post: COBCH0852 System error - unexpected error while generating IL code

$
0
0
I ran into this error as I was defining my file. My file has 1435 fields and I got this error right around the 850 feild. If I use just 849 fields defined it works fine. Once I use the 850 field I get the error.  Any suggestions on how I can fix this error and continue on. Thanks Chris

Forum Post: RE: COBCH0852 System error - unexpected error while generating IL code

$
0
0
This sounds like a compiler bug. Could you please open up a support incident with Customer Care and attach an example to the incident so we can test this in-house? What product version are you using?

Forum Post: RE: Trial License for ServerExpress

$
0
0
Hello, I do not believe trial licenses are offered for Server Express. I will email you privately to discuss options for speaking to a Micro Focus Account Manager about your request.

Forum Post: RE: Server Name

$
0
0
Thank you. Implemented and it works.

Forum Post: ACCESS VIOLATION

$
0
0
Thanks for reply,, this error it happened only in one program calls an other 2 programs, the called program reads a record form Indexed file then it called a sub-program which makes some calculations in that record and gets the results back to the called program. I'm in editing phase I tried to animate it, but no progress, because it happens after  reading hundreds of records, I made a manual break point to the certain record no when it stops, but I did  not reach that number because it does't stop on the record number,, I've read a lot in the Web concerning this error, mostly they say the mfc42.dll is corrupted and needs to be reinstalled.  therefore I made a trial installation for Netexpress 5.1 in other machine with a fresh Windows 7 installation, then everything works fine.   in my situation I can't do that because I'm restricted with installed response key for Netexpress. so I thought of an other solution: I copied all the logic for the called program and I put it in the calling program and instead of calling that sub-program I used Perform statement ,, then it works fine. as you know this solution is not always right, 

Forum Post: RE: ACCESS VIOLATION

$
0
0
I would recommend that you either repair or uninstall Net Express from Control Panel and then reinstall it. If you uninstall Net Express you will be prompted to either retain or revoke the license. If you select to retain it then the license will still be installed even after uninstalling Net Express. After reinstalling the product the same license will be used.

Forum Post: Keyword cache update

$
0
0
Hello, i'm using SilkCentral Test Manager 16.0 and Silk4J 16.0 with keywords and i have one problem: every time i save a java class, the keyword cache is updated (eclipse-process: updating keywords cache) and this takes a long time (one minute or more) and my eclipse (kepler 64bit) and all other programs opened on my computer freeze! When cache update is ready i can upload the keyword library to SCTM and this takes only some seconds. Is there any possibility to speed up this process or to start the process of cache updating manually? regards, Harald Hiebl

Forum Post: RE: Add a Configuration to a Configuration Suite

$
0
0
Hi Florian, I´m reading about the configuration page for manual testing. Could you please give an example about "New Configuration", which format that I can use? I configured softwares and hardwares informations otherwise. Thanks so much. Camille

Forum Post: Bug in SP 15.5

$
0
0
Hi All, Recently we migrated from SP 9 to SP 15.5. While using SP 15.5 I have found a bug .  When running a test in an agent machine, if that agent contains a datafile in any location with same name as that of the data file used by the script , the test will be run using the data in the agent machine's local datafile and not the data in the datafile in the controller.   For Eg. I run a test from controller x.x.x.87 .I use a datafile called CreateOrder.csv and it contains 1 , 2 , 3 4 in the first 4 rows. I use agent machine x.x.x.106. The agent , which in turn is also a SP controller for other projects  , contains a different scrupt which also has a datafile called createOrder.csv. THis file contains  7 , 8 , 9 10 in the first 4 rows. Now when I run the test , my script will use 7 , 8 ,9 10 instead of the intended value. This ambiguity is causing a lot of issue in my testing. Any comments/suggestions are welcome Thanks Arka CreateOrder.csv

Hi All,

I am new to silk performer and i am trying to install silk performer 16.0 on my windows 8.1& Lenovo T540p. However it happened to be my system crashing during installation. It is failing at the "Installing Network emulation software" step. Are there any known issues with the silk performer 16.0 with any other softwares that co-exists on my machine. Any reply will be appreciated. Thank you. Sagar

$
0
0
I am new to silk performer and i am trying to install silk performer 16.0 on my windows 8.1& Lenovo T540p. However it happened to be my system crashing during installation. It is failing at the "Installing Network emulation software" step. Are there any known issues with the silk performer 16.0 with any other softwares that co-exists on my machine. Any reply will be appreciated. Thank you. Sagar

Forum Post: RE: Bug in SP 15.5

$
0
0
The issue may be: If a file located in the custom data / data files section, shares the same name as the file in a custom location, then Silk Performer will always use the default folders first when closing and reopening project. This problem is documented within the following kb article: community.microfocus.com/.../19638.custom-data-file-changes-after-re-opening-silkperformer-project.aspx

Forum Post: access violation

$
0
0
Kindly would you tell me how to do the repair ?? is the  uninstall  ((uninstall  programs  in Control panel)) ??. what  about If I do reinstalling of Windows 7?? as far as MFC42.dll is a part of Windows OS
Viewing all 44947 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>