Re: [Arsperl-users] arsperl 1.92 and ars 7.5 64bit

2011-03-18 Thread Misi Mladoniczky
Any luck with this?

I am trying to compile on linux with ARAPI 7.6.3.

To get it to compile I changed the Makefile to include the libicu*bmc
libraries.

EXTRALIBS = -L/home/share/ars/api/api763linux/bin -lnsl
LDLOADLIBS = -L/home/share/ars/api/api763linux/bin -lnsl -lpthread
-licuucbmc_lx64 -licui18nbmc_lx64 -licudatabmc_lx64

The output from make test is:
t/00connect.t ... *** glibc detected *** /usr/bin/perl: double
free or corruption (fasttop): 0x024138d0 ***

Any ideas on how to get forward here?

 Best Regards - Misi, RRR AB, http://rrr.se/sv/

 Hi there,
 I'm trying to get arsperl 1.92 work with ARS 7.5 64-bit(lx64) libraries,
 but
 when I run make test, I am getting the following error:

 PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e
 test_harness(0, 'blib/lib', 'blib/arch') t/*.t
 t/00connect.t ... *** glibc detected *** /usr/bin/perl: double
 free
 or corruption (fasttop): 0x018dbbe0 ***

 And the test just hangs there. I have to ctrl-c to come out.

 Running it under gdb, it seems like there's a bug in the code(?) that does
 a
 double free or something? Here's a partial backtrace from gdb:
 *#16 0x7ff6222bd5b6 in malloc_printerr (action=3, str=0x7ff622390c70
 double free or corruption (fasttop), ptr=value optimized out) at
 malloc.c:6266*
 *#17 0x7ff6222c3e83 in __libc_free (mem=value optimized out) at
 malloc.c:3738*
 *#18 0x7ff621c8e933 in slt_free () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#19 0x7ff621b7bf29 in ClientConnToPort () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#20 0x7ff621b5c573 in IssueRPCToARServer () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#21 0x7ff621b5c0c4 in ARRPCCallServer () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#22 0x7ff621b803d9 in ARGetEncryptInfo () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#23 0x7ff621b7e754 in ARKeyExchangeHandler () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#24 0x7ff621b7e591 in ARKeyExchange () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#25 0x7ff621b60881 in ARLoadRPCControlStruct1 () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#26 0x7ff621b6024d in ARLoadRPCControlStruct () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#27 0x7ff621b713ef in ARVerifyUser () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#28 0x7ff621b12a74 in XS_ARS_ars_Login (my_perl=value optimized
 out,
 cv=value optimized out) at ARS.xs:426*

 It's the same result with or without -malign_double option. The
 architecture
 is lx64 and the linking was done as so:
 LD_RUN_PATH=/usr/ar/7.5/api/lib cc  -shared -O2 -g -L/usr/local/lib
 -fstack-protector ARS.o support.o supportrev.o supportrev_generated.o   -o
 blib/arch/auto/ARS/ARS.so /usr/ar/7.5/api/lib/libar_lx64.a \
-L/usr/ar/7.5/api/lib -lnsl -lpthread -licuucbmc_lx64 -licui18nbmc_lx64
 -licudatabmc_lx64

 Has anyone got arsperl1.92 work with 64-bit perl and 64-bit 7.5 ar libs on
 Linux? Any pointers/suggestions will be highly appreciated!

 --
 ~H
 http://www.harishkotha.com
 --
 Free Software Download: Index, Search  Analyze Logs and other IT data in
 Real-Time with Splunk. Collect, index and harness all the fast moving IT
 data
 generated by your applications, servers and devices whether physical,
 virtual
 or in the cloud. Deliver compliance at lower cost and gain new business
 insights. http://p.sf.net/sfu/splunk-dev2dev

 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.92 and ars 7.5 64bit

2011-03-18 Thread Lamy, Thomas
There is no support for 64-bit. I installed ARSperl-1.91 on 64-bit RHEL 5.6. 
Here is how I did it:

I am running ARS 7.6.3, so I had to install ARS 7.1 on the 64-bit machine.
I built as 32-bit Perl interpreter on Fedora Core 13 and copied it to the 
64-bit machine.
I unpacked ARSperl-1.91 and modified $ARSAPI in the Makefile.PL to point to the 
7.1 API. 
ARSperl-1.91 already has $ARSVERSION = 7.1; No need to change this.
I compiled Makefile.PL with the 32-bit interpreter:

% perl Makefile.PL

Next I added the -m32 switch to the following flags in the Makefile created by 
the previous command: (This information was provided by Steve Kallestad of 
Ingenuity Professional Services.)

CCCDLFLAGS = -fPIC -m32
CCDLFLAGS = -Wl,-E -m32
LDDLFLAGS = -shared -O2 -L/usr/local/lib -fstack-protector -m32
LDFLAGS =  -fstack-protector -L/usr/local/lib -m32

I compiled and installed ARSperl with the following normal commands:

% make
% make install

-Original Message-
From: Misi Mladoniczky [mailto:m...@rrr.se] 
Sent: Friday, March 18, 2011 3:59 AM
To: ARSperl User Discussion
Subject: Re: [Arsperl-users] arsperl 1.92 and ars 7.5 64bit

Any luck with this?

I am trying to compile on linux with ARAPI 7.6.3.

To get it to compile I changed the Makefile to include the libicu*bmc libraries.

EXTRALIBS = -L/home/share/ars/api/api763linux/bin -lnsl LDLOADLIBS = 
-L/home/share/ars/api/api763linux/bin -lnsl -lpthread
-licuucbmc_lx64 -licui18nbmc_lx64 -licudatabmc_lx64

The output from make test is:
t/00connect.t ... *** glibc detected *** /usr/bin/perl: double free or 
corruption (fasttop): 0x024138d0 ***

Any ideas on how to get forward here?

 Best Regards - Misi, RRR AB, http://rrr.se/sv/

 Hi there,
 I'm trying to get arsperl 1.92 work with ARS 7.5 64-bit(lx64) 
 libraries, but when I run make test, I am getting the following error:

 PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e
 test_harness(0, 'blib/lib', 'blib/arch') t/*.t t/00connect.t 
 ... *** glibc detected *** /usr/bin/perl: double free or 
 corruption (fasttop): 0x018dbbe0 ***

 And the test just hangs there. I have to ctrl-c to come out.

 Running it under gdb, it seems like there's a bug in the code(?) that 
 does a double free or something? Here's a partial backtrace from gdb:
 *#16 0x7ff6222bd5b6 in malloc_printerr (action=3, 
 str=0x7ff622390c70 double free or corruption (fasttop), ptr=value 
 optimized out) at
 malloc.c:6266*
 *#17 0x7ff6222c3e83 in __libc_free (mem=value optimized out) at
 malloc.c:3738*
 *#18 0x7ff621c8e933 in slt_free () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#19 0x7ff621b7bf29 in ClientConnToPort () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#20 0x7ff621b5c573 in IssueRPCToARServer () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#21 0x7ff621b5c0c4 in ARRPCCallServer () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#22 0x7ff621b803d9 in ARGetEncryptInfo () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#23 0x7ff621b7e754 in ARKeyExchangeHandler () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#24 0x7ff621b7e591 in ARKeyExchange () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#25 0x7ff621b60881 in ARLoadRPCControlStruct1 () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#26 0x7ff621b6024d in ARLoadRPCControlStruct () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#27 0x7ff621b713ef in ARVerifyUser () from
 /usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
 *#28 0x7ff621b12a74 in XS_ARS_ars_Login (my_perl=value optimized
 out,
 cv=value optimized out) at ARS.xs:426*

 It's the same result with or without -malign_double option. The 
 architecture is lx64 and the linking was done as so:
 LD_RUN_PATH=/usr/ar/7.5/api/lib cc  -shared -O2 -g -L/usr/local/lib
 -fstack-protector ARS.o support.o supportrev.o supportrev_generated.o   -o
 blib/arch/auto/ARS/ARS.so /usr/ar/7.5/api/lib/libar_lx64.a \
-L/usr/ar/7.5/api/lib -lnsl -lpthread -licuucbmc_lx64 
 -licui18nbmc_lx64
 -licudatabmc_lx64

 Has anyone got arsperl1.92 work with 64-bit perl and 64-bit 7.5 ar 
 libs on Linux? Any pointers/suggestions will be highly appreciated!

 --
 ~H
 http://www.harishkotha.com
 --
  Free Software Download: Index, Search  Analyze Logs and 
 other IT data in Real-Time with Splunk. Collect, index and harness all 
 the fast moving IT data generated by your applications, servers and 
 devices whether physical, virtual or in the cloud. Deliver compliance 
 at lower cost and gain new business insights. 
 http://p.sf.net/sfu/splunk-dev2dev

 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit

[Arsperl-users] arsperl 1.92 and ars 7.5 64bit

2011-02-25 Thread _HK_
Hi there,
I'm trying to get arsperl 1.92 work with ARS 7.5 64-bit(lx64) libraries, but
when I run make test, I am getting the following error:

PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e
test_harness(0, 'blib/lib', 'blib/arch') t/*.t
t/00connect.t ... *** glibc detected *** /usr/bin/perl: double free
or corruption (fasttop): 0x018dbbe0 ***

And the test just hangs there. I have to ctrl-c to come out.

Running it under gdb, it seems like there's a bug in the code(?) that does a
double free or something? Here's a partial backtrace from gdb:
*#16 0x7ff6222bd5b6 in malloc_printerr (action=3, str=0x7ff622390c70
double free or corruption (fasttop), ptr=value optimized out) at
malloc.c:6266*
*#17 0x7ff6222c3e83 in __libc_free (mem=value optimized out) at
malloc.c:3738*
*#18 0x7ff621c8e933 in slt_free () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#19 0x7ff621b7bf29 in ClientConnToPort () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#20 0x7ff621b5c573 in IssueRPCToARServer () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#21 0x7ff621b5c0c4 in ARRPCCallServer () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#22 0x7ff621b803d9 in ARGetEncryptInfo () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#23 0x7ff621b7e754 in ARKeyExchangeHandler () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#24 0x7ff621b7e591 in ARKeyExchange () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#25 0x7ff621b60881 in ARLoadRPCControlStruct1 () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#26 0x7ff621b6024d in ARLoadRPCControlStruct () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#27 0x7ff621b713ef in ARVerifyUser () from
/usr/local/lib/perl/5.10.1/auto/ARS/ARS.so*
*#28 0x7ff621b12a74 in XS_ARS_ars_Login (my_perl=value optimized out,
cv=value optimized out) at ARS.xs:426*

It's the same result with or without -malign_double option. The architecture
is lx64 and the linking was done as so:
LD_RUN_PATH=/usr/ar/7.5/api/lib cc  -shared -O2 -g -L/usr/local/lib
-fstack-protector ARS.o support.o supportrev.o supportrev_generated.o   -o
blib/arch/auto/ARS/ARS.so /usr/ar/7.5/api/lib/libar_lx64.a \
   -L/usr/ar/7.5/api/lib -lnsl -lpthread -licuucbmc_lx64 -licui18nbmc_lx64
-licudatabmc_lx64

Has anyone got arsperl1.92 work with 64-bit perl and 64-bit 7.5 ar libs on
Linux? Any pointers/suggestions will be highly appreciated!

-- 
~H
http://www.harishkotha.com
--
Free Software Download: Index, Search  Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSperl 1.91 on RHEL 5

2011-02-04 Thread Lamy, Thomas
Has anyone compiled and installed ARSperl 1.91 on 64-bit RHEL 5?  I’ve tried 
every way I know how.  “perl Makefile.PL” is crashing.  I am using a 32 bit 
Perl interpreter.

Thank you,

Tom Lamy
UNH Information Technologyhttp://it.unh.edu/
1 Leavitt Lane
Durham, NH 03824
603-862-0723


--
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 on RHEL 5

2011-02-04 Thread Eric Wolf
Yeah, I did it the other day.  I am on a RHEL 5.4 64 bit box. You have to
have the 32 bit API from a pre-7.5 release.  Any specific crash messages?

On Fri, Feb 4, 2011 at 4:34 PM, Lamy, Thomas tom.l...@unh.edu wrote:

 Has anyone compiled and installed ARSperl 1.91 on 64-bit RHEL 5?  I’ve
 tried every way I know how.  “perl Makefile.PL” is crashing.  I am using a
 32 bit Perl interpreter.

 Thank you,

 Tom Lamy
 UNH Information Technologyhttp://it.unh.edu/
 1 Leavitt Lane
 Durham, NH 03824
 603-862-0723



 --
 The modern datacenter depends on network connectivity to access resources
 and provide services. The best practices for maximizing a physical server's
 connectivity to a physical network are well understood - see how these
 rules translate into the virtual world?
 http://p.sf.net/sfu/oracle-sfdevnlfb


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




-- 
Eric Wolf
http://www.n5ebw.com The Ramblings of a Crazy Man
We must free ourselves of the hope that the sea will ever rest. We must
learn to sail in high winds. --Aristotle Onassis
--
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 on RHEL 5

2011-02-04 Thread Tim Skirvin
Lamy, Thomas tom.l...@unh.edu writes:

 Has anyone compiled and installed ARSperl 1.91 on 64-bit RHEL 5?  I’ve
 tried every way I know how. “perl Makefile.PL” is crashing.  I am
 using a 32 bit Perl interpreter.

64-bit isn't supported well enough to be worth trying yet.  

- Tim Skirvin (tskir...@stanford.edu)
-- 
  Senior Unix Systems Administrator http://www.stanford.edu/~tskirvin/
ITS Computing Services - Sysadmin Team Stanford University


signature.asc
Description: Digital signature
--
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 on RHEL 5

2011-02-04 Thread Eric Wolf
If you have a 32 bit perl interpreter, a 64 bit OS shouldn't be an issue,
supported or not.

On Fri, Feb 4, 2011 at 5:03 PM, Tim Skirvin tskir...@stanford.edu wrote:

 Lamy, Thomas tom.l...@unh.edu writes:

  Has anyone compiled and installed ARSperl 1.91 on 64-bit RHEL 5?  I’ve
  tried every way I know how. “perl Makefile.PL” is crashing.  I am
  using a 32 bit Perl interpreter.

 64-bit isn't supported well enough to be worth trying yet.

- Tim Skirvin (tskir...@stanford.edu)
 --
  Senior Unix Systems Administrator 
 http://www.stanford.edu/~tskirvin/http://www.stanford.edu/%7Etskirvin/
 ITS Computing Services - Sysadmin Team Stanford University

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)

 iD8DBQFNTIXekw7FUwwu4h0RAtrWAJ9Cmubu8Nl4boYDCcY2ZYxD1TzCHwCgh8P/
 17yi/ZQYVEX2TlNziP62e+Q=
 =yovj
 -END PGP SIGNATURE-


 --
 The modern datacenter depends on network connectivity to access resources
 and provide services. The best practices for maximizing a physical server's
 connectivity to a physical network are well understood - see how these
 rules translate into the virtual world?
 http://p.sf.net/sfu/oracle-sfdevnlfb


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




-- 
Eric Wolf
http://www.n5ebw.com The Ramblings of a Crazy Man
We must free ourselves of the hope that the sea will ever rest. We must
learn to sail in high winds. --Aristotle Onassis
--
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSperl script in crontab

2010-07-08 Thread Piotr Szlązak
Hi!
I'm want to create script for report generation. Script should be
executed by crontab.
This is a bash script which executes Perl script which is using
ARSperl. Then bash script sends Perl script output via email.

When this bash script is executed directly from CLI it runs fine. When
executed via crontab - every time it ends with segmentation fault.
Also Perl script executed via crontab ends without any error.
After some checks I found out that it is enough to use ars_Login
subroutine to get this error.

Basic script:
 cat ARSperl-script.pl
#!/usr/bin/perl

use strict;
use ARS;
my $server = 'server.address.com';
my $user = 'username';
my $pass = 'password';

#Logging in to the server
( my $ctrl = ars_Login( $server, $user, $pass ,'', '', 2121, '' ) )
|| die ars_Login failed: $ars_errstr;
print Connected...\n;

ars_Logoff($ctrl);

Bash script which is executed via crontab:
 cat ARSperl-report.sh
#!/bin/bash

/full/path/to/script/ARSperl-script.pl  /dev/null 21

I checked that Perl script gathers needed data and gives proper
output. But I'm always receiving similar mail from Cron daemon:
/full/path/to/script/ARSperl-report.sh: line 3:  3599 Segmentation
fault  /full/path/to/script/ARSperl-script.pl  /dev/null 21

Exit code for this Perl script execution is 139. But as I mentioned -
only when bash script is executed via crontab.

I need to have clean exit code, because after Perl script call, I'm
making decision what should be sent - Perl script output or only
warning about problems.

Can somebody check if same problem occurs on its platform? Maybe
somebody knows how to solve this problem?

Perl version: 5.10.1
ARSperl version: 1.91
ARS API version 13
OS: Debian Linux

--
petee

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl with

2010-05-21 Thread Thilo Stapff
I have not tested it yet, but I see no reason why it shouldn't be possible.

Having said that, there's no package avaible that is binary compatible 
to Perl 5.12, so you would have to compile it yourself.


Best regards,
Thilo Stapff




On 20.05.2010 20:50, Chinh Do wrote:
 Can I use ARSPerl 1.91 with ActivePerl 5.12.1?  I heard that I can use
 ARSPerl 1.91 with ActivePerl 5.8 only.
 Thank you,
 Jimmy Do



 --






 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl with

2010-05-21 Thread Fred Bennett
I use ARSperl-1.91 with Active State 5.12.1 using the 6.3 libraries without any 
issue on a Windows 2003 server - if that helps.

-Fred Bennett
 

- Original Message -
From: Thilo Stapff thilo.sta...@apprologic.de
To: ARSperl User Discussion arsperl-users@arsperl.org
Sent: Fri May 21 06:22:45 2010
Subject: Re: [Arsperl-users] ARSPerl with

I have not tested it yet, but I see no reason why it shouldn't be possible.

Having said that, there's no package avaible that is binary compatible 
to Perl 5.12, so you would have to compile it yourself.


Best regards,
Thilo Stapff




On 20.05.2010 20:50, Chinh Do wrote:
 Can I use ARSPerl 1.91 with ActivePerl 5.12.1?  I heard that I can use
 ARSPerl 1.91 with ActivePerl 5.8 only.
 Thank you,
 Jimmy Do



 --






 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl with

2010-05-21 Thread Chinh Do
Thank you, that helps; I'll try again.
 
Jimmy Do. 

--- On Fri, 5/21/10, Fred Bennett fbenn...@bellind.com wrote:


From: Fred Bennett fbenn...@bellind.com
Subject: Re: [Arsperl-users] ARSPerl with
To: arsperl-users@arsperl.org
Date: Friday, May 21, 2010, 7:51 AM


I use ARSperl-1.91 with Active State 5.12.1 using the 6.3 libraries without any 
issue on a Windows 2003 server - if that helps.

-Fred Bennett


- Original Message -
From: Thilo Stapff thilo.sta...@apprologic.de
To: ARSperl User Discussion arsperl-users@arsperl.org
Sent: Fri May 21 06:22:45 2010
Subject: Re: [Arsperl-users] ARSPerl with

I have not tested it yet, but I see no reason why it shouldn't be possible.

Having said that, there's no package avaible that is binary compatible 
to Perl 5.12, so you would have to compile it yourself.


Best regards,
Thilo Stapff




On 20.05.2010 20:50, Chinh Do wrote:
 Can I use ARSPerl 1.91 with ActivePerl 5.12.1?  I heard that I can use
 ARSPerl 1.91 with ActivePerl 5.8 only.
 Thank you,
 Jimmy Do



 --






 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users
--



--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl with ARS 7.5 running on 64bit

2010-02-08 Thread Conny.Martin
Hi Sean,
 
IMHO there should be no problem connecting with a 6.3 Api client to a
7.5 server.
Give it a try.
 
Kind Regards Conny
 


Von: Sean Harrodine [mailto:sean_rem...@yahoo.co.uk] 
Gesendet: Montag, 8. Februar 2010 17:20
An: arsperl-users@arsperl.org
Betreff: [Arsperl-users] ARSperl with ARS 7.5 running on 64bit


Hi everyone,
 
I know from reading that at present, ARSPerl wont work with 7.5 but can
anyone guide me on the following please.
 
I currently have some ARSPerl scripts running against my 6.3 server but
i need to get them running against our new 7.5 server ASAP with only a
few tweaks to field-ids.
 
The scripts only use CreateEntry, SetEntry and GetEntry so none of the
7.5 specific facilities
 
Can anyone advise me please if there is an easy way to get them to work
and if so, how ?
 
Many thanks,
Sean

--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl with ARS 7.5 running on 64bit

2010-02-08 Thread Jarl Grøneng
Keep the libraries from 6.3 and you will be fine connecting to a 7.5 server.

Regards,
Jarl

2010/2/8 Sean Harrodine sean_rem...@yahoo.co.uk:
 Hi everyone,

 I know from reading that at present, ARSPerl wont work with 7.5 but can
 anyone guide me on the following please.

 I currently have some ARSPerl scripts running against my 6.3 server but i
 need to get them running against our new 7.5 server ASAP with only a few
 tweaks to field-ids.

 The scripts only use CreateEntry, SetEntry and GetEntry so none of the 7.5
 specific facilities

 Can anyone advise me please if there is an easy way to get them to work and
 if so, how ?

 Many thanks,
 Sean

 --
 The Planet: dedicated and managed hosting, cloud storage, colocation
 Stay online with enterprise data centers and the best network in the
 business
 Choose flexible plans and management services without long-term contracts
 Personal 24x7 support from experience hosting pros just a phone call away.
 http://p.sf.net/sfu/theplanet-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users



--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl with ARS 7.5 running on 64bit

2010-02-08 Thread Jarl Grøneng
On windows these files:
arapi63.dll
arrpc63.dll
arutl63.dll (it may be some more of them)

On Solaris keep the a libar.so file.

--
Jarl

2010/2/8 Sean Harrodine sean_rem...@yahoo.co.uk:
 Hi Jarl / Connie,

 Thanks for your replies.
 When you say keep the libraries, can you confirm which libraries you are
 referring too please ?

 Basically, what i have is inbound data currently coming into my 6.3 system
 from some external sources that i parse and then my perl/ARSperl script
 pushes it into forms.

 In a few weeks time, ITSM (incident and problem) is being deployed on a
 totally seperate server but the 6.3 will remain for some time but we need to
 keep these feeds running and push the data into the new incident and problem
 forms on the 7.5 server.

 So, presumably then i could still send the data into the 6.3 server but get
 it to log on to the 7.5 server instead to do the create / set etc and the
 ars_errstr will still be returned to the 6.3 server ???
 If so then its not ideal, but gets me out of a hole for a time ! :o)

 TIA,
 Sean

 
 From: Jarl Grøneng jarl.gron...@gmail.com
 To: ARSperl User Discussion arsperl-users@arsperl.org
 Sent: Mon, 8 February, 2010 16:49:27
 Subject: Re: [Arsperl-users] ARSperl with ARS 7.5 running on 64bit

 Keep the libraries from 6.3 and you will be fine connecting to a 7.5 server.

 Regards,
 Jarl

 2010/2/8 Sean Harrodine sean_rem...@yahoo.co.uk:
 Hi everyone,

 I know from reading that at present, ARSPerl wont work with 7.5 but can
 anyone guide me on the following please.

 I currently have some ARSPerl scripts running against my 6.3 server but i
 need to get them running against our new 7.5 server ASAP with only a few
 tweaks to field-ids.

 The scripts only use CreateEntry, SetEntry and GetEntry so none of the 7.5
 specific facilities

 Can anyone advise me please if there is an easy way to get them to
 work and
 if so, how ?

 Many thanks,
 Sean


 --
 The Planet: dedicated and managed hosting, cloud storage, colocation
 Stay online with enterprise data centers and the best network in the
 business
 Choose flexible plans and management services without long-term contracts
 Personal 24x7 support from experience hosting pros just a phone call away.
 http://p.sf.net/sfu/theplanet-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users



 --
 The Planet: dedicated and managed hosting, cloud storage, colocation
 Stay online with enterprise data centers and the best network in the
 business
 Choose flexible plans and management services without long-term contracts
 Personal 24x7 support from experience hosting pros just a phone call away.
 http://p.sf.net/sfu/theplanet-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


 --
 The Planet: dedicated and managed hosting, cloud storage, colocation
 Stay online with enterprise data centers and the best network in the
 business
 Choose flexible plans and management services without long-term contracts
 Personal 24x7 support from experience hosting pros just a phone call away.
 http://p.sf.net/sfu/theplanet-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users



--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 x86_64 7.5

2009-12-08 Thread Wes Young

awesome. Thanks!

On Dec 8, 2009, at 10:12 AM, Thilo Stapff wrote:


totally non-working binary


--
Wes
http://claimid.com/wesyoung



smime.p7s
Description: S/MIME cryptographic signature
--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] arsperl 1.91 x86_64 7.5

2009-12-07 Thread Wes Young
I know this topic has come up a few times; but where does 1.91-HEAD  
stand wrt supporting x86_64 ?


i know some of the work-around's are to compile perl32, etc. Just  
curious if it's even possible with the 7.5 api. So far i've gotten to  
(with the HEAD 1.92 and 7.5):


# perl -e 'use ARS'
Can't load '/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/ 
auto/ARS/ARS.so' for module ARS: /usr/lib64/perl5/site_perl/5.8.8/ 
x86_64-linux-thread-multi/auto/ARS/ARS.so: undefined symbol:  
u_toupper_3_2 at /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/ 
DynaLoader.pm line 230.

 at -e line 1
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

Just wondering if it's one of those never gonna happen; or soon.

--
Wes
http://claimid.com/wesyoung



smime.p7s
Description: S/MIME cryptographic signature
--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl in ARS 7.5

2009-11-19 Thread Karlo Parulan
Hi all,

 

We have a customer that wants to continue to use their ARSPerl 1.91 code
in an ARS 7.5 environment.  First and foremost, is it compatible?

 

Has anyone performed a migration of ARSPerl to the current version of
ARS and what steps were performed to continue to use the ARSPerl
functionality in the ARS 7.5 environment?

 

Your help is much appreciated.

 

Thanks in advance,

Karlo Parulan



 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl installation on Linux: undefined symbol:ucnv_open_3_2

2009-05-29 Thread Conny.Martin
Sree,
 
your'e missing some libraries. 
 
Note (probably harmless): No library found for -licuucbmc
Note (probably harmless): No library found for -licui18nbmc
 
You should also append -licudatabmc to $ARS_LIBS
 
These 3 libs must exist in /x/home/soggu/ARS/lib
 
arad...@affhc151:/apps/ars/ars710p2/api/lib ll libicu*
lrwxrwxrwx 1 aradmin ars  19 2008-05-06 13:31 libicudatabmc.so -
libicudatabmc.so.32
lrwxrwxrwx 1 aradmin ars  21 2008-05-06 13:31 libicudatabmc.so.32 -
libicudatabmc.so.32.0
-rwxr-xr-x 1 aradmin ars 9802163 2007-10-22 20:08 libicudatabmc.so.32.0
lrwxrwxrwx 1 aradmin ars  19 2008-05-06 13:31 libicui18nbmc.so -
libicui18nbmc.so.32
lrwxrwxrwx 1 aradmin ars  21 2008-05-06 13:31 libicui18nbmc.so.32 -
libicui18nbmc.so.32.0
-rwxr-xr-x 1 aradmin ars 1255872 2006-08-24 21:39 libicui18nbmc.so.32.0
lrwxrwxrwx 1 aradmin ars  17 2008-05-06 13:31 libicuiobmc.so -
libicuiobmc.so.32
lrwxrwxrwx 1 aradmin ars  19 2008-05-06 13:31 libicuiobmc.so.32 -
libicuiobmc.so.32.0
-rwxr-xr-x 1 aradmin ars   45645 2006-08-24 21:39 libicuiobmc.so.32.0
lrwxrwxrwx 1 aradmin ars  17 2008-05-06 13:31 libicuucbmc.so -
libicuucbmc.so.32
lrwxrwxrwx 1 aradmin ars  19 2008-05-06 13:31 libicuucbmc.so.32 -
libicuucbmc.so.32.0
-rwxr-xr-x 1 aradmin ars  935836 2006-08-24 21:39 libicuucbmc.so.32.0

 
Kind Regards Conny



Von: Oggu, Sree [mailto:so...@paypal.com] 
Gesendet: Freitag, 29. Mai 2009 01:12
An: arsperl-users@arsperl.org
Cc: Devarasu, Ragu; Voderhobli,Kishor
Betreff: [Arsperl-users] ARSperl installation on Linux: undefined
symbol:ucnv_open_3_2



*   I am trying to install ARSperl-1.91 on linux using perl 5.8.5. 

ARSVERSION  = 7.10
 
$ uname -a
Linux aus-ppdoicm-01 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35
EDT 2007 i686 athlon i386 GNU/Linux

*   Enclosed are

- file that has the output of steps to build ARSperl. 
- version of perl used

*   Steps to build and install ARSperl resulted as follows

- perl Makefile.PL - succeeded
- make - succeeded
- make test - failed - Googling for this error brought me to
this thread. However, the suggestion they made does not apply to us as
$ARS_LIBS .=  -lpthread -licuucbmc -licui18nbmc;

http://www.mail-archive.com/arsperl-users@arsperl.org/msg00253.html

 
Any help to resolve this is greatly appreciated.
 
Sree
--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA,  Big Spaceship. http://p.sf.net/sfu/creativitycat-com 

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSperl installation on Linux: undefined symbol: ucnv_open_3_2

2009-05-28 Thread Oggu, Sree
*   I am trying to install ARSperl-1.91 on linux using perl 5.8.5. 

ARSVERSION  = 7.10
 
$ uname -a
Linux aus-ppdoicm-01 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35
EDT 2007 i686 athlon i386 GNU/Linux

*   Enclosed are

- file that has the output of steps to build ARSperl. 
- version of perl used

*   Steps to build and install ARSperl resulted as follows

- perl Makefile.PL - succeeded
- make - succeeded
- make test - failed - Googling for this error brought me to
this thread. However, the suggestion they made does not apply to us as
$ARS_LIBS .=  -lpthread -licuucbmc -licui18nbmc;

http://www.mail-archive.com/arsperl-users@arsperl.org/msg00253.html

 
Any help to resolve this is greatly appreciated.
 
Sree
bash-3.00$ perl Makefile.PL 
Building against perl 5.008005
Generating support.h file..
Processing AR_STRUCT_ITEM codes..
Processing AR_SERVER_STAT codes..
Processing AR_SCHEMA codes..
Processing AR_COM_PARM codes..
Processing AR_COM_METHOD codes..
Processing AR_DDE codes..
Processing AR_ACTIVE_LINK_ACTION codes..
Processing AR_ACTIVE_LINK_ACTION_OPEN codes..
Processing AR_CHAR_MENU_DD type codes..
Processing AR_CHAR_MENU_DD name codes..
Processing AR_CHAR_MENU_DD value format..
Processing AR_CHAR_MENU codes..
Processing AR_FILTER_ACTION codes..
Processing AR_MENU_REFRESH codes..
Processing AR_PERMISSIONS (Schema) codes..
Processing AR_PERMISSIONS (Field) codes..
Processing AR_DATA_TYPE codes..
Processing AR_BYTE_LIST codes..
Processing AR_NO_MATCH codes..
Processing AR_MULTI_MATCH codes..
Processing AR_RETURN codes..
Processing AR_FUNCTION codes..
Processing ARCON codes..
Processing ARCONOWNER codes..
Processing ARREF codes..
Processing AR_KEYWORD codes..
Processing AR_SERVER_INFO codes..

Generating serverTypeInfoHints.h ..
Converting C header files to perl modules ..
Configuring with options:
ARSVERSION  = 7.10
ARSAPI  = /x/home/soggu/ARS/
AUTODEFINES =  -g   -Wno-unused-variable -Wuninitialized  -DARS32  
-DARS452  -malign-double  -DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 
-DPERL_BASEREV_IS=50 
Note (probably harmless): No library found for -licuucbmc
Note (probably harmless): No library found for -licui18nbmc
Writing Makefile for ARS
=== ARSperl 'make test' configuration. ===

Please enter the following information. This information will be
recorded in ./t/config.cache

If you want to skip the 'make test' step, just hit ENTER
three times. You can configure it later by either re-running
'perl Makefile.PL' or by editting ./t/config.cache

Fair warning: you probably don't want to run 'make test' against a 
production ARSystem server. 

Server Name [ ]: 
Admin Username [ ]: 
Admin Password [ ]: 

Type 'make' (windows: 'nmake') to build ARSperl.
Type 'make test' to test ARSperl before installing.
Type 'make install' to install ARSperl.





bash-3.00$ make
Skip blib/lib/ARSarerrno-h.pm (unchanged)
Skip blib/lib/ARSnparm.pm (unchanged)
Skip blib/lib/artypes.ph (unchanged)
Skip blib/lib/_h2ph_pre.ph (unchanged)
Skip blib/lib/ARSar-h.pm (unchanged)
Skip blib/lib/ARSnterrno-h.pm (unchanged)
Skip blib/lib/ARSnt-h.pm (unchanged)
Skip blib/lib/ARSOOsup.pm (unchanged)
Skip blib/lib/ARSOOmsgs.pm (unchanged)
Skip blib/lib/ARSOOform.pm (unchanged)
Skip blib/lib/ARS.pm (unchanged)
gcc -c  -I/x/home/soggu/ARS//include -D_REENTRANT -D_GNU_SOURCE -DDEBUGGING 
-fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -m32 -march=i386 
-mtune=pentium4   -DVERSION=\1.91\ -DXS_VERSION=\1.91\ -fPIC 
-I/usr/lib/perl5/5.8.5/i386-linux-thread-multi/CORE  -g   
-Wno-unused-variable -Wuninitialized  -DARS32  -DARS452  -malign-double  
-DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 -DPERL_BASEREV_IS=50  ARS.c
ARS.c: In function `XS_ARS_ars_CreateField':
ARS.xs:3817: warning: 'createMode' might be used uninitialized in this function
gcc -c  -I/x/home/soggu/ARS//include -D_REENTRANT -D_GNU_SOURCE -DDEBUGGING 
-fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -m32 -march=i386 
-mtune=pentium4   -DVERSION=\1.91\ -DXS_VERSION=\1.91\ -fPIC 
-I/usr/lib/perl5/5.8.5/i386-linux-thread-multi/CORE  -g   
-Wno-unused-variable -Wuninitialized  -DARS32  -DARS452  -malign-double  
-DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 -DPERL_BASEREV_IS=50  support.c
support.c: In function `perl_ARBulkEntryReturn':
support.c:4272: warning: 'ret' might be used uninitialized in this function
support.c: In function `perl_ARCharMenuStruct':
support.c:4519: warning: 'ret' might be used uninitialized in this function
gcc -c  -I/x/home/soggu/ARS//include -D_REENTRANT -D_GNU_SOURCE 

Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-25 Thread Conny.Martin
You will have to call all functions with UTF8-encoded data. If you do not, your 
data will get corrupted.
 
Kind Regards Conny



Von: Michiel Beijen [mailto:mich...@beefreeit.nl] 
Gesendet: Mittwoch, 25. März 2009 08:53
An: ARSperl User Discussion
Betreff: Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode


That's great, and it surprises me a little...
But can you now only log in with a UTF8 string? Or can you also use 
ars_CreateEntry, ars_GetEntry and the like with UTF8 data?

Regards,
--
Michiel Beijen
Software Consultant
+31 6 - 457 42 418
Bee Free IT + http://beefreeit.nl



2009/3/25 _HK_ ciphersk...@gmail.com


Thank you folks. LANG=en_US.utf8 alone seemed to fix it!

cheers,
~H


2009/3/24 conny.mar...@t-systems.com


setting the encoding via lang parameter doesn't work. 
 
Try setting env-Variable LANG=en_US.utf8
 
Or you can use the attached patch, which introduces a new 
parameter (charSet) to ars_Login where you can specify the encoding.
 
Possible (tested) values are 
 
utf8
1252
1250
 
HTH

Kind Regards Conny


Von: _HK_ [mailto:ciphersk...@gmail.com] 
Gesendet: Dienstag, 24. März 2009 08:21
An: arsperl-users@arsperl.org
Betreff: [Arsperl-users] arsperl 1.91 ars_Login Unicode


Summary: I'm unable to send utf8 data using arsperl to my 
Remedy server which is unicode ready(and the remedy server works, as I can 
store utf8 data via other means).

I tried setting the lang parameter in ars_Login function to 
UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't seem 
to matter- when I look via gdb, the actual value for charset in the 
ARControlStruct-localeInfo is always WESTERN. 

The module was built against 7.01 api with all the unicode libs 
in place (libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are 
sincerely appreciated.

thanks,
~H



--
Apps built with the Adobe(R) Flex(R) framework and Flex 
Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. 
Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based 
development
software that enables intelligent coding and step-through 
debugging.
Download the free 60 day trial. 
http://p.sf.net/sfu/www-adobe-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users






-- 
~H
http://www.harishkotha.com


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based 
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-25 Thread _HK_
Yes. That's correct. I'm utf8 encoding all data before I send it anywhere. I
can use all the other ars_*Entry functions with utf8 data.

cheers,
~H

2009/3/25 conny.mar...@t-systems.com

  You will have to call all functions with UTF8-encoded data. If you do
 not, your data will get corrupted.

 Kind Regards Conny

  --
 *Von:* Michiel Beijen [mailto:mich...@beefreeit.nl]
 *Gesendet:* Mittwoch, 25. März 2009 08:53
 *An:* ARSperl User Discussion
 *Betreff:* Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

 That's great, and it surprises me a little...
 But can you now only log in with a UTF8 string? Or can you also use
 ars_CreateEntry, ars_GetEntry and the like with UTF8 data?

 Regards,
 --
 Michiel Beijen
 Software Consultant
 +31 6 - 457 42 418
 Bee Free IT + http://beefreeit.nl


 2009/3/25 _HK_ ciphersk...@gmail.com

 Thank you folks. LANG=en_US.utf8 alone seemed to fix it!

 cheers,
 ~H

 2009/3/24 conny.mar...@t-systems.com

   setting the encoding via lang parameter doesn't work.

 Try setting env-Variable LANG=en_US.utf8

 Or you can use the attached patch, which introduces a new parameter
 (charSet) to ars_Login where you can specify the encoding.

 Possible (tested) values are

 utf8
 1252
 1250

 HTH
 Kind Regards Conny
  --
 *Von:* _HK_ [mailto:ciphersk...@gmail.com]
 *Gesendet:* Dienstag, 24. März 2009 08:21
 *An:* arsperl-users@arsperl.org
 *Betreff:* [Arsperl-users] arsperl 1.91 ars_Login Unicode

   Summary: I'm unable to send utf8 data using arsperl to my Remedy
 server which is unicode ready(and the remedy server works, as I can store
 utf8 data via other means).

 I tried setting the lang parameter in ars_Login function to
 UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't
 seem to matter- when I look via gdb, the actual value for charset in the
 ARControlStruct-localeInfo is always WESTERN.

 The module was built against 7.01 api with all the unicode libs in place
 (libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely
 appreciated.

 thanks,
 ~H


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




 --
 ~H
 http://www.harishkotha.com


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




-- 
~H
http://www.harishkotha.com
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-25 Thread _HK_
Yes. That's correct. I'm utf8 encoding all data before I send it anywhere. I
can use all the other ars_*Entry functions with utf8 data.

cheers,
~H

2009/3/25 conny.mar...@t-systems.com

  You will have to call all functions with UTF8-encoded data. If you do
 not, your data will get corrupted.

 Kind Regards Conny

  --
 *Von:* Michiel Beijen [mailto:mich...@beefreeit.nl]
 *Gesendet:* Mittwoch, 25. März 2009 08:53
 *An:* ARSperl User Discussion
 *Betreff:* Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

 That's great, and it surprises me a little...
 But can you now only log in with a UTF8 string? Or can you also use
 ars_CreateEntry, ars_GetEntry and the like with UTF8 data?

 Regards,
 --
 Michiel Beijen
 Software Consultant
 +31 6 - 457 42 418
 Bee Free IT + http://beefreeit.nl


 2009/3/25 _HK_ ciphersk...@gmail.com

 Thank you folks. LANG=en_US.utf8 alone seemed to fix it!

 cheers,
 ~H

 2009/3/24 conny.mar...@t-systems.com

   setting the encoding via lang parameter doesn't work.

 Try setting env-Variable LANG=en_US.utf8

 Or you can use the attached patch, which introduces a new parameter
 (charSet) to ars_Login where you can specify the encoding.

 Possible (tested) values are

 utf8
 1252
 1250

 HTH
 Kind Regards Conny
  --
 *Von:* _HK_ [mailto:ciphersk...@gmail.com]
 *Gesendet:* Dienstag, 24. März 2009 08:21
 *An:* arsperl-users@arsperl.org
 *Betreff:* [Arsperl-users] arsperl 1.91 ars_Login Unicode

   Summary: I'm unable to send utf8 data using arsperl to my Remedy
 server which is unicode ready(and the remedy server works, as I can store
 utf8 data via other means).

 I tried setting the lang parameter in ars_Login function to
 UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't
 seem to matter- when I look via gdb, the actual value for charset in the
 ARControlStruct-localeInfo is always WESTERN.

 The module was built against 7.01 api with all the unicode libs in place
 (libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely
 appreciated.

 thanks,
 ~H


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




 --
 ~H
 http://www.harishkotha.com


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread _HK_
Summary: I'm unable to send utf8 data using arsperl to my Remedy server
which is unicode ready(and the remedy server works, as I can store utf8 data
via other means).

I tried setting the lang parameter in ars_Login function to
UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't
seem to matter- when I look via gdb, the actual value for charset in the
ARControlStruct-localeInfo is always WESTERN.

The module was built against 7.01 api with all the unicode libs in place
(libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely
appreciated.

thanks,
~H
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread Conny.Martin
setting the encoding via lang parameter doesn't work. 
 
Try setting env-Variable LANG=en_US.utf8
 
Or you can use the attached patch, which introduces a new parameter (charSet) 
to ars_Login where you can specify the encoding.
 
Possible (tested) values are 
 
utf8
1252
1250
 
HTH

Kind Regards Conny


Von: _HK_ [mailto:ciphersk...@gmail.com] 
Gesendet: Dienstag, 24. März 2009 08:21
An: arsperl-users@arsperl.org
Betreff: [Arsperl-users] arsperl 1.91 ars_Login Unicode


Summary: I'm unable to send utf8 data using arsperl to my Remedy server which 
is unicode ready(and the remedy server works, as I can store utf8 data via 
other means).

I tried setting the lang parameter in ars_Login function to 
UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't seem 
to matter- when I look via gdb, the actual value for charset in the 
ARControlStruct-localeInfo is always WESTERN. 

The module was built against 7.01 api with all the unicode libs in place 
(libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely 
appreciated.

thanks,
~H



patch
Description: patch
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread Michiel Beijen
ARSperl is a lot older than the - pretty recent - unicode support in AR
server. Because of this, ARSperl is not designed with unicode compatibility
in mind. It does not handle strings internally as unicode. See perldoc
perlunicode if you would like to see what it takes to make ARSperl handle
unicode properly.

I would suggest that if you need unicode capabilities, you should look into
the other integration possibilities such as the Java or C APIs.

--
Michiel Beijen
Software Consultant
+31 6 457 42 418
Bee Free IT + http://beefreeit.nl

On Mar 24, 2009 8:31 AM, _HK_ ciphersk...@gmail.com wrote:

Summary: I'm unable to send utf8 data using arsperl to my Remedy server
which is unicode ready(and the remedy server works, as I can store utf8 data
via other means).

I tried setting the lang parameter in ars_Login function to
UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't
seem to matter- when I look via gdb, the actual value for charset in the
ARControlStruct-localeInfo is always WESTERN.

The module was built against 7.01 api with all the unicode libs in place
(libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely
appreciated.

thanks,
~H

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread _HK_
Thank you folks. LANG=en_US.utf8 alone seemed to fix it!

cheers,
~H

2009/3/24 conny.mar...@t-systems.com

  setting the encoding via lang parameter doesn't work.

 Try setting env-Variable LANG=en_US.utf8

 Or you can use the attached patch, which introduces a new parameter
 (charSet) to ars_Login where you can specify the encoding.

 Possible (tested) values are

 utf8
 1252
 1250

 HTH
 Kind Regards Conny
  --
 *Von:* _HK_ [mailto:ciphersk...@gmail.com]
 *Gesendet:* Dienstag, 24. März 2009 08:21
 *An:* arsperl-users@arsperl.org
 *Betreff:* [Arsperl-users] arsperl 1.91 ars_Login Unicode

 Summary: I'm unable to send utf8 data using arsperl to my Remedy server
 which is unicode ready(and the remedy server works, as I can store utf8 data
 via other means).

 I tried setting the lang parameter in ars_Login function to
 UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it doesn't
 seem to matter- when I look via gdb, the actual value for charset in the
 ARControlStruct-localeInfo is always WESTERN.

 The module was built against 7.01 api with all the unicode libs in place
 (libicuucbmc, libicudatabmc, etc..). Any pointers/suggestions are sincerely
 appreciated.

 thanks,
 ~H


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users




-- 
~H
http://www.harishkotha.com
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl and AR Version 7.5

2009-02-05 Thread PC Wai
Hi Joe,

I would like to find out the answer too. I am currently running ARSPerl 1.85 on 
RH 3 32-bits and will upgrade to ARS V7.5 on RH 5 64-bits soon.

Regards
PC

-Original Message-
From: Joseph Kubasek [mailto:joseph.kuba...@gmail.com] 
Sent: January 29, 2009 10:13
To: Arsperl-users@arsperl.org
Subject: [Arsperl-users] ARSPerl and AR Version 7.5

Has anyone tried (and succeeded) in compiling ARSPerl against the 7.5 API on 64 
bit RH Linux? With 64 bit Perl?

Thanks,

Joe

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

--
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 vs ARS 7.1

2009-01-22 Thread Thilo Stapff
The libicu*bmc.so files should probably be in the api/lib directory. 
At least they have to be available somewhere on your machine. Moreover, 
they must be found, which means that you might have to run the 
ldconfig command on the directory where they are located, or add the 
directory to the LD_LIBRARY_PATH.

Regards,
Thilo


Bruno Manuel Pinto Gomes wrote:
 Hi,
 
 I'm getting the following error message:
 Can't load 
 '/cm/ot/CMA/CM_TOOL!GMS.NEW_ARS_VERSION/build_G!68.IP.L3/pm/external_perl_lib/i686-linux/auto/ARS/ARS.so'
  
 for module ARS: 
 /cm/ot/CMA/CM_TOOL!GMS.NEW_ARS_VERSION/build_G!68.IP.L3/pm/external_perl_lib/i686-linux/auto/ARS/ARS.so:
  
 undefined symbol: ucnv_open_3_2 at 
 /cm/ot/TOOL/PERL!13.0.2/build_G!68.IP.L3/pm/lib/i686-linux/DynaLoader.pm 
 line 206.
  at /auto/home/gms/work/REMEDY/queryRemedy.pl line 6
 Compilation failed in require at 
 /auto/home/gms/work/REMEDY/queryRemedy.pl line 6.
 BEGIN failed--compilation aborted at 
 /auto/home/gms/work/REMEDY/queryRemedy.pl line 6.
 
 I google a bit and found this thread 
 http://www.mail-archive.com/arsperl-users@arsperl.org/msg00383.html, 
 which says that I should change the Makefile.PL to this:
 
 $ARS_LIBS .=  -lpthread -licuuc -licui18n;
 
 To
 
 $ARS_LIBS .=  -lpthread -licuucbmc -licui18nbmc;
 
 I have the last source version of 1.91, so my Makefile.PL is already correct, 
 but I still get the error.
 
 BTW, I cannot find licuucbmc nor licui18nbmc inside my api/lib directory. 
 Where should they be?
 
 Thanks in advance.
 
 Cheers. 
 
 Bruno Gomes
 PT: +351 966 175 401
 BE: +32 485 937 881
 brunogome...@yahoo.com
 brunogome...@gmail.com
 
 
 
 
 
 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 
 
 
 
 
 
 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl on Windows 2003 server (again)

2008-10-29 Thread Eberhard.Wagner
Hallo Herr Stapff,

vielen Dank für den Tip. Ich war noch nicht registriert und dann erzeugt der 
link nur ein Fehlermeldung 'missing page' (und kein Hinweis auf Registrierung).
Aber sei es drum.
Vielen Dank
Eberhard Wagner



-Ursprüngliche Nachricht-
Von: Thilo Stapff [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 29. Oktober 2008 15:06
An: ARSperl User Discussion
Betreff: Re: [Arsperl-users] ARSPerl on Windows 2003 server (again)

Hallo Herr Wagner,

der Link existiert durchaus noch. Etwas merkwürdig ist, dass ein 
Passwort abgefragt wird, aber wenn man sich angemeldet hat, kommt man 
auch auf die richtige Seite. Soweit ich weiß, kann man sich auf 
developer.bmc.com auch ohne Support-ID registrieren.
Falls das aus irgendwelchen Gründen nicht möglich sein sollte, kann ich 
Ihnen die Datei auch gerne per Mail senden, sie ist allerdings 14MB groß.


Viele Grüße
Thilo Stapff

ApproLogic GmbH
Waldstr. 92
63128 Dietzenbach
Tel: 06074-4811814
Fax: 06074-4811816
EMail: [EMAIL PROTECTED]


[EMAIL PROTECTED] wrote:
 Hello,
 
 the link ' http://developer.bmc.com/communities/docs/DOC-5262' seems not to 
 exist anymore.
 
 Is there another link? Or could  someone post the ppd file for arsperl 1.91 
 in a public site (or just mail it).
 
 We neet desperately to get arsperl running for Remedy 7.1.
 
 Regards
 Eberhard Wagner
 
 Eberhard Wagner
 
 --
 
 operational services GmbH  Co. KG
 Systemanalyst
 Systemmanagement und Tools
 60547 Frankfurt/Main
 Telefon  +49 069 690 68161 
 
 Mailto:[EMAIL PROTECTED]
 http://www.operational-services.de
 --
 operational services GmbH  Co. KG
 Sitz der Gesellschaft: Frankfurt am Main
 HRA: 42500 (AG Frankfurt am Main)
 Vorsitzender des Aufsichtsrates: Dr. Roland Krieg
 Geschäftsführer: Dr. Harald Rieseler/Frank Oidtmann
 
 Persönlich haftende Gesellschafterin:
 operational services Beteiligungs-GmbH
 Sitz der Gesellschaft: Frankfurt am Main
 HRB: 74974 (AG Frankfurt am Main)
 
 
 
 
 
 
 ,
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users
 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl on Windows 2003

2008-10-20 Thread Georg Grabler
Hello Jeff,

Which sourceforge page you're using?
I couldn't find any ppd on the ARSperl sourceforge page, and none in the
activestate repositories.

In the ppm of activestate, it tells me that arsperl was not built correctly
due to unsatisfied dependencies.

Also, we need version 1.91 of arsperl, not 1.90, since there was a nasty bug
fixed with ars_APIVersion().

Kind regards,
Georg

On Mon, Oct 20, 2008 at 3:44 PM, jeff murphy [EMAIL PROTECTED]wrote:

 I use ARSperl on Windows 2003 w/7.1. However, I use Activestate 5.8
 and the ppd file from the sourceforge site instead of building it from
 source.

 jeff

 On Oct 20, 2008, at 9:18 AM, Georg Grabler wrote:

  Hello,
 
  We're struggleing with the compilation of ARSperl in Windows at the
  moment.

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl on 64 bit

2008-10-03 Thread STAN HOLODNAK, BLOOMBERG/ 731 LEXIN
Hello. Is there any way to install ARSPerl on 64 bit RedHat. I took out that 
double directive and have set CPPFLAGS to -m32 but to no avail. Thank you.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl on 64 bit

2008-10-03 Thread jeff murphy

On Oct 3, 2008, at 7:15 PM, STAN HOLODNAK, BLOOMBERG/ 731 LEXIN wrote:

 Hello. Is there any way to install ARSPerl on 64 bit RedHat. I took  
 out that double directive and have set CPPFLAGS to -m32 but to no  
 avail. Thank you.


Previous threads on this topic have concluded that the answer is no.

sorry!

jeff


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl on 64 bit

2008-10-03 Thread Rusty Copeland
It should work. I may not have seen your previous emails on this topic. Not 
only do you have to compile the ARSPerl module with -m32 but you also have to 
run it with a version of perl compiled as a 32 bit application.

Rusty



- Original Message 
From: STAN HOLODNAK, BLOOMBERG/ 731 LEXIN [EMAIL PROTECTED]
To: ARSPERL-USERS@ARSPERL.ORG
Sent: Friday, October 3, 2008 4:15:02 PM
Subject: [Arsperl-users] ARSPerl on 64 bit

Hello. Is there any way to install ARSPerl on 64 bit RedHat. I took out that 
double directive and have set CPPFLAGS to -m32 but to no avail. Thank you.
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users



  

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl on Windows 2003 server

2008-09-24 Thread Jonathan Livingston
I upgraded to Perl 5.8 and it works. Thanks for the help! No need to create
the ppd package just for me.

On Wed, Sep 24, 2008 at 3:11 AM, Michiel Beijen [EMAIL PROTECTED]wrote:

 I guess that would be Perl 5.10? I made the PPD file for Perl 5.8 so I
 guess it is best to download that Perl version from ActiveState.
 I'll try to create an updated ppd package with ARSperl 1.91 and Perl
 5.10 and make it available some time next week.

 Regards,

 Michiel

 On Tue, Sep 23, 2008 at 10:17 PM, Jonathan Livingston
 [EMAIL PROTECTED] wrote:
  I'm trying to use the ppd to do the install, but it's reporting ppm
 install
  failed: The PPD does not provide code to install for this platform. I am
 on
  Windows 2003 Enterprise 32-bit and using Perl 5.1.
 
 
 
  On Tue, Sep 23, 2008 at 3:49 PM, LJ Longwing [EMAIL PROTECTED]
 wrote:
 
  I always use the ppd file...the latest version I have found with a ppd
  published is 1.90.  just do a google for arsperl ppd 1.90 and you should
  find the same ppd I found last week.  Then you can extract that zip file
  (including the sub folders)...and then you can use PPM to install.
  
  From: Jonathan Livingston [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, September 23, 2008 8:15 AM
  To: arsperl-users@arsperl.org
  Subject: [Arsperl-users] ARSPerl on Windows 2003 server
 
  Hello all,
 
  I've been trying to get ARSperl working on a Windows 2003 server.
  Initially, I was trying to load and compile on the server. When I
 figured
  out that I needed a C compiler, I had to stop there. The server doesn't
 have
  a C compilter and I can't load one on a production server. Next, I tried
  trying to use the zip file with the precompiled option and using 'ppm
  install' to install it. However, ppm reported that it doesn't provide
 code
  for this platform. So, I took the tar file and extracted the files to
 their
  proper places. Now when I try to run arsperl, I get an unhandled
 exception
  within the ARS.dll. Does anyone have this working on a Windows 2003
 server?
 
  Thanks in advance for any help.
 
 
 -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
  Build the coolest Linux based applications with Moblin SDK  win great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
  world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
  --
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users
 
 
 
  -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
  Build the coolest Linux based applications with Moblin SDK  win great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
 world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
  --
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users
 
 

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl on Windows 2003 server

2008-09-23 Thread LJ Longwing
I always use the ppd file...the latest version I have found with a ppd
published is 1.90.  just do a google for arsperl ppd 1.90 and you should
find the same ppd I found last week.  Then you can extract that zip file
(including the sub folders)...and then you can use PPM to install.

  _  

From: Jonathan Livingston [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 23, 2008 8:15 AM
To: arsperl-users@arsperl.org
Subject: [Arsperl-users] ARSPerl on Windows 2003 server


Hello all,

I've been trying to get ARSperl working on a Windows 2003 server. Initially,
I was trying to load and compile on the server. When I figured out that I
needed a C compiler, I had to stop there. The server doesn't have a C
compilter and I can't load one on a production server. Next, I tried trying
to use the zip file with the precompiled option and using 'ppm install' to
install it. However, ppm reported that it doesn't provide code for this
platform. So, I took the tar file and extracted the files to their proper
places. Now when I try to run arsperl, I get an unhandled exception within
the ARS.dll. Does anyone have this working on a Windows 2003 server?

Thanks in advance for any help.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 make test errors

2008-09-09 Thread Vaughan, Mark
I have added the '-m32' switch as suggested in another thread, but I
still get the same errors:

gcc -c  -I/export/third-party/remedy/ars/software/ars710p3/api/include
-fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O
-DVERSION=\1.91\ -DXS_VERSION=\1.91\ -fPIC
-I/usr/local/lib/perl5/5.8.5/sun4-solaris-64int/CORE  -g
-Wno-unused-variable -Wuninitialized  -DARS32  -DARS452
-DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 -DPERL_BASEREV_IS=50 -m32
ARS.c

ARS.c: In function `XS_ARS_ars_CreateField':

ARS.xs:3817: warning: `createMode' might be used uninitialized in this
function

ARS.xs: In function `XS_ARS_ars_CreateActiveLink':

ARS.xs:5178: warning: cast to pointer from integer of different size

ARS.xs: In function `XS_ARS_ars_SetActiveLink':

ARS.xs:5340: warning: cast to pointer from integer of different size

ARS.xs: In function `XS_ARS_ars_CreateFilter':

ARS.xs:5519: warning: cast to pointer from integer of different size

ARS.xs: In function `XS_ARS_ars_SetFilter':

ARS.xs:5661: warning: cast to pointer from integer of different size

ARS.xs: In function `XS_ARS_ars_CreateEscalation':

ARS.xs:5828: warning: cast to pointer from integer of different size

ARS.xs: In function `XS_ARS_ars_SetEscalation':

ARS.xs:5965: warning: cast to pointer from integer of different size

 

Any help would be greatly appreciated.

 

Thanks,

Mark Vaughan



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vaughan, Mark
Sent: Friday, September 05, 2008 4:02 PM
To: ARSperl User Discussion
Subject: [Arsperl-users] ARSperl 1.91 make test errors

 

I have built 1.91 on Solaris 10 using gcc and it compiles with the usual
array of compilation errors ('warning: cast to pointer from integer of
different size' mostly).

 

When I run 'make test', I get a handful of 'uninitialized value'
warnings inside of ARS.pm, line 49.  I traced the problem to sub
ARS::ERRORSTR::FETCH.  The problem is the messageType array contains an
invalid value (4294967295).  As this value is -1 when using 32 bits and
casting is working correctly, I'm presuming that I am compiling
something incorrectly.

 

The test cases exhibiting this error are:

t/21setlogging

t/31createschema

 

Thanks,

Mark Vaughan

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/

--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 make test errors

2008-09-09 Thread Thilo Stapff

I don't have any experience with 64 bit systems so I can only take a
guess here. To me, the situation looks as follows:

The Remedy API libraries are 32 bit, so ARSperl has to be compiled with
-m32.

Your Perl interpreter is 64 bit, so ARSperl would also have to be
compiled as 64 bit, which of course collides with the condition above.

A possible solution might be to compile a Perl interpreter with -m32 and
use that one for ARSperl.


Regards,
Thilo Stapff




Vaughan, Mark wrote:
 I have added the ‘-m32’ switch as suggested in another thread, but I 
 still get the same errors:
 
 gcc -c  -I/export/third-party/remedy/ars/software/ars710p3/api/include 
 -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 
 -O   -DVERSION=\1.91\ -DXS_VERSION=\1.91\ -fPIC 
 -I/usr/local/lib/perl5/5.8.5/sun4-solaris-64int/CORE  -g   
 -Wno-unused-variable -Wuninitialized  -DARS32  -DARS452  
 -DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 -DPERL_BASEREV_IS=50 -m32  
 ARS.c
 
 ARS.c: In function `XS_ARS_ars_CreateField':
 
 ARS.xs:3817: warning: `createMode' might be used uninitialized in this 
 function
 
 ARS.xs: In function `XS_ARS_ars_CreateActiveLink':
 
 ARS.xs:5178: warning: cast to pointer from integer of different size
 
 ARS.xs: In function `XS_ARS_ars_SetActiveLink':
 
 ARS.xs:5340: warning: cast to pointer from integer of different size
 
 ARS.xs: In function `XS_ARS_ars_CreateFilter':
 
 ARS.xs:5519: warning: cast to pointer from integer of different size
 
 ARS.xs: In function `XS_ARS_ars_SetFilter':
 
 ARS.xs:5661: warning: cast to pointer from integer of different size
 
 ARS.xs: In function `XS_ARS_ars_CreateEscalation':
 
 ARS.xs:5828: warning: cast to pointer from integer of different size
 
 ARS.xs: In function `XS_ARS_ars_SetEscalation':
 
 ARS.xs:5965: warning: cast to pointer from integer of different size
 
  
 
 Any help would be greatly appreciated.
 
  
 
 Thanks,
 
 Mark Vaughan
 
 
 
 *From:* [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Vaughan, Mark
 *Sent:* Friday, September 05, 2008 4:02 PM
 *To:* ARSperl User Discussion
 *Subject:* [Arsperl-users] ARSperl 1.91 make test errors
 
  
 
 I have built 1.91 on Solaris 10 using gcc and it compiles with the usual 
 array of compilation errors (‘warning: cast to pointer from integer of 
 different size’ mostly).
 
  
 
 When I run ‘make test’, I get a handful of ‘uninitialized value’ 
 warnings inside of ARS.pm, line 49.  I traced the problem to sub 
 ARS::ERRORSTR::FETCH.  The problem is the messageType array contains an 
 invalid value (4294967295).  As this value is -1 when using 32 bits and 
 casting is working correctly, I’m presuming that I am compiling 
 something incorrectly.
 
  
 
 The test cases exhibiting this error are:
 
 t/21setlogging
 
 t/31createschema
 
  
 
 Thanks,
 
 Mark Vaughan
 
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 
 
 
 
 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/


--
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.91 make test errors

2008-09-09 Thread Rusty Copeland
perl 64 bit will not load a 32 bit library, in my experience. When you build 
ARSPerl as 32 bit you'll have to use a 32 bit perl interpreter. I feel your 
pain, it's very annoying.

Rusty


--- On Tue, 9/9/08, Vaughan, Mark [EMAIL PROTECTED] wrote:

 From: Vaughan, Mark [EMAIL PROTECTED]
 Subject: Re: [Arsperl-users] ARSperl 1.91 make test errors
 To: ARSperl User Discussion arsperl-users@arsperl.org
 Date: Tuesday, September 9, 2008, 10:35 AM
 Are there any other possible solutions?
 
 If I can get the SAs to install a 32-bit Perl, do I need to
 invoke that
 instance when using ARSperl or will the appropriate links
 already be in
 the ARSperl module so I can use my regular 64-bit?
 
 Sorry for the ignorance.
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Thilo Stapff
 Sent: Tuesday, September 09, 2008 10:02 AM
 To: ARSperl User Discussion
 Subject: Re: [Arsperl-users] ARSperl 1.91 make test errors
 
 
 I don't have any experience with 64 bit systems so I
 can only take a
 guess here. To me, the situation looks as follows:
 
 The Remedy API libraries are 32 bit, so ARSperl has to be
 compiled with
 -m32.
 
 Your Perl interpreter is 64 bit, so ARSperl would also have
 to be
 compiled as 64 bit, which of course collides with the
 condition above.
 
 A possible solution might be to compile a Perl interpreter
 with -m32 and
 use that one for ARSperl.
 
 
 Regards,
 Thilo Stapff
 
 
 
 
 Vaughan, Mark wrote:
  I have added the '-m32' switch as suggested in
 another thread, but I 
  still get the same errors:
  
  gcc -c 
 -I/export/third-party/remedy/ars/software/ars710p3/api/include
 
  -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE
 -D_FILE_OFFSET_BITS=64 
  -O   -DVERSION=\1.91\
 -DXS_VERSION=\1.91\ -fPIC 
 
 -I/usr/local/lib/perl5/5.8.5/sun4-solaris-64int/CORE
  -g   
  -Wno-unused-variable -Wuninitialized  -DARS32 
 -DARS452  
  -DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5
 -DPERL_BASEREV_IS=50
 -m32  
  ARS.c
  
  ARS.c: In function `XS_ARS_ars_CreateField':
  
  ARS.xs:3817: warning: `createMode' might be used
 uninitialized in this
 
  function
  
  ARS.xs: In function `XS_ARS_ars_CreateActiveLink':
  
  ARS.xs:5178: warning: cast to pointer from integer of
 different size
  
  ARS.xs: In function `XS_ARS_ars_SetActiveLink':
  
  ARS.xs:5340: warning: cast to pointer from integer of
 different size
  
  ARS.xs: In function `XS_ARS_ars_CreateFilter':
  
  ARS.xs:5519: warning: cast to pointer from integer of
 different size
  
  ARS.xs: In function `XS_ARS_ars_SetFilter':
  
  ARS.xs:5661: warning: cast to pointer from integer of
 different size
  
  ARS.xs: In function `XS_ARS_ars_CreateEscalation':
  
  ARS.xs:5828: warning: cast to pointer from integer of
 different size
  
  ARS.xs: In function `XS_ARS_ars_SetEscalation':
  
  ARS.xs:5965: warning: cast to pointer from integer of
 different size
  
   
  
  Any help would be greatly appreciated.
  
   
  
  Thanks,
  
  Mark Vaughan
  
 
 
  
  *From:* [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] *On Behalf
 Of *Vaughan,
 Mark
  *Sent:* Friday, September 05, 2008 4:02 PM
  *To:* ARSperl User Discussion
  *Subject:* [Arsperl-users] ARSperl 1.91 make test
 errors
  
   
  
  I have built 1.91 on Solaris 10 using gcc and it
 compiles with the
 usual 
  array of compilation errors ('warning: cast to
 pointer from integer of
 
  different size' mostly).
  
   
  
  When I run 'make test', I get a handful of
 'uninitialized value' 
  warnings inside of ARS.pm, line 49.  I traced the
 problem to sub 
  ARS::ERRORSTR::FETCH.  The problem is the messageType
 array contains
 an 
  invalid value (4294967295).  As this value is -1 when
 using 32 bits
 and 
  casting is working correctly, I'm presuming that I
 am compiling 
  something incorrectly.
  
   
  
  The test cases exhibiting this error are:
  
  t/21setlogging
  
  t/31createschema
  
   
  
  Thanks,
  
  Mark Vaughan
  
  
 
 
  
 
 
 -
  This SF.Net email is sponsored by the Moblin Your Move
 Developer's
 challenge
  Build the coolest Linux based applications with Moblin
 SDK  win great
 prizes
  Grand prize is a trip for two to an Open Source event
 anywhere in the
 world
 
 http://moblin-contest.org/redirect.php?banner_id=100url=/
  
  
 
 
  
  
  
  --
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
 
 https://lists.sourceforge.net/lists/listinfo/arsperl-users
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move
 Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK
  win great
 prizes
 Grand prize is a trip for two to an Open Source event

Re: [Arsperl-users] ARSperl 1.91 make test errors

2008-09-09 Thread Axton
The path will control which perl is used.  Other solutions, maybe you
already have a 32-bit perl interpreter on the host.  Look under these
directories:

/usr/perl5/site_perl
/usr/perl5/vendor_perl

Axton

On Tue, Sep 9, 2008 at 1:35 PM, Vaughan, Mark 
[EMAIL PROTECTED] wrote:

 Are there any other possible solutions?

 If I can get the SAs to install a 32-bit Perl, do I need to invoke that
 instance when using ARSperl or will the appropriate links already be in
 the ARSperl module so I can use my regular 64-bit?

 Sorry for the ignorance.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Thilo Stapff
 Sent: Tuesday, September 09, 2008 10:02 AM
 To: ARSperl User Discussion
 Subject: Re: [Arsperl-users] ARSperl 1.91 make test errors


 I don't have any experience with 64 bit systems so I can only take a
 guess here. To me, the situation looks as follows:

 The Remedy API libraries are 32 bit, so ARSperl has to be compiled with
 -m32.

 Your Perl interpreter is 64 bit, so ARSperl would also have to be
 compiled as 64 bit, which of course collides with the condition above.

 A possible solution might be to compile a Perl interpreter with -m32 and
 use that one for ARSperl.


 Regards,
 Thilo Stapff




 Vaughan, Mark wrote:
  I have added the '-m32' switch as suggested in another thread, but I
  still get the same errors:
 
  gcc -c  -I/export/third-party/remedy/ars/software/ars710p3/api/include

  -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
  -O   -DVERSION=\1.91\ -DXS_VERSION=\1.91\ -fPIC
  -I/usr/local/lib/perl5/5.8.5/sun4-solaris-64int/CORE  -g
  -Wno-unused-variable -Wuninitialized  -DARS32  -DARS452
  -DPERL_PATCHLEVEL_IS=8 -DPERL_SUBVERSION_IS=5 -DPERL_BASEREV_IS=50
 -m32
  ARS.c
 
  ARS.c: In function `XS_ARS_ars_CreateField':
 
  ARS.xs:3817: warning: `createMode' might be used uninitialized in this

  function
 
  ARS.xs: In function `XS_ARS_ars_CreateActiveLink':
 
  ARS.xs:5178: warning: cast to pointer from integer of different size
 
  ARS.xs: In function `XS_ARS_ars_SetActiveLink':
 
  ARS.xs:5340: warning: cast to pointer from integer of different size
 
  ARS.xs: In function `XS_ARS_ars_CreateFilter':
 
  ARS.xs:5519: warning: cast to pointer from integer of different size
 
  ARS.xs: In function `XS_ARS_ars_SetFilter':
 
  ARS.xs:5661: warning: cast to pointer from integer of different size
 
  ARS.xs: In function `XS_ARS_ars_CreateEscalation':
 
  ARS.xs:5828: warning: cast to pointer from integer of different size
 
  ARS.xs: In function `XS_ARS_ars_SetEscalation':
 
  ARS.xs:5965: warning: cast to pointer from integer of different size
 
 
 
  Any help would be greatly appreciated.
 
 
 
  Thanks,
 
  Mark Vaughan
 
 
 
 
  *From:* [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] *On Behalf Of *Vaughan,
 Mark
  *Sent:* Friday, September 05, 2008 4:02 PM
  *To:* ARSperl User Discussion
  *Subject:* [Arsperl-users] ARSperl 1.91 make test errors
 
 
 
  I have built 1.91 on Solaris 10 using gcc and it compiles with the
 usual
  array of compilation errors ('warning: cast to pointer from integer of

  different size' mostly).
 
 
 
  When I run 'make test', I get a handful of 'uninitialized value'
  warnings inside of ARS.pm, line 49.  I traced the problem to sub
  ARS::ERRORSTR::FETCH.  The problem is the messageType array contains
 an
  invalid value (4294967295).  As this value is -1 when using 32 bits
 and
  casting is working correctly, I'm presuming that I am compiling
  something incorrectly.
 
 
 
  The test cases exhibiting this error are:
 
  t/21setlogging
 
  t/31createschema
 
 
 
  Thanks,
 
  Mark Vaughan
 
 
 
 
 
 
 
 -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
  Build the coolest Linux based applications with Moblin SDK  win great
 prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
 world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 
 
 
 
 
  --
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users


 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/


 --
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users

 -
 This SF.Net email

Re: [Arsperl-users] ARSPerl 1.9 will not run with API 7.0

2007-12-11 Thread Thilo Stapff
It looks like ARSperl doesn't find the BMC unicode libraries, probably 
because of an error in Makefile.PL

Try to change line 114 in Makefile.PL:

$ARS_LIBS .=  -lpthread -licuuc -licui18n;

to

$ARS_LIBS .=  -lpthread -licuucbmc -licui18nbmc;

and compile again.

Regards,
Thilo Stapff


Frassl, Maurice wrote:
 Hi Guys!
 
  
 
 Having some problems getting ARSPerl running with 7.0 API! I installed 
 it the common way – I always did witch 1.85 – got no errors.
 
 If I try to run a script using ARS now I get the following error!
 
  
 
 Can't load 
 '/usr/perl5/site_perl/5.8.4/sun4-solaris-64int/auto/ARS/ARS.so' for 
 module ARS: ld.so.1: perl: fatal: relocation error: file 
 /usr/perl5/site_perl/5.8.4/sun4-solaris-64int/auto/ARS/ARS.so: symbol 
 ucnv_compareNames_3_2: referenced symbol not found at 
 /usr/perl5/5.8.4/lib/sun4-solaris-64int/DynaLoader.pm line 230.
 
  at casc_ARSFuncs.pm line 25
 
  
 
 The file ARS.so is where it is expected!
 
 So may somebody can help!?
 
  
 
 thx
 
  
 
  
 
 ---
 
Maurice Frassl
 
Application Engineer
 
   
 
   [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 
   UPC CIO IP Provisioning SP   
 
t +43 1 960685621
   m +43 69919605621
 
f +43 1 960685666
 
  
 
Erlachgasse 116  
   A-1100 Vienna
 
Austria   
 
 ---
 
  
 
 This e-mail is confidential and may well also be legally privileged. If you 
 have received it in error, you are on notice of its status. Please notify us 
 immediately by reply e-mail and then delete this message from your system. 
 Please do not copy it or use it for any purposes, or disclose its contents to 
 any other person: to do so could be a breach of confidence. Thank you for 
 your cooperation.
 Information pursuant to paragraph 14 Austrian Companies Code: UPC Austria 
 GmbH; Registered Office: Wolfganggasse 58-60, 1120 Vienna Company Register 
 Number: FN 189858d at the Commercial Court of Vienna
 
 
 
 
 -
 SF.Net email is sponsored by:
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php
 
 
 
 
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl 1.9 will not run with API 7.0

2007-12-11 Thread Michiel Beijen
Hi Maurice,

I guess the problem is that you try to use a 64-bit Perl while the
Remedy libraries are still 32 bit. Please try to compile ARSperl with
a 32-bit Perl interpreter.
-- 
Met vriendelijke groet / Kind regards
Michiel Beijen
__
MANSOLUTIONS
Energieweg 60-62
3771 NA Barneveld
The Netherlands
Tel. +31-(0)612968592
Mail [EMAIL PROTECTED]
Internet http://bsm.mansolutions.nl


On 12/11/07, Frassl, Maurice [EMAIL PROTECTED] wrote:



 Hi Guys!



 Having some problems getting ARSPerl running with 7.0 API! I installed it
 the common way – I always did witch 1.85 – got no errors.

 If I try to run a script using ARS now I get the following error!



 Can't load
 '/usr/perl5/site_perl/5.8.4/sun4-solaris-64int/auto/ARS/ARS.so'
 for module ARS: ld.so.1: perl: fatal: relocation error: file
 /usr/perl5/site_perl/5.8.4/sun4-solaris-64int/auto/ARS/ARS.so:
 symbol ucnv_compareNames_3_2: referenced symbol not found at
 /usr/perl5/5.8.4/lib/sun4-solaris-64int/DynaLoader.pm line
 230.

  at casc_ARSFuncs.pm line 25



 The file ARS.so is where it is expected!

 So may somebody can help!?



 thx





 ---

Maurice Frassl

Application Engineer



   [EMAIL PROTECTED]

   UPC CIO IP Provisioning SP

t +43 1 960685621
   m +43 69919605621

f +43 1 960685666



Erlachgasse 116
   A-1100 Vienna

Austria

 ---

  This e-mail is confidential and may well also be legally privileged. If you
 have received it in error, you are on notice of its status. Please notify us
 immediately by reply e-mail and then delete this message from your system.
 Please do not copy it or use it for any purposes, or disclose its contents
 to any other person: to do so could be a breach of confidence. Thank you for
 your cooperation.
Information pursuant to paragraph 14 Austrian Companies
 Code: UPC Austria GmbH; Registered Office: Wolfganggasse 58-60, 1120 Vienna
 Company Register Number: FN 189858d at the Commercial Court of Vienna

 -
 SF.Net email is sponsored by:
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users



-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl scripts and ARS 7.1

2007-11-20 Thread strauss
Has anyone figured out how to get their ARSPerl CGI scripts to run
against an ARS 7.1 server???  So far I have not found anything that
works while editing my current production scripts against a 7.1 ITSM 7
server, and they already use Field ID instead of label or name so that's
not it.  I am seeing the same problems getting qualifications to run
against ITSM 7 forms in Kinetic Calendar, so I am wondering if all of
the plumbing has been moved beyond our reach in 7.1?
 

Christopher Strauss, Ph.D.
Call Tracking Administration Manager
University of North Texas Computing  IT Center
http://itsm.unt.edu/ 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl - Selection Field import Problem

2007-10-11 Thread Jeff Murphy
 I am trying to write a Perl script w/ ars module that reads some records
 from a DB and creates new records in a custom form I have. It has a
bunch of
 selection fields, which in the past I would hard code and convert the
string
 values in the DB to the integer value that createEntry wants.

 Does anyone have some advice on how I can do this without hardcoding ?




use ars_GetField to fetch the selection values. you can then easily map
from name to value.

jeff


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-09 Thread Thilo Stapff
ars_GetListEntry needs at least one more parameter (firstRetrieve, 
usually = 0):

   %entries = ars_GetListEntry($ctrl, $schema, $qual, 0 , 0);

instead of

   %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);


Moreover, you should always check for errors after calling an API 
function, e.g.

   die ars_GetListEntry( $schema, $qs ): $ars_errstr\n if $ars_errstr;


You might also try using the field ID of Category instead of the field 
name in the qualifier string.


Regards,
Thilo Stapff


Ravi wrote:
 Hi:I am trying query a schema and print a fieldname and values for all 
 records with a qualifying filter. I can't seem to figure out which 
 function to use and how. This is what I have now and I get 0 records. Is 
 asr_GetListEntry the right function? Does someone have a sample script 
 or point me to the right one in the example dir?
 
 $schema = My:Alarm Base;
 $qs = qq/'Category' = Voice/;
 ($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
 die error in ars_LoadQualifier;
 
 %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
 
 foreach $entry_id (sort keys %entries) {
 printf(%s %s\n, $entry_id, $entries{$entry_id});
 }
 
 
 Thanks
 Ravi
 
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-09 Thread Jarl Grøneng
I does not like the die parameter if you got an error. You may miss
the clean-up part.

-
Jarl

On 8/9/07, Thilo Stapff [EMAIL PROTECTED] wrote:
 ars_GetListEntry needs at least one more parameter (firstRetrieve,
 usually = 0):

%entries = ars_GetListEntry($ctrl, $schema, $qual, 0 , 0);

 instead of

%entries = ars_GetListEntry($ctrl, $schema, $qual, 0);


 Moreover, you should always check for errors after calling an API
 function, e.g.

die ars_GetListEntry( $schema, $qs ): $ars_errstr\n if $ars_errstr;


 You might also try using the field ID of Category instead of the field
 name in the qualifier string.


 Regards,
 Thilo Stapff


 Ravi wrote:
  Hi:I am trying query a schema and print a fieldname and values for all
  records with a qualifying filter. I can't seem to figure out which
  function to use and how. This is what I have now and I get 0 records. Is
  asr_GetListEntry the right function? Does someone have a sample script
  or point me to the right one in the example dir?
 
  $schema = My:Alarm Base;
  $qs = qq/'Category' = Voice/;
  ($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
  die error in ars_LoadQualifier;
 
  %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
 
  foreach $entry_id (sort keys %entries) {
  printf(%s %s\n, $entry_id, $entries{$entry_id});
  }
 
 
  Thanks
  Ravi
 
 
  -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
  ___
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users
 


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-09 Thread Clayton Scott
Using die is just an example.

You could also warn and continue, or whatever you want.
Just check the value of $ars_errstr.

if ($ars_errstr){
  # do what you need to do if there is an error
}

On 8/9/07, Jarl Grøneng [EMAIL PROTECTED] wrote:
 I does not like the die parameter if you got an error. You may miss
 the clean-up part.

 -
 Jarl

 On 8/9/07, Thilo Stapff [EMAIL PROTECTED] wrote:
  ars_GetListEntry needs at least one more parameter (firstRetrieve,
  usually = 0):
 
 %entries = ars_GetListEntry($ctrl, $schema, $qual, 0 , 0);
 
  instead of
 
 %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
 
 
  Moreover, you should always check for errors after calling an API
  function, e.g.
 
 die ars_GetListEntry( $schema, $qs ): $ars_errstr\n if $ars_errstr;
 
 
  You might also try using the field ID of Category instead of the field
  name in the qualifier string.
 
 
  Regards,
  Thilo Stapff
 
 
  Ravi wrote:
   Hi:I am trying query a schema and print a fieldname and values for all
   records with a qualifying filter. I can't seem to figure out which
   function to use and how. This is what I have now and I get 0 records. Is
   asr_GetListEntry the right function? Does someone have a sample script
   or point me to the right one in the example dir?
  
   $schema = My:Alarm Base;
   $qs = qq/'Category' = Voice/;
   ($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
   die error in ars_LoadQualifier;
  
   %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
  
   foreach $entry_id (sort keys %entries) {
   printf(%s %s\n, $entry_id, $entries{$entry_id});
   }
  
  
   Thanks
   Ravi
  
  
   -
   This SF.net email is sponsored by: Splunk Inc.
   Still grepping through log files to find problems?  Stop.
   Now Search log events and configuration files using AJAX and a browser.
   Download your FREE copy of Splunk now   http://get.splunk.com/
   ___
   Arsperl-users mailing list
   Arsperl-users@arsperl.org
   https://lists.sourceforge.net/lists/listinfo/arsperl-users
  
 
 
  -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
  ___
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users
 

 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users



-- 

Clayton Scott
[EMAIL PROTECTED]

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-09 Thread Thilo Stapff
I'm not sure what you are talking about.

ARTermination() is always called on exit because ARS.xs implements a 
destructor function for ARControlStructPtr objects.

Perl also closes filehandles automatically.

If you have other resources which need cleanup, you can wrap your code 
into an eval block:


eval {
   ...

   ars_GetListEntry(  );
   die Error message\n if $ars_errstr;

   ...
}

warn $@ if $@;

# do cleanup here


So, in my opinion, in most cases the use of die should be just fine.


Best regards,
Thilo


Jarl Grøneng wrote:
 I does not like the die parameter if you got an error. You may miss
 the clean-up part.
 
 -
 Jarl
 
 On 8/9/07, Thilo Stapff [EMAIL PROTECTED] wrote:
 ars_GetListEntry needs at least one more parameter (firstRetrieve,
 usually = 0):

%entries = ars_GetListEntry($ctrl, $schema, $qual, 0 , 0);

 instead of

%entries = ars_GetListEntry($ctrl, $schema, $qual, 0);


 Moreover, you should always check for errors after calling an API
 function, e.g.

die ars_GetListEntry( $schema, $qs ): $ars_errstr\n if $ars_errstr;


 You might also try using the field ID of Category instead of the field
 name in the qualifier string.


 Regards,
 Thilo Stapff


 Ravi wrote:
 Hi:I am trying query a schema and print a fieldname and values for all
 records with a qualifying filter. I can't seem to figure out which
 function to use and how. This is what I have now and I get 0 records. Is
 asr_GetListEntry the right function? Does someone have a sample script
 or point me to the right one in the example dir?

 $schema = My:Alarm Base;
 $qs = qq/'Category' = Voice/;
 ($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
 die error in ars_LoadQualifier;

 %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);

 foreach $entry_id (sort keys %entries) {
 printf(%s %s\n, $entry_id, $entries{$entry_id});
 }


 Thanks
 Ravi


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users

 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-09 Thread Jarl Grøneng
How can I understand that this die is an example?
--
Jarø

On 8/9/07, Clayton Scott [EMAIL PROTECTED] wrote:
 Using die is just an example.

 You could also warn and continue, or whatever you want.
 Just check the value of $ars_errstr.

 if ($ars_errstr){
   # do what you need to do if there is an error
 }

 On 8/9/07, Jarl Grøneng [EMAIL PROTECTED] wrote:
  I does not like the die parameter if you got an error. You may miss
  the clean-up part.
 
  -
  Jarl
 
  On 8/9/07, Thilo Stapff [EMAIL PROTECTED] wrote:
   ars_GetListEntry needs at least one more parameter (firstRetrieve,
   usually = 0):
  
  %entries = ars_GetListEntry($ctrl, $schema, $qual, 0 , 0);
  
   instead of
  
  %entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
  
  
   Moreover, you should always check for errors after calling an API
   function, e.g.
  
  die ars_GetListEntry( $schema, $qs ): $ars_errstr\n if $ars_errstr;
  
  
   You might also try using the field ID of Category instead of the field
   name in the qualifier string.
  
  
   Regards,
   Thilo Stapff
  
  
   Ravi wrote:
Hi:I am trying query a schema and print a fieldname and values for all
records with a qualifying filter. I can't seem to figure out which
function to use and how. This is what I have now and I get 0 records. Is
asr_GetListEntry the right function? Does someone have a sample script
or point me to the right one in the example dir?
   
$schema = My:Alarm Base;
$qs = qq/'Category' = Voice/;
($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
die error in ars_LoadQualifier;
   
%entries = ars_GetListEntry($ctrl, $schema, $qual, 0);
   
foreach $entry_id (sort keys %entries) {
printf(%s %s\n, $entry_id, $entries{$entry_id});
}
   
   
Thanks
Ravi
   
   
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users
   
  
  
   -
   This SF.net email is sponsored by: Splunk Inc.
   Still grepping through log files to find problems?  Stop.
   Now Search log events and configuration files using AJAX and a browser.
   Download your FREE copy of Splunk now   http://get.splunk.com/
   ___
   Arsperl-users mailing list
   Arsperl-users@arsperl.org
   https://lists.sourceforge.net/lists/listinfo/arsperl-users
  
 
  -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
  ___
  Arsperl-users mailing list
  Arsperl-users@arsperl.org
  https://lists.sourceforge.net/lists/listinfo/arsperl-users
 


 --

 Clayton Scott
 [EMAIL PROTECTED]

 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl newbie: How to list field values from a form?

2007-08-08 Thread Ravi
Hi:I am trying query a schema and print a fieldname and values for all 
records with a qualifying filter. I can't seem to figure out which 
function to use and how. This is what I have now and I get 0 records. Is 
asr_GetListEntry the right function? Does someone have a sample script 
or point me to the right one in the example dir?

$schema = My:Alarm Base;
$qs = qq/'Category' = Voice/;
($qual = ars_LoadQualifier($ctrl,$schema,$qs)) ||
die error in ars_LoadQualifier;

%entries = ars_GetListEntry($ctrl, $schema, $qual, 0);

foreach $entry_id (sort keys %entries) {
printf(%s %s\n, $entry_id, $entries{$entry_id});
}


Thanks
Ravi


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-27 Thread Dignard, Norman
We're running 64bit Windows 2003 server, 64 bit Oracle 10gR2 and have
installed Perl 64 bit.

In trying to run the ppm install ARS.ppd cmd I get The PPD does not
provide code to install on this platform

 

Also in our perl64 install there is no auto directory. I assume the
directory hierarchy needs to be createdC:\perl64\site\lib\auto\ARS
correct?

What do I need to setup ARSperl on 64 bit windows?

 

Regards,

Norm 

 

  _  

From: Steve [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2007 01:07 AM
Subject: Re: [Arsperl-users] ARSPerl 1.90 setup

 

** Here are the step-by-step instructions to install ARSPERL on Windows.

 

1) Download and install ActivePERL for windows (google for activeperl).
Install it to C:\PERL folder.

2) Download the win701p1.tar.gz  file from
http://arswiki.org/projects/arapi/downloads

 and unzip.

3) In the  win701p1.tar.gz file, there will be a folder called 'lib'.
Copy all the files (CTRL A + CTRL C).

4) Create a new directory - C:\perl\site\lib\auto\ARS - and paste all
the files copied in Step 3) 

5) Download http://remedydeveloper.org/ARSperl_190_701.zip to C:\ drive.
and unzip all contents. There should be a file named 'ARS.ppd'

6) Go to start - Run and type 'cmd' (Open command prompt). Change
directory to the one containing the 'ARS.ppd' file.

7) Type ppm install ARS.ppd and this should install the ARSPERL
module. 

 

 

Doubts

=

a) What is the purpose of 'win701p2.tar.gz file present on the arswiki
download page? 

 

 

Enjoy :-)

 

Steve.

 

 

 

 

On 6/26/07, Michiel Beijen  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

Norm,

I just created a Windows PPM package you can use; you can download it
from 
http://remedydeveloper.org/ARSperl_190_701.zip
There is a readme file inside with instructions on how to install. 

HTH,

-- 
Met vriendelijke groet / Kind regards 
Michiel Beijen
__
MANSOLUTIONS
Energieweg 60-62
3771 NA Barneveld
The Netherlands
Tel. +31-(0)612968592
Mail [EMAIL PROTECTED]
Internet http://bsm.mansolutions.nl



On 6/25/07, Dignard, Norman  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

On this same subject, where can I find the 1.9 Windows binaries? I can
across a link for 1.84 windows binaries. 

 

Regards,

Norm 

 

  _  

From: Dignard, Norman 
Sent: June 25, 2007 03:16 PM
To: '[EMAIL PROTECTED]'
Subject: ARSPerl 1.90 setup

 

 

Can someone shed some light on ARSperl setup. I'm new to this as our
previous admin guy is gone without much documentation.  The ARSperl docs
aren't very clear.

 

We've setup new servers with the latest ARS version as follows:

 

Our env -  Windows Server 2003 R2 SP1, Enterprise Edition 64bit with AR
server 7.01 p3 using Oracle 10gR2 64bit  email engine 7.01 p3

HPUX 11.31 (IA64) with jakarta tomcat 5.0.28, java 1.4  with midtier
7.0.1 p3. 

 

Our thoughts on this is to install Active State's perl 5.8.8.820 (64
bit) on the AR db server as well as ARSperl .

Our previous setup was AR server 6 on HPUX 10.20 and all they had was a
few arsperl 1.71 files (@10 files).   There's allot more when extracting
the 1.9 files.

 

According to the docs it says to use the Windows binaries from the
distribution so how to I do this. Where to I extract the files too? Is
c:\arsperl-1.90 ok? Any env variables to set?

Any other setup required? 

 Regards,

Norm 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar http://sourceforge.net/powerbar/db2/
/db2/ http://sourceforge.net/powerbar/db2/ 
___
Arsperl-users mailing list 
Arsperl-users@arsperl.org
https://lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arsperl-users
/lists/listinfo/arsperl-users
https://lists.sourceforge.net/lists/listinfo/arsperl-users 




-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerba http://sourceforge.net/powerbar/db2/
r/db2/ http://sourceforge.net/powerbar/db2/ 
___
Arsperl-users mailing list
Arsperl-users@arsperl.org 
https://lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arsperl-users
/lists/listinfo/arsperl-users
https://lists.sourceforge.net/lists/listinfo/arsperl-users 


 

__20060125___This posting was submitted with HTML in
it___ 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click

Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-27 Thread Dignard, Norman
Installing 32 bit perl solved my problem

 

Regards,

Norm 

 

  _  

From: Dignard, Norman 
Sent: June 27, 2007 01:33 PM
To: 'Steve'; '[EMAIL PROTECTED]'; Arsperl-users@arsperl.org
Subject: RE: [Arsperl-users] ARSPerl 1.90 setup

 

We're running 64bit Windows 2003 server, 64 bit Oracle 10gR2 and have
installed Perl 64 bit.

In trying to run the ppm install ARS.ppd cmd I get The PPD does not
provide code to install on this platform

 

Also in our perl64 install there is no auto directory. I assume the
directory hierarchy needs to be createdC:\perl64\site\lib\auto\ARS
correct?

What do I need to setup ARSperl on 64 bit windows?

 

Regards,

Norm 

 

  _  

From: Steve [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2007 01:07 AM
Subject: Re: [Arsperl-users] ARSPerl 1.90 setup

 

** Here are the step-by-step instructions to install ARSPERL on Windows.

 

1) Download and install ActivePERL for windows (google for activeperl).
Install it to C:\PERL folder.

2) Download the win701p1.tar.gz  file from
http://arswiki.org/projects/arapi/downloads

 and unzip.

3) In the  win701p1.tar.gz file, there will be a folder called 'lib'.
Copy all the files (CTRL A + CTRL C).

4) Create a new directory - C:\perl\site\lib\auto\ARS - and paste all
the files copied in Step 3) 

5) Download http://remedydeveloper.org/ARSperl_190_701.zip to C:\ drive.
and unzip all contents. There should be a file named 'ARS.ppd'

6) Go to start - Run and type 'cmd' (Open command prompt). Change
directory to the one containing the 'ARS.ppd' file.

7) Type ppm install ARS.ppd and this should install the ARSPERL
module. 

 

 

Doubts

=

a) What is the purpose of 'win701p2.tar.gz file present on the arswiki
download page? 

 

 

Enjoy :-)

 

Steve.

 

 

 

 

On 6/26/07, Michiel Beijen  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

Norm,

I just created a Windows PPM package you can use; you can download it
from 
http://remedydeveloper.org/ARSperl_190_701.zip
There is a readme file inside with instructions on how to install. 

HTH,

-- 
Met vriendelijke groet / Kind regards 
Michiel Beijen
__
MANSOLUTIONS
Energieweg 60-62
3771 NA Barneveld
The Netherlands
Tel. +31-(0)612968592
Mail [EMAIL PROTECTED]
Internet http://bsm.mansolutions.nl

On 6/25/07, Dignard, Norman  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

On this same subject, where can I find the 1.9 Windows binaries? I can
across a link for 1.84 windows binaries. 

 

Regards,

Norm 

 

  _  

From: Dignard, Norman 
Sent: June 25, 2007 03:16 PM
To: '[EMAIL PROTECTED]'
Subject: ARSPerl 1.90 setup

 

 

Can someone shed some light on ARSperl setup. I'm new to this as our
previous admin guy is gone without much documentation.  The ARSperl docs
aren't very clear.

 

We've setup new servers with the latest ARS version as follows:

 

Our env -  Windows Server 2003 R2 SP1, Enterprise Edition 64bit with AR
server 7.01 p3 using Oracle 10gR2 64bit  email engine 7.01 p3

HPUX 11.31 (IA64) with jakarta tomcat 5.0.28, java 1.4  with midtier
7.0.1 p3. 

 

Our thoughts on this is to install Active State's perl 5.8.8.820 (64
bit) on the AR db server as well as ARSperl .

Our previous setup was AR server 6 on HPUX 10.20 and all they had was a
few arsperl 1.71 files (@10 files).   There's allot more when extracting
the 1.9 files.

 

According to the docs it says to use the Windows binaries from the
distribution so how to I do this. Where to I extract the files too? Is
c:\arsperl-1.90 ok? Any env variables to set?

Any other setup required? 

 Regards,

Norm 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar http://sourceforge.net/powerbar/db2/
/db2/ http://sourceforge.net/powerbar/db2/ 
___
Arsperl-users mailing list 
Arsperl-users@arsperl.org
https://lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arsperl-users
/lists/listinfo/arsperl-users
https://lists.sourceforge.net/lists/listinfo/arsperl-users 




-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerba http://sourceforge.net/powerbar/db2/
r/db2/ http://sourceforge.net/powerbar/db2/ 
___
Arsperl-users mailing list
Arsperl-users@arsperl.org 
https://lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arsperl-users
/lists/listinfo/arsperl-users
https://lists.sourceforge.net/lists/listinfo/arsperl-users 


 

__20060125___This posting was submitted with HTML in
it___

Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-27 Thread Dignard, Norman
Installing 32 bit perl solved my problem

 

Regards,

Norm 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-27 Thread Michiel Beijen

Yup, I guess that will be the solution...
There are no 64-bit Remedy libraries available so far, so there is no point
in running 64-bit Perl.
Remedy said their next major release would have 64-bit libraries.
--
Met vriendelijke groet / Kind regards
Michiel Beijen
__
MANSOLUTIONS
Energieweg 60-62
3771 NA Barneveld
The Netherlands
Tel. +31-(0)612968592
Mail [EMAIL PROTECTED]
Internet http://bsm.mansolutions.nl

On 6/27/07, Dignard, Norman [EMAIL PROTECTED] wrote:


 Installing 32 bit perl solved my problem



Regards,

Norm


 --

*From:* Dignard, Norman
*Sent:* June 27, 2007 01:33 PM
*To:* 'Steve'; '[EMAIL PROTECTED]'; Arsperl-users@arsperl.org
*Subject:* RE: [Arsperl-users] ARSPerl 1.90 setup



We're running 64bit Windows 2003 server, 64 bit Oracle 10gR2 and have
installed Perl 64 bit.

In trying to run the ppm install ARS.ppd cmd I get The PPD does not
provide code to install on this platform



Also in our perl64 install there is no auto directory. I assume the
directory hierarchy needs to be createdC:\perl64\site\lib\auto\ARS
correct?

What do I need to setup ARSperl on 64 bit windows?



Regards,

Norm


 --

*From:* Steve [mailto:[EMAIL PROTECTED]
*Sent:* June 26, 2007 01:07 AM
*Subject:* Re: [Arsperl-users] ARSPerl 1.90 setup



** Here are the step-by-step instructions to install ARSPERL on Windows.



1) Download and install ActivePERL for windows (google for activeperl).
Install it to C:\PERL folder.

2) Download the win701p1.tar.gz  file from
http://arswiki.org/projects/arapi/downloads**

 and unzip.

3) In the  win701p1.tar.gz file, there will be a folder called 'lib'.
Copy all the files (CTRL A + CTRL C).

4) Create a new directory - C:\perl\site\lib\auto\ARS - and paste all the
files copied in Step 3)

5) Download http://remedydeveloper.org/ARSperl_190_701.zip to C:\ drive.
and unzip all contents. There should be a file named 'ARS.ppd'

6) Go to start - Run and type 'cmd' (Open command prompt). Change
directory to the one containing the 'ARS.ppd' file.

7) Type ppm install ARS.ppd and this should install the ARSPERL module.





Doubts

=

a) What is the purpose of 'win701p2.tar.gz file present on the arswiki
download page?





Enjoy :-)



Steve.









On 6/26/07, *Michiel Beijen*  [EMAIL PROTECTED] wrote:

Norm,

I just created a Windows PPM package you can use; you can download it from

http://remedydeveloper.org/ARSperl_190_701.zip
There is a readme file inside with instructions on how to install.

HTH,

--
Met vriendelijke groet / Kind regards
Michiel Beijen
__
MANSOLUTIONS
Energieweg 60-62
3771 NA Barneveld
The Netherlands
Tel. +31-(0)612968592
Mail [EMAIL PROTECTED]
Internet http://bsm.mansolutions.nl

On 6/25/07, *Dignard, Norman*  [EMAIL PROTECTED] wrote:

On this same subject, where can I find the 1.9 Windows binaries? I can
across a link for 1.84 windows binaries.



Regards,

Norm


 --

*From:* Dignard, Norman
*Sent:* June 25, 2007 03:16 PM
*To:* '[EMAIL PROTECTED]'
*Subject:* ARSPerl 1.90 setup





Can someone shed some light on ARSperl setup. I'm new to this as our
previous admin guy is gone without much documentation.  The ARSperl docs
aren't very clear.



We've setup new servers with the latest ARS version as follows:



Our env -  Windows Server 2003 R2 SP1, Enterprise Edition 64bit with AR
server 7.01 p3 using Oracle 10gR2 64bit  email engine 7.01 p3

HPUX 11.31 (IA64) with jakarta tomcat 5.0.28, java 1.4  with midtier 7.0.1p3.



Our thoughts on this is to install Active State's perl 5.8.8.820 (64 bit)
on the AR db server as well as ARSperl .

Our previous setup was AR server 6 on HPUX 10.20 and all they had was a
few arsperl 1.71 files (@10 files).   There's allot more when extracting
the 1.9 files.



According to the docs it says to use the Windows binaries from the
distribution so how to I do this. Where to I extract the files too? Is
c:\arsperl-1.90 ok? Any env variables to set?

Any other setup required?

 Regards,

Norm


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar 
http://sourceforge.net/powerbar/db2//db2/http://sourceforge.net/powerbar/db2/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/arsperl-users
/lists/listinfo/arsperl-usershttps://lists.sourceforge.net/lists/listinfo/arsperl-users



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits

Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-26 Thread Dignard, Norman
Thanks. Saves me allot of headaches.

Regards,

Norm 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeff Murphy
Sent: June 25, 2007 04:34 PM
To: ARSperl User Discussion
Subject: Re: [Arsperl-users] ARSPerl 1.90 setup

Michiel Beijen wrote:
 Norm,
 
 I just created a Windows PPM package you can use; you can download it
from
 http://remedydeveloper.org/ARSperl_190_701.zip
 There is a readme file inside with instructions on how to install.
 
 HTH,
 


I uploaded this file to SF.net

jeff


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSPerl 1.90 setup

2007-06-25 Thread Jeff Murphy
Michiel Beijen wrote:
 Norm,
 
 I just created a Windows PPM package you can use; you can download it from
 http://remedydeveloper.org/ARSperl_190_701.zip
 There is a readme file inside with instructions on how to install.
 
 HTH,
 


I uploaded this file to SF.net

jeff

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl 1.90 Binary for Windows

2007-04-26 Thread Keahbone, Kenneth G
Does anyone have a build of 1.90 for Windows.  All I could find is 1.84.

Thanks,

Ken Keahbone
Sandia National Laboratories
[EMAIL PROTECTED]



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] ARSperl 1.90 available on SF

2007-03-14 Thread strauss
If anyone gets an installer built for Windows that will work on Win2K3
Server, please post it somewhere for those of us who are way too busy
swatting the incredible number of bugs in ITSM 7 to try to figure out
how to compile it.  Thanks in advance.

Christopher Strauss, Ph.D.
Remedy Database Administrator
University of North Texas Computing Center
http://remedy.unt.edu/helpdesk/
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeff Murphy
Sent: Tuesday, March 13, 2007 8:41 AM
To: ARSperl User Discussion
Subject: [Arsperl-users] ARSperl 1.90 available on SF

Many thanks to Thilo for the tremendous amount of work he put into this
release!

http://arsperl.sourceforge.net/changes.html


-
Take Surveys. Earn Cash. Influence the Future of IT Join
SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDE
V
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


[Arsperl-users] ARSPerl - Windows 2000

2006-12-07 Thread Christopher Rogall
Hi All,

Does anyone have ARS Perl for Remedy version 6.3 compiled for Windows 
2000?  
My compiler give me a lot of errors. 

Here are my Steps:

1. Install MS-Virtual Studio 6.0
2. Download and install nmake.exe, ARSPerl 1.85, Perl (PXPerl)
3. Change options in Makefile.PL
4. perl Makefile.pl (runs without errors or warnings)
5. nmake (errors!!!)
   Here is a summary


Microsoft (R) Program Maintenance Utility   Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.

cl -c  -IC:\PXPerl/include  -nologo -O2 -GF -W3 -MD -Zi -DNDEBUG -DWIN32
 -D_CONSOLE -DNO_STRICT -DHAVE_DES_FCRYPT -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICI
T_SYS -DUSE_PERLIO -DPERL_MSVCRT_READFIX -I -DVERSION=\1.84\  -DXS_VERSION
=\1.84\  -IC:\PXPerl\lib\CORE  -D_WIN32  -DARS32  -DARS452  -DPERL_PATCHLEVE
L_IS=8 -DPERL_SUBVERSION_IS=7 -DPERL_BASEREV_IS=50 ARS.c
ARS.c
fatal error C1007: unrecognized flag '-zm0x7468' in 'c1'
NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return code '0x2'
Stop.

Can anyone help me, it is imperative.

Thx
Chris

-- 
Ein Herz für Kinder - Ihre Spende hilft! Aktion: www.deutschlandsegelt.de
Unser Dankeschön: Ihr Name auf dem Segel der 1. deutschen America's Cup-Yacht!

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] Arsperl-users Digest, Vol 7, Issue 9

2006-11-30 Thread Tracy_Laursen
Are you sure your Form Name is correct? Is it HPD:HelpDesk or HPD:Help Desk?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, November 29, 2006 2:13 PM
To: arsperl-users@arsperl.org
Subject: Arsperl-users Digest, Vol 7, Issue 9


Send Arsperl-users mailing list submissions to
arsperl-users@arsperl.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/arsperl-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Arsperl-users digest...


Today's Topics:

   1. segfault with ArsPerl 1.85 (Barbara Jensen)
   2. Re: segfault with ArsPerl 1.85 (Michiel Beijen)


--

Message: 1
Date: Tue, 28 Nov 2006 15:25:47 -0500
From: Barbara Jensen [EMAIL PROTECTED]
Subject: [Arsperl-users] segfault with ArsPerl 1.85
To: arsperl-users@arsperl.org
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=US-ASCII

I'm running ArsPerl 1.85, compiled against 5.1.2 Remedy lib.

I can build a connection object, but if I try to open a form, I get
ARERR #149.  If I just connect and exit, it segfaults on exit.  

Here is my script and output:

---
#!/usr/local/bin/perl5  
# 
 
use ARS; 
$server = 'remedy1.andrew.cmu.edu'; 
$userid = 'blk'; 
$passwd = 'remedy'; 
 
## get connection 
my $connection =  
  new ARS ( 
   -server   = $server, 
   -username = $userid, 
   -password = $passwd, 
   -catch = undef, 
   -ctrl = undef, 
   -debug = 1 
  ); 
 
die(Unable to connect to server\n) 
  unless ($connection); 
 
$connection-print() if $connection; 
 
print got connection\n; 
#exit; 
 
## open form 
my $FormName = HPD:HelpDesk; 
my $form = $connection-openForm( 
 -form = $FormName, 
 -vui = undef 
); 
 
print got form\n; 
exit; 

---

% ./arsconnect
new connection object: (remedy1.andrew.cmu.edu, blk, remedy)
connection object details:
cacheId   = ARControlStructPtr=SCALAR(0x8413bc8)
operationTime = Wed Dec 31 19:00:00 1969
user  = 
password  = 
server= 
lang  = 
got connection
[ERROR] Cannot open catalog; Message number = 149 () (ARERR #149)

TRACEBACK:

exception generated at
/usr/local/lib/perl5/site_perl/5.8.6/i686-linux-thread-multi-64int-ld/ARSOOform.pm
line 47
ARS::form::new('ARS::form', '-form', 'HPD:HelpDesk', '-vui',
'undef', '-connection', 'ARS=HASH(0x8413b48)') called at
/usr/local/lib/perl5/site_perl/5.8.6/i686-linux-thread-multi-64int-ld/ARSOOsup.pm
line 138
ARS::openForm('ARS=HASH(0x8413b48)', '-form', 'HPD:HelpDesk',
'-vui', 'undef') called at ./arsconnect line 30

destroying connection object: ars_Logoff called.
Segmentation fault
% 

Any ideas on how to debug this?  

Thanks,
barbara



--

Message: 2
Date: Wed, 29 Nov 2006 10:01:18 +0100
From: Michiel Beijen [EMAIL PROTECTED]
Subject: Re: [Arsperl-users] segfault with ArsPerl 1.85
To: ARSperl User Discussion arsperl-users@arsperl.org
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

Hi Barbara,

I guess the problem is in the fact that you should compile ARSPerl against
the Remedy 6.3 libs. You can use ARSPerl to connect to pre-6.3 servers
without any problems, but you should use the 6.3 libs to compile it with.
You can find these in the API directory of the server. You do not need to
install the 6.3 server, just unzip the file and copy the api directory.

Kind regards,

Michiel

On 11/28/06, Barbara Jensen [EMAIL PROTECTED] wrote:

 I'm running ArsPerl 1.85, compiled against 5.1.2 Remedy lib.

 I can build a connection object, but if I try to open a form, I get
 ARERR #149.  If I just connect and exit, it segfaults on exit.

 Here is my script and output:

 ---
 #!/usr/local/bin/perl5
 #

 use ARS;
 $server = 'remedy1.andrew.cmu.edu';
 $userid = 'blk';
 $passwd = 'remedy';

 ## get connection
 my $connection =
   new ARS (
-server   = $server,
-username = $userid,
-password = $passwd,
-catch = undef,
-ctrl = undef,
-debug = 1
   );

 die(Unable to connect to server\n)
   unless ($connection);

 $connection-print() if $connection;

 print got connection\n;
 #exit;

 ## open form
 my $FormName = HPD:HelpDesk;
 my $form = $connection-openForm(
  -form = $FormName,
  -vui = undef
 );

 print got form\n;
 exit;

 ---

 % ./arsconnect
 new connection 

Re: [Arsperl-users] ARSPERL and ARS 7.0

2006-10-24 Thread Jeff Murphy
On Tue, 2006-10-24 at 14:45 -0400, Chris Smith wrote:
 Hello,
 I was curious if anyone is using arsperl with ARSv7.0.
 We are in the process of an upgrade and I notice that arsperl.org lists 
 arsperl 1.85 as supporting up to ars6.3 API.
 Will it work with 7.0 API limited to 6.3 functions?
 Will it work at all?


At present, you'd have to compile against the 6.3 libraries.

jeff





-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] Arsperl-users Digest, Vol 3, Issue 2

2006-07-06 Thread Barr, Scott
Yeah, this is not an ars_GetListEntry() problem.  :|  I wish it were that 
simple.

A simple script that makes two calls: ars_Login(); ars_Logoff() seg faults.

-Scott
Remedy Team
Ph : (206) 266-0217

Remedy Team Office Hours: 
Monday, Wednesday and Friday from 14:00 till 15:00 PST.

* Be sure to sign up to Remedy-News@ to keep up to date on changes to the 
Remedy service!
* SDE's should sign up to Remedy-Hackers@ for technical help and assistance.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Sent: Wednesday, July 05, 2006 4:43 PM
To: arsperl-users@arsperl.org
Subject: Re: [Arsperl-users] Arsperl-users Digest, Vol 3, Issue 2

Have you checked the new parameters for getlistentry? They have changed and 
will return no data if you don't update your scripts.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, July 05, 2006 11:50 AM
To: arsperl-users@arsperl.org
Subject: Arsperl-users Digest, Vol 3, Issue 2


Send Arsperl-users mailing list submissions to
arsperl-users@arsperl.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/arsperl-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Arsperl-users digest...


Today's Topics:

   1. Re: ARSPerl and Perl 5.8.6 issues (Barr, Scott)
   2. (no subject) (Srini Naidu)
   3. Re: ARSPerl and Perl 5.8.6 issues (Barr, Scott)


--

Message: 1
Date: Wed, 5 Jul 2006 09:10:01 -0700
From: Barr, Scott [EMAIL PROTECTED]
Subject: Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues
To: ARSperl User Discussion arsperl-users@arsperl.org
Message-ID:
[EMAIL PROTECTED]

Content-Type: text/plain;   charset=us-ascii

I'll download it and give it a try.  I'll let you know how it goes!

Thank you!

-Scott
Remedy Team
Ph : (206) 266-0217

Remedy Team Office Hours: 
Monday, Wednesday and Friday from 14:00 till 15:00 PST.

* Be sure to sign up to Remedy-News@ to keep up to date on changes to the 
Remedy service!
* SDE's should sign up to Remedy-Hackers@ for technical help and assistance.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thilo Stapff
Sent: Tuesday, July 04, 2006 12:29 PM
To: ARSperl User Discussion
Subject: Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues

The segfaults on script termination are possibly caused by a bug in the 
DESTROY() function for ARControlStruct. This is fixed in the latest 
developer version, which you can download via CVS. See

http://sourceforge.net/cvs/?group_id=116013


To say anything about the no data returned issues, I'd need more 
specific information, e.g. a sample script that shows the described 
behaviour.

Regards
Thilo Stapff



Barr, Scott wrote:
 Has anyone been able to get ARSPerl 1.85 to compile and work with Perl 
 5.8.6? 
 
 * Did you have to do anything special to the make files? 
 
 * Did you do this on a 64 or 32 bit integer system?
 
  
 
 I am having issues with no data being returned from method calls and seg 
 faults on script termination...
 
  
 
 I have searched the ARSPerl Archives but have only found issues with 
 perl 5.8.6 and no solutions.  :|
 
  
 
 Any input would be great appreciated.
 
  
 
 Red Hat Enterprise Linux WS release 3 (Taroon Update 4) 2.6.12-0.2axenU
 
 ARSPerl 1.85 compiled with 6.3 libs
 
 Perl 5.8..6
 
 Connecting to AR Server: 5.1.2p1389
 
  
 
 -Scott
 Remedy Team
 Ph : (206) 266-0217
 
 *Remedy Team Office Hours*:
 Monday, Wednesday and Friday from 14:00 till 15:00 PST.
 
 ** Be sure to sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-news* to keep 
 up to date on changes to the Remedy service!*
 ** SDE's should sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-hackers* for 
 technical help and assistance.*
 
  
 
 
 
 
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 
 
 
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM

Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues

2006-07-05 Thread Barr, Scott
I'll download it and give it a try.  I'll let you know how it goes!

Thank you!

-Scott
Remedy Team
Ph : (206) 266-0217

Remedy Team Office Hours: 
Monday, Wednesday and Friday from 14:00 till 15:00 PST.

* Be sure to sign up to Remedy-News@ to keep up to date on changes to the 
Remedy service!
* SDE's should sign up to Remedy-Hackers@ for technical help and assistance.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thilo Stapff
Sent: Tuesday, July 04, 2006 12:29 PM
To: ARSperl User Discussion
Subject: Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues

The segfaults on script termination are possibly caused by a bug in the 
DESTROY() function for ARControlStruct. This is fixed in the latest 
developer version, which you can download via CVS. See

http://sourceforge.net/cvs/?group_id=116013


To say anything about the no data returned issues, I'd need more 
specific information, e.g. a sample script that shows the described 
behaviour.

Regards
Thilo Stapff



Barr, Scott wrote:
 Has anyone been able to get ARSPerl 1.85 to compile and work with Perl 
 5.8.6? 
 
 * Did you have to do anything special to the make files? 
 
 * Did you do this on a 64 or 32 bit integer system?
 
  
 
 I am having issues with no data being returned from method calls and seg 
 faults on script termination...
 
  
 
 I have searched the ARSPerl Archives but have only found issues with 
 perl 5.8.6 and no solutions.  :|
 
  
 
 Any input would be great appreciated.
 
  
 
 Red Hat Enterprise Linux WS release 3 (Taroon Update 4) 2.6.12-0.2axenU
 
 ARSPerl 1.85 compiled with 6.3 libs
 
 Perl 5.8..6
 
 Connecting to AR Server: 5.1.2p1389
 
  
 
 -Scott
 Remedy Team
 Ph : (206) 266-0217
 
 *Remedy Team Office Hours*:
 Monday, Wednesday and Friday from 14:00 till 15:00 PST.
 
 ** Be sure to sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-news* to keep 
 up to date on changes to the Remedy service!*
 ** SDE's should sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-hackers* for 
 technical help and assistance.*
 
  
 
 
 
 
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 
 
 
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users


Re: [Arsperl-users] Arsperl-users Digest, Vol 3, Issue 2

2006-07-05 Thread Tracy_Laursen
Have you checked the new parameters for getlistentry? They have changed and 
will return no data if you don't update your scripts.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, July 05, 2006 11:50 AM
To: arsperl-users@arsperl.org
Subject: Arsperl-users Digest, Vol 3, Issue 2


Send Arsperl-users mailing list submissions to
arsperl-users@arsperl.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/arsperl-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Arsperl-users digest...


Today's Topics:

   1. Re: ARSPerl and Perl 5.8.6 issues (Barr, Scott)
   2. (no subject) (Srini Naidu)
   3. Re: ARSPerl and Perl 5.8.6 issues (Barr, Scott)


--

Message: 1
Date: Wed, 5 Jul 2006 09:10:01 -0700
From: Barr, Scott [EMAIL PROTECTED]
Subject: Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues
To: ARSperl User Discussion arsperl-users@arsperl.org
Message-ID:
[EMAIL PROTECTED]

Content-Type: text/plain;   charset=us-ascii

I'll download it and give it a try.  I'll let you know how it goes!

Thank you!

-Scott
Remedy Team
Ph : (206) 266-0217

Remedy Team Office Hours: 
Monday, Wednesday and Friday from 14:00 till 15:00 PST.

* Be sure to sign up to Remedy-News@ to keep up to date on changes to the 
Remedy service!
* SDE's should sign up to Remedy-Hackers@ for technical help and assistance.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thilo Stapff
Sent: Tuesday, July 04, 2006 12:29 PM
To: ARSperl User Discussion
Subject: Re: [Arsperl-users] ARSPerl and Perl 5.8.6 issues

The segfaults on script termination are possibly caused by a bug in the 
DESTROY() function for ARControlStruct. This is fixed in the latest 
developer version, which you can download via CVS. See

http://sourceforge.net/cvs/?group_id=116013


To say anything about the no data returned issues, I'd need more 
specific information, e.g. a sample script that shows the described 
behaviour.

Regards
Thilo Stapff



Barr, Scott wrote:
 Has anyone been able to get ARSPerl 1.85 to compile and work with Perl 
 5.8.6? 
 
 * Did you have to do anything special to the make files? 
 
 * Did you do this on a 64 or 32 bit integer system?
 
  
 
 I am having issues with no data being returned from method calls and seg 
 faults on script termination...
 
  
 
 I have searched the ARSPerl Archives but have only found issues with 
 perl 5.8.6 and no solutions.  :|
 
  
 
 Any input would be great appreciated.
 
  
 
 Red Hat Enterprise Linux WS release 3 (Taroon Update 4) 2.6.12-0.2axenU
 
 ARSPerl 1.85 compiled with 6.3 libs
 
 Perl 5.8..6
 
 Connecting to AR Server: 5.1.2p1389
 
  
 
 -Scott
 Remedy Team
 Ph : (206) 266-0217
 
 *Remedy Team Office Hours*:
 Monday, Wednesday and Friday from 14:00 till 15:00 PST.
 
 ** Be sure to sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-news* to keep 
 up to date on changes to the Remedy service!*
 ** SDE's should sign up to* [EMAIL PROTECTED] 
 http://internal.amazon.com/email-list/expand-list/remedy-hackers* for 
 technical help and assistance.*
 
  
 
 
 
 
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 
 
 
 ___
 Arsperl-users mailing list
 Arsperl-users@arsperl.org
 https://lists.sourceforge.net/lists/listinfo/arsperl-users


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users



--

Message: 2
Date: Wed, 5 Jul 2006 12:13:49 -0400
From: Srini Naidu [EMAIL PROTECTED]
Subject: [Arsperl-users] (no subject)
To: ARSperl User Discussion arsperl-users@arsperl.org
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=US-ASCII

unsubcsribe



--
This e-mail may contain confidential and/or privileged information. If you

[Arsperl-users] ARSPerl and Perl 5.8.6 issues

2006-07-03 Thread Barr, Scott








Has anyone been able to get ARSPerl 1.85 to compile and work
with Perl 5.8.6? 

* Did you have to do anything
special to the make files? 

* Did you do this on a 64 or 32 bit
integer system?



I am having issues with no data being returned from method
calls and seg faults on script termination...



I have searched the ARSPerl Archives but have only found
issues with perl 5.8.6 and no solutions. :|



Any input would be great appreciated.



Red Hat Enterprise Linux WS release 3 (Taroon Update 4) 2.6.12-0.2axenU

ARSPerl 1.85 compiled with 6.3 libs

Perl 5.8..6

Connecting to AR Server: 5.1.2p1389



-Scott 
Remedy Team 
Ph : (206) 266-0217 

Remedy Team Office Hours: 
Monday, Wednesday and Friday from 14:00
till 15:00 PST. 

* Be sure to sign up to Remedy-News@ to keep up to date on changes to
the Remedy service! 
* SDEs should
sign up to Remedy-Hackers@ for technical help and assistance.









Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users