Re: What am I doing wrong? arimportcmd.exe fails from a filter and command line

2010-09-08 Thread Calman Steynberg
Ibrahim, the reason your original command did not work was because you used a lower case -m. In your snippet below you changed it to -M which is why it now works. -m and -M are mutually exclusive. (I believe there is a note stating this in the documentation somewhere) -m denotes the mappi

Re: Java API for ARS - How to obtain a Run-If line from an Active Link (for example)

2009-10-28 Thread Calman Steynberg
To get a human readable string for a QualifierInfo object use ARServerUser.formatQualification(); >From the JavaDocs for the method: Stringcom.bmc.arsys.api. ARServerUser .formatQualification(Stringform, Objectqualification) throws ARException Formats an internal representation of a qualifier to

Re: DataImport JavaDoc

2009-07-09 Thread Calman Steynberg
object, but when I call the startImport method it > bypasses all of the work I have done, starts its own ARXImporter object, > redoes all of my work, but uses ALL of the fields instead of just the ones > I'm trying to get it to use. This is where I'm stuck. > > -

Re: DataImport JavaDoc

2009-07-08 Thread Calman Steynberg
Ok, before I start this here is the fine print: All of the information contained here is completely utterly unsupported. Using this information indicates that you've read the rules, regulations and limitations and general information that has been on display in the basement of the local planning

Re: Capture Client Version

2009-04-24 Thread Calman Steynberg
Roger, Turn on API logging on the server. It includes the user name, IP address and protocol version of the client that is connecting to the server. This is from a 6.3 driver (protocol 11): /* Fri Apr 24 2009 16:43:59.2250 */+VERARVerifyUser -- user Demo from Unidentified Client (proto

Re: Developer Studio 7.5 - Layout Question

2009-03-09 Thread Calman Steynberg
Trevor, Developer Studio introduced enhanced functionality when dealing with the vertical alignment of fields to a grid. In Developer Studio, the developer can choose to align fields on their top or bottom edge, or not to use vertical alignment at all. From your description of the behaviour

Re: Remedy Deve3loper Studio 7.5???

2009-02-09 Thread Calman Steynberg
** David, Here are some examples on how to do some of the things you want. See my comments below. Calman David Sanders wrote: So have you tried to use it LJ? Take something simple... I have a form, let's say Form-1. How do I list all the active links or filters linked to that form? If

Re: Remedy Java API: UnsatisfiedLinkError: com.bmc.arsys.api.Proxy.ARInitialization()J

2009-01-22 Thread Calman Steynberg
This is caused by not having the native libraries on your path. When the JVM can't find native libraries you get java.lang.UnsatisfiedLinkError. Make sure that the following DLL's are in your $PATH if you are using windows: arapi71.dll arjni71.dll arrpc71.dll arutl71.dll arutljni71.dll icudt3

Re: Upgrade to 7.1 user tool question...

2008-11-05 Thread Calman Steynberg
Richard, you might also consider convincing your users to use a preference server. From then on forward all their settings would be stored on the server, which means that this would not be a concern moving forward. Additionally, they would have access to them even when they log into some oth

Re: Pure Java 7.1 API: Am I missing something?

2008-01-31 Thread Calman Steynberg
Hugo, you're not doing anything wrong. The 7.1 API still requires some JNI code, so what you are seeing is expected. Calman Hugo Visser wrote: ** Hi, Can anybody confirm that they are using the 7.1 API (released, not beta version) in a pure Java way, without any use of the .dlls (for exam

Re: Java API Display Property Keys

2007-11-26 Thread Calman Steynberg
Trond, Take a look at the JavaDoc for com.bmc.arsys.api.Constants. Virtually everything has a short explanation that explains it's usage. Calman Trond Valen wrote: ** Is there a way to find out what the keys used in DisplayPropertyMap stand for, without guessing? __20060125__