Re: Mid-Tier 7.5 Problems

2010-07-30 Thread cpgold
We see these errors on 5.5.20 Tomcat (Solaris 9) on QST. A full restart of Tomcat was required. I haven't seen these errors on Development with Tomcat 6.0.28 (Solaris 9) --Chuck On Tue, Jul 27, 2010 at 10:42 AM, Axton wrote: > ** Unfortunately, bypassing Apache altogether is not an option as ou

MT 7.1 and AR Server 7.0

2010-05-26 Thread cpgold
Is it OK to Run MidTier version 7.1 against an AR System 7.0 server? Want to know if anyone has experienced any issues with this configuration. Thanks ___ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org attend

Re: Escalation refuses to run

2010-05-25 Thread cpgold
Copy this escalation to a new escalation and rename it without the underscore _, disable the original. On Tue, May 25, 2010 at 9:52 AM, William Rentfrow < wrentf...@stratacominc.com> wrote: > ** > I'm baffled. Tech support at BMC seems baffled as well. > > The OOB escalation for SLM is named >

Re: RKM/Tomcat Issue

2010-05-25 Thread cpgold
The only thing I can think of is that its interpreting the \u as and escape character. I am not too familiar with RKM , can you use forward slashes / instead? On Tue, May 25, 2010 at 10:20 AM, Kevin Begosh wrote: > ** > So I found another RKM/Tomcat issue when working in a decision tree > tem

Re: User gets a blank screen while accessing Atrium Core Console 7.6 through Mid-Tier 7.5 patch4

2010-05-25 Thread cpgold
Upgrade to Patch5 if you can. On Mon, May 24, 2010 at 12:43 PM, Bilinski, John CTR WHS/ITMD/ASD < john.bilinski@whs.mil> wrote: > ** > > Listers: > > I am receiving a Blank (or grey) screen when trying to access the Atrium > CMDB Console v7.6p1 through Mid-Tier patch 4? > > The problem seems

Re: Benefit of Prefetch Remedy midtier 7.1

2010-04-15 Thread cpgold
You are right, no way that the midTier stores prefetch items on the client computer. Unless you acknowledged security bypass for your browser Prefetch runs as an assumed user login. So if you setup Prefetch as Joe User, all the views, code, and fields that Joe User sees will load as prefetched. If

Re: ARX Files from MidTier

2010-04-15 Thread cpgold
Have you tried using a different browser? On Wed, Apr 14, 2010 at 10:39 AM, Joe D'Souza wrote: > ** > Lisa, > > I highly doubt there is a limit like that.. Check your web server log files > to see if there is a web server level error that was reported at that time. > I'm inclined to think you mi

Re: Extracting digits from a character field

2010-04-15 Thread cpgold
You see a view field can run javascript and send events back to the parent, whether web or user. in this case you use the javascript REGEXP. On Thu, Apr 15, 2010 at 5:40 PM, cpgold wrote: > Its what I use to dynamicall format phone numbers on the fly. > > > On Thu, Apr 15, 201

Re: Extracting digits from a character field

2010-04-15 Thread cpgold
Its what I use to dynamicall format phone numbers on the fly. On Thu, Apr 15, 2010 at 5:39 PM, cpgold wrote: > If it is an active link, I have a View field javascript event solution... > > > On Thu, Apr 15, 2010 at 5:39 PM, cpgold wrote: > >> Does it have to be a filter, a

Re: Extracting digits from a character field

2010-04-15 Thread cpgold
If it is an active link, I have a View field javascript event solution... On Thu, Apr 15, 2010 at 5:39 PM, cpgold wrote: > Does it have to be a filter, an active link is much better suited for this > type of processing than to let the server handle it. > > > On Wed, Apr 14, 2010

Re: Extracting digits from a character field

2010-04-15 Thread cpgold
Does it have to be a filter, an active link is much better suited for this type of processing than to let the server handle it. On Wed, Apr 14, 2010 at 1:58 PM, Joe D'Souza wrote: > I do not have access to an Oracle instance at the moment to try it, but I'm > quite sure that > > update tablename

Re: Incoming mail message error

2010-04-15 Thread cpgold
BASE64DecoderStream is used for attachments, maybe an attachment you are sending is corrupt? On Thu, Apr 15, 2010 at 7:36 AM, Rogerio Aguiar wrote: > ** > > Hi all, > > We are getting an error when receiving incoming mail messages: > > Error in encoded stream: needed at least 2 valid base64 char

Re: TR vs DB sanity check please

2010-04-15 Thread cpgold
Now if you only want to fire on a change in value not when a value goes from Null to being filled in then its 'AssignedToTech' != 'DB.AssignedToTech' AND 'DB.AssignedToTech' != $NULL$ On Thu, Apr 15, 2010 at 5:26 PM, cpgold wrote: > NOTE Listers: > > '

Re: TR vs DB sanity check please

2010-04-15 Thread cpgold
NOTE Listers: 'AssignedToTech' != 'DB.AssignedToTech' is equal to 'TR.AssignedToTech' != 'DB.AssignedToTech' and 'TR.AssignedToTech' != $NULL$ this qual 'AssignedToTech' != 'DB.AssignedToTech' AND 'TR.AssignedToTech' != $NULL$ is redundant. On Thu, Apr 15, 2010 at 12:02 PM, Tanner, Doug wrote:

Re: how to use web service client to upload an attachement in filter's set fields action

2010-04-10 Thread cpgold
Just Map Your Attachment field to the the field in the WS as described by the WSDL. Its graphically driven. IF you can't match input and output it means the data types are incompatible. If you hover your mouse over a attachment field in WS def. it says dataType:base64binary. On Sat, Apr 10, 201