Re: [U2] uniobjects dll question

2013-07-12 Thread Jeff Schasny
Doug, The .dll does not need to be installed. Visual Studio will include it in the installation package for your C# application after you add it to the project. doug chanco wrote: Is it possible to just put the uniobjects dll on a system without installing it? I am working on a home

Re: [U2] uniobjects dll question

2013-07-12 Thread Tony Gravagno
doug chanco wrote: Is it possible to just put the uniobjects dll on a system without installing it? I am working on a home project where I have an android app call a web service to get UV data from my linux server. I have a hosted system running windows server and I am working on a c#

Re: [U2] uniobjects dll question

2013-07-12 Thread Jeff Schasny
S... like I said, you don't need to install it on the client. If I add a reference to the UODOTNET.dll to the project references it includes the .dll on publish. Every time. Granted, I'm writing in VB not C#, so maybe things are different over there where the cool kids hang out. Tony

Re: [U2] UniObjects + Java Packages

2013-04-16 Thread Doug Averch
You have to convert the asjava.zip to a jar file. Then you need to add asjava.jar to your lib file. Good luck with your project. Regards, Doug www.u2logic.com Real tools for Eclipse for U2 Programmers ___ U2-Users mailing list

Re: [U2] UniObjects + Java Packages

2013-04-16 Thread Doug Averch
You have to convert the asjava.zip to a jar file. Then you need to add asjava.jar to your lib file. Good luck with your project. Regards, Doug www.u2logic.com Real tools for Eclipse for U2 Programmers ___ U2-Users mailing list

Re: [U2] UniObjects Java Packages

2013-04-16 Thread Daniel McGrath
There should be no need to rename the asjava.zip file. Just follow this previous post. On windows the default install location (You need to have installed UniDK from U2 Clients) is c:\u2\unidk\uojsdk\lib On Thu, Dec 10, 2009 at 3:48 PM, Bob Little Bobl at marketamerica.com wrote: You should

Re: [U2] UniObjects Java Packages

2013-04-16 Thread William Brutzman
Victory... Bob Little's thing worked Thanks to Dan and Doug. Some tweaked PickWiki code follows from Wm Terry and Wendy Smoak. --Bill package whome; import asjava.uniobjects.*; import asjava.uniclientlibs.*; public class YesYou3 { public static void main(String args[]) { UniFile

Re: [U2] Uniobjects session timeouts (Universe on Windows)

2012-10-19 Thread John Hester
The unirpcservices file controls the various unirpc connection timeouts on linux. I'm guessing it's the same for windows. The setting is in seconds, and the default is an hour: uvnet /usr/ibm/uv/bin/uvnetd * TCP/IP 0 3600 uvdrsrv /usr/ibm/uv/bin/uvdrsrvd * TCP/IP 0 3600 uvserver

Re: [U2] Uniobjects session timeouts (Universe on Windows)

2012-10-19 Thread Wjhonson
Thanks John -Original Message- From: John Hester jhes...@momtex.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Fri, Oct 19, 2012 1:12 pm Subject: Re: [U2] Uniobjects session timeouts (Universe on Windows) The unirpcservices file controls the various unirpc connection

Re: [U2] Uniobjects session timeouts (Universe on Windows)

2012-10-19 Thread John Jenkins
The usual reasons are an RPC timeout (check unirpcservices - default 3600) or needing a keep alive on a VPN or firewall. Regards JayJay On 19 Oct 2012, at 18:54, Wjhonson wjhon...@aol.com wrote: What are the various factors that control if and when a Uniobjects session will timeout?

Re: [U2] Uniobjects session timeouts (Universe on Windows)

2012-10-19 Thread Wjhonson
Yeah I think that's most likely the culprit. Thanks. -Original Message- From: John Jenkins u2g...@btinternet.com To: U2 Users List u2-users@listserver.u2ug.org Cc: u2-users u2-users@listserver.u2ug.org Sent: Fri, Oct 19, 2012 2:01 pm Subject: Re: [U2] Uniobjects session

Re: [U2] uniobjects running as?

2012-07-24 Thread Daniel McGrath
The UniRPC/UniObjects process starts of running as root. Once you log in, it changes user to whoever you log in as (the credentials supply to UniObjects). Regards, Dan -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf

Re: [U2] uniobjects running as?

2012-07-24 Thread Doug Averch
Hi Doug (Great Name): UniObjects has two components. First the unirpc process runs as you have setup on startup: Windows usually as the administrator user while on UNIX it can be root but should not be for obvious reasons.. You connection, however, is what user you have setup when you open your

Re: [U2] uniobjects running as?

2012-07-24 Thread Wjhonson
You setup the namefor the uniobjects user. It's not set by the system, it's set by your routines that open connections as... so-and-so. -Original Message- From: douglas chanco d...@chancofamily.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Tue, Jul 24, 2012 8:26 am

Re: [U2] uniobjects running as?

2012-07-24 Thread Symeon Breen
The rpc deamon will run as root, but when it spawns a udt process to fulfil your uniobjects process it will spawn it as the user you use in the uniobjects session. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of

Re: [U2] uniobjects running as?

2012-07-24 Thread douglas chanco
thanks Dan, I am a bit confused as to why when I accept the certificate issue and run the program from TCL it works fine but if I run it from my c# app (logging in as the same user) I get the message to accept the certificate again (when I already accepted it permanently from tcl) I

Re: [U2] uniobjects running as?

2012-07-24 Thread Wjhonson
10:51 am Subject: Re: [U2] uniobjects running as? thanks Dan, I am a bit confused as to why when I accept the certificate issue and run he program from TCL it works fine but if I run it from my c# app (logging in as he same user) I get the message to accept the certificate again (when I

Re: [U2] uniobjects running as?

2012-07-24 Thread Wols Lists
On 24/07/12 18:57, Wjhonson wrote: Why would it not use the env settings of the user you log in as in uniobjects? Why don't you try to log in as that user yourself and check the settings Why wouldn't it use the env settings? Because if it's on nix, and starts as root then changes user, it needs

Re: [U2] uniobjects running as?

2012-07-24 Thread Wjhonson
On nix, when you change users, you are saying it does not set any environment variables ? -Original Message- From: Wols Lists antli...@youngman.org.uk To: u2-users u2-users@listserver.u2ug.org Sent: Tue, Jul 24, 2012 11:59 am Subject: Re: [U2] uniobjects running as? On 24/07/12 18

Re: [U2] uniobjects running as?

2012-07-24 Thread douglas chanco
As a regular user when you login you can have a local .profile (assuming your using ksh which I am) which is sourced after loading the system profile (/etc/profile) when logging in as a uniobjects user you really don't have a home directory and it doesn't execute the .profile in your home

Re: [U2] uniobjects running as?

2012-07-24 Thread Wols Lists
24, 2012 11:59 am Subject: Re: [U2] uniobjects running as? On 24/07/12 18:57, Wjhonson wrote: Why would it not use the env settings of the user you log in as in uniobjects? Why don't you try to log in as that user yourself and check the settings Why wouldn't it use the env settings

Re: [U2] Uniobjects and Record Locking

2012-01-10 Thread David Wolverton
Post back the cause and fix if you can - I know I'd be interested! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Monday, January 09, 2012 4:11 PM To: U2 Users List Subject: Re: [U2] Uniobjects

Re: [U2] Uniobjects and Record Locking

2012-01-09 Thread Bill Haskett
Done! :-) Thanks, Bill - Original Message - *From:* wterh...@rocketsoftware.com *To:* U2 Users List u2-users@listserver.u2ug.org *Date:* 1/8/2012 7:17 PM *Subject:* Re: [U2] Uniobjects and Record Locking Just

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread David Jordan
It is possible that design base is running a separate locking mechanism that it is caching. The Uniobjects connection involves pooling where multiple user accesses use one UniVerse Login. This is different to a telnet connection with one user per login. If DesignBase cannot identify the

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread John Jenkins
If DesignBais is using it's own connection pooling or cacheing mechanism then it's possible the update request is not being made on the same UniObjects connection on which the lock was created. The result is exactly the same as you would expect from two different TELNET sessions - one locks the

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread Bill Haskett
with Uniobjects. Thanks again, Bill - Original Message - *From:* da...@dacono.com.au *To:* U2 Users List u2-users@listserver.u2ug.org *Date:* 1/8/2012 1:33 AM *Subject:* Re: [U2] Uniobjects and Record Locking It is possible

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread Bill Haskett
- Original Message - *From:* u2g...@btinternet.com *To:* 'U2 Users List' u2-users@listserver.u2ug.org *Date:* 1/8/2012 8:29 AM *Subject:* Re: [U2] Uniobjects and Record Locking If DesignBais is using it's own connection pooling or cacheing

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread David Jordan
or LIST.READU ALL Regards David Jordan -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Monday, 9 January 2012 6:34 AM To: U2 Users List Subject: Re: [U2] Uniobjects and Record Locking David

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread David Jordan
Hi Bill You cannot assume the exit of a subroutine clears locks. The way DB works, I suspect that DB has a worker program that calls routines. If that worker program does not stop then locks may not be cleared. When you restart UO you are only then clearing a persistent lock. Also check

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread Wally Terhune
...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Sunday, January 08, 2012 12:48 PM To: U2 Users List Subject: Re: [U2] Uniobjects and Record Locking John: As a note, we've been programming in web paradigms for many years, and we mostly understand the difference between non-persistent web

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread Bill Haskett
Users List u2-users@listserver.u2ug.org *Date:* 1/8/2012 1:06 PM *Subject:* Re: [U2] Uniobjects and Record Locking UniData record locks are tied to a file variable. So if a file is opened in named common, a lock could persist after a subroutine exits. Of course, it would show up in LIST.READU

Re: [U2] Uniobjects and Record Locking

2012-01-08 Thread Wally Terhune
...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Sunday, January 08, 2012 7:46 PM To: U2 Users List Subject: Re: [U2] Uniobjects and Record Locking Wally: I can even re-create this (amazing isn't it?). :-) I'm here all day tomorrow after 10

Re: [U2] Uniobjects and Record Locking

2012-01-07 Thread Doug Averch
Bill: Your problem might have to do with DesignBais not connecting with the same connection as the first read. I don't know if there is a way to restrict DesignBais to use the same connection. Regards, Doug www.u2logic.com The other Web Developer company On Sat, Jan 7, 2012 at 4:16 PM, Bill

Re: [U2] Uniobjects and Record Locking

2012-01-07 Thread Bill Haskett
...@gmail.com *To:* U2 Users List u2-users@listserver.u2ug.org *Date:* 1/7/2012 6:18 PM *Subject:* Re: [U2] Uniobjects and Record Locking Bill: Your problem might have to do with DesignBais not connecting with the same connection as the first read. I don't know if there is a way to restrict DesignBais

Re: [U2] Uniobjects for Java and Domino 8

2011-12-14 Thread Brett Callacher
-users@listserver.u2ug.org Date: 12/07/2011 05:00 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun...@listserver.u2ug.org I missed this email. Q: Will UOJ be further developed and supported by Rocket in the future? A: Yes. There are no plans

Re: [U2] Uniobjects for Java and Domino 8

2011-12-14 Thread Daniel McGrath
Subject: Re: [U2] Uniobjects for Java and Domino 8 Hi Dan, Thanks for this information. Can you tell us if Rocket has any plans to further develop / support the original COM/OLE version of UniObjects? And in particular, are there any plans to release a 64 bit version? Thank you, Jim Stoner

Re: [U2] Uniobjects for Java and Domino 8

2011-12-14 Thread Charles_Shaffer
I've used both. There are syntax differences, especially with the UO,NET since it adheres to the CLR. Both libraries did what I needed. I don't know if UO,NET is a better solution, but it looks to me like it has been kept up-to-date better. I am interested in UOJ because of new

Re: [U2] Uniobjects for Java and Domino 8

2011-12-13 Thread Jim . Stoner
dmcgr...@rocketsoftware.com To: U2 Users List u2-users@listserver.u2ug.org Date: 12/07/2011 05:00 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun...@listserver.u2ug.org I missed this email. Q: Will UOJ be further developed and supported by Rocket

Re: [U2] Uniobjects for Java and Domino 8

2011-12-13 Thread Jim . Stoner
for any insights you care to share! Jim Stoner From: Symeon Breen syme...@gmail.com To: 'U2 Users List' u2-users@listserver.u2ug.org Date: 12/07/2011 01:18 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun...@listserver.u2ug.org Considering UOJ

Re: [U2] Uniobjects for Java and Domino 8

2011-12-13 Thread John Hester
] On Behalf Of jim.sto...@esc.edu Sent: Tuesday, December 13, 2011 1:40 PM To: U2 Users List Subject: Re: [U2] Uniobjects for Java and Domino 8 Hi, If Rocket is not going to be updating / supporting the original UniObjects, we're looking at either creating a wrapper for UO.net, or using UOJ. UOJ

Re: [U2] Uniobjects for Java and Domino 8

2011-12-13 Thread Symeon Breen
: 14 December 2011 00:21 To: U2 Users List Subject: Re: [U2] Uniobjects for Java and Domino 8 I only have experience with UOJ, so I can't offer any comparison, but I'd suggest the extensiveness of the feature set of each API may be a moot point depending on how you use them. For example, I've never

Re: [U2] Uniobjects for Java and Domino 8

2011-12-08 Thread Tony Gravagno
It was confirmed that UOJ isn't going away, which is good for legacy development. But my whole point was that for new development we don't need it, never did. From: Charles_Shaffer Tony, What you say is true, and those tools would be great in the right situation. But I am concerned about

Re: [U2] Uniobjects for Java and Domino 8

2011-12-08 Thread Charles_Shaffer
Analyst NTN-Bower Corporation From: Tony Gravagno 3xk547...@sneakemail.com To: u2-users@listserver.u2ug.org, Date: 12/08/2011 03:32 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun...@listserver.u2ug.org It was confirmed that UOJ isn't going

Re: [U2] Uniobjects for Java and Domino 8

2011-12-08 Thread Tony Gravagno
From: Charles_Shaffer Maybe I am asking the wrong question. Is there a better way to interface Domino 8.5 to Unidata than UOJ? IMO, UOJ probably is the best way. In the absence of anything approaching a IBM Domino Connector for U2, I'm thinking ODBC via Easysoft might be the only other

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Charles_Shaffer
Great information John and Robert. Looks like UOJ is getting mature. In my situation, it is attractive since we use Domino and Unidata extensively. But, I do not want to invest my time in something that won't be supported in the future. My question for Rocket is Will UOJ be further

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Symeon Breen
Subject: Re: [U2] Uniobjects for Java and Domino 8 Great information John and Robert. Looks like UOJ is getting mature. In my situation, it is attractive since we use Domino and Unidata extensively. But, I do not want to invest my time in something that won't be supported in the future. My

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread John Hester
Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of charles_shaf...@ntn-bower.com Sent: Wednesday, December 07, 2011 9:22 AM To: U2 Users List Subject: Re: [U2] Uniobjects for Java and Domino 8 Great information John and Robert. Looks

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Tony Gravagno
From: Charles Shaffer My question for Rocket is Will UOJ be further developed and supported by Rocket in the future? From: Symeon Breen Considering UOJ and UO.net are the only api's available for u2 I would have thought yes There's no good reason for that condition to exist. Rocket

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Daniel McGrath
- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of charles_shaf...@ntn-bower.com Sent: Wednesday, December 07, 2011 10:22 AM To: U2 Users List Subject: Re: [U2] Uniobjects for Java and Domino 8 Great information John and Robert. Looks like

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Charles_Shaffer
Tony, What you say is true, and those tools would be great in the right situation. But I am concerned about the future of UOJ. My understanding is that the new Domino will allow jars to be directly accessed from the Domino Designer. Just want to make sure that UOJ is not going to be

Re: [U2] Uniobjects for Java and Domino 8

2011-12-07 Thread Robert Colquhoun
Hello, Ok created a quick test routine to show problem(attached to end of post). It simply gets a record from the demo database and dumps the output, first the the system default character encoding, then setting file.encoding and finally clientencoding: $ echo $LANG en_US.UTF-8 $ java

Re: [U2] Uniobjects for Java and Domino 8

2011-12-05 Thread Robert Colquhoun
Hi John, On Fri, Dec 2, 2011 at 10:01 AM, John Hester jhes...@momtex.com wrote: We've been using UOJ with WebSphere App Server since around 2003.  Not quite the same as Domino, I realize, but at least under the same IBM Java middleware umbrella.  I can't offer a lot the way of best practices,

Re: [U2] Uniobjects for Java and Domino 8

2011-12-05 Thread Robert Colquhoun
On Tue, Dec 6, 2011 at 1:43 PM, Robert Colquhoun robert.colquh...@gmail.com wrote: It would be better for the rocket engineers to decide on a character encoding to talk to the server with and set it as a separate define(or hard code it maybe), according to oracle the basic encodings below

Re: [U2] Uniobjects for Java and Domino 8

2011-12-02 Thread Charles_Shaffer
The RedHat default is incorrect for UOJ (at least up to EL 5) and will result in MV delimiters being incorrectly translated into other ascii characters. Thanks for the tip. Looks like we do have a problem with the LANG setting. LANG=en_US.UTF-8 I'll check with IBM and see if changing it

Re: [U2] Uniobjects for Java and Domino 8

2011-12-02 Thread Charles_Shaffer
Thanks. This is very helpful. Charles Shaffer Senior Analyst NTN-Bower Corporation From: Tony Gravagno 3xk547...@sneakemail.com To: u2-users@listserver.u2ug.org, Date: 12/01/2011 10:18 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun

Re: [U2] Uniobjects for Java and Domino 8

2011-12-01 Thread Jim . Stoner
Hi, I'm also interested in any advice / best practices for UO for Java on Domino. It would certainly be nice to find a small user group to ask questions and bounce around best practices. I haven't tried using UniObjects for Java with Domino yet, but I have used the original OLE/COM version

Re: [U2] Uniobjects for Java and Domino 8

2011-12-01 Thread Charles_Shaffer
To: U2 Users List u2-users@listserver.u2ug.org, Date: 12/01/2011 02:53 PM Subject:Re: [U2] Uniobjects for Java and Domino 8 Sent by:u2-users-boun...@listserver.u2ug.org Hi, I'm also interested in any advice / best practices for UO for Java on Domino. It would certainly be nice

Re: [U2] Uniobjects for Java and Domino 8

2011-12-01 Thread John Hester
] On Behalf Of charles_shaf...@ntn-bower.com Sent: Thursday, December 01, 2011 1:08 PM To: U2 Users List Subject: Re: [U2] Uniobjects for Java and Domino 8 Jim Stoner Said It would certainly be nice to find a small user group to ask questions and bounce around best practices. I would definitely

Re: [U2] Uniobjects for Java and Domino 8

2011-12-01 Thread Tony Gravagno
I follow John's policy in all web integration. All external access comes through a single entry point which identifies the purpose of the connection and transfers to an appropriate subroutine. I also include logging abilities in most code, just in case. Code below is made up for this example

Re: [U2] uniobjects and multiple select lists

2011-08-21 Thread Curt Stewart
Doug, I don't know UniObjects well enough, but since its still the weekend, I figured I could throw out a thought until someone more knowledgeable in UniObjects respons. You should be able to select the list to a list number and then readnext from the assigned list number? In basic, Universe,

Re: [U2] uniobjects question

2011-08-09 Thread David Jordan
Subject: Re: [U2] uniobjects question [AD] [AD]While it may be impossible with UO, FusionWare's Direct Data Access Server supports a mechanism called EXEC TCL in which you can call any program that can be run from TCL, and pass it inputs, like a PROC or a CGI program. If you miss an input

Re: [U2] uniobjects question

2011-08-09 Thread Symeon Breen
to the front end, which can then display it somewhere. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno Sent: 09 August 2011 00:39 To: u2-users@listserver.u2ug.org Subject: Re: [U2] uniobjects question

Re: [U2] uniobjects question

2011-08-08 Thread Doug Chanco
I totally agree with your response but what me and the java developer are discussing is if it's even possible (I say nay) I will write a java program to test but I was hoping with the vast sea of knowledge on this group that someone would know, if it was possible or not Yes it should never be

Re: [U2] uniobjects question

2011-08-08 Thread David A. Green
...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Chanco Sent: Monday, August 08, 2011 6:57 AM To: U2 Users List Subject: Re: [U2] uniobjects question I totally agree with your response but what me and the java developer are discussing is if it's even possible (I say nay) I

Re: [U2] uniobjects question

2011-08-08 Thread Symeon Breen
the same with a phantom, as soon as it sees an input and there is no buffer, it dies. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Chanco Sent: 08 August 2011 14:57 To: U2 Users List Subject: Re: [U2] uniobjects

Re: [U2] uniobjects question

2011-08-08 Thread Holt, Jake
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen Sent: Monday, August 08, 2011 3:20 PM To: 'U2 Users List' Subject: Re: [U2] uniobjects question It isn't possible, the api_slave process will crash, probably leaving an screwed uvcs process, licencing will take a while to catch

Re: [U2] uniobjects question

2011-08-08 Thread Tony Gravagno
Doug, as confirmed by the experience of others, and confirming your own suspicion, we can say with certainty it's not possible to have a functional app where CRT and INPUT are encountered by UO. The only way to use traditional code like that is to skip UO and to use a telnet or SSH client from

Re: [U2] uniobjects question

2011-08-08 Thread David Jordan
I have done it Doug, but with the command processor not the subroutine call. I would run the program in the command and receive a string which I would interpret as either a result or a request for information, which I would then respond accordingly. It works but is cumbersome. There is also

Re: [U2] uniobjects question [AD]

2011-08-08 Thread Robert Houben
@listserver.u2ug.org Subject: Re: [U2] uniobjects question Doug, as confirmed by the experience of others, and confirming your own suspicion, we can say with certainty it's not possible to have a functional app where CRT and INPUT are encountered by UO. The only way to use traditional code like that is to skip UO

Re: [U2] uniobjects question

2011-08-06 Thread Tony Gravagno
I thought this coding paradigm was already universally accepted (pun intended). The code below exemplifies a number of techniques for processing remote requests. Specifically: - Never CRT or INPUT. - Never STOP on error, always return - Standardize the subroutine input signature so that all subs

Re: [U2] uniobjects question

2011-08-05 Thread Kate Stanton
This has been a problem with UniObjects from the beginning. When you are performing a subroutine which hits an INPUT, it just never comes back. You have to be doing an execute, which picks up everything put out with CRT etc and waits for input. On filling the input, it continues. Desired

Re: [U2] Uniobjects - What Is It?

2011-05-23 Thread Charles_Shaffer
:Re: [U2] Uniobjects - What Is It? Charles, how is the performance using the Java bridge? That's my #1 concern about UO right now (and UOJ by association) - when it takes about a couple of seconds just to spool up the connector and make that first connection, it's something to be questioned

Re: [U2] Uniobjects - What Is It?

2011-05-23 Thread Symeon Breen
To: U2 Users List Cc: U2 Users List; u2-users-boun...@listserver.u2ug.org Subject: Re: [U2] Uniobjects - What Is It? Kevin, when it takes about a couple of seconds just to spool up the connector and make that first connection I haven't noticed that with the Undiata as much as I have with remote

Re: [U2] Uniobjects - What Is It?

2011-05-20 Thread Charles_Shaffer
cc: Subject:Re: [U2] Uniobjects - What Is It? I'm interested to know more about how folks are using UOJ with PHP. I've tried making that connection numerous times but .. just haven't been successful yet. Big fan of PHP but using the UO connection on Windows is ... less

Re: [U2] Uniobjects - What Is It?

2011-05-20 Thread Doug Averch
[ad] We built a middle-ware connection using open source JavaPHP bridge after seeing Kevin do this hodge podge connection scheme using a COM UniObject at a CMUG meeting in Denver in 2009. Our middle-ware software is called U2WebLink and it manages the connections with Unidata or Universe using

Re: [U2] Uniobjects - What Is It?

2011-05-20 Thread FFT2001
In a message dated 5/19/2011 9:43:16 PM Pacific Daylight Time, dmc...@imb.com.au writes: Have you seen the PHP PDO driver article on u2devzone.com? Although it is a 'build it yourself article', it does come with the source code so you should be able to just compile and use it. Head + Wall

Re: [U2] Uniobjects on Linux

2011-05-19 Thread Steve Romanow
You set IsUnidata to True, was that intentional? On Thu, May 19, 2011 at 3:10 AM, Jonathan Leckie jonathan.lec...@blairswindows.co.uk wrote: Any thoughts as to what to check to fix this, I  used to be able to connect from the P.C. but not now, I can connect  using  UniAdmin but not other

Re: [U2] Uniobjects on Linux

2011-05-19 Thread Jonathan Leckie
It is a Unidata system, (version 6.1), should it not be set to true? -Original Message- From: Steve Romanow [mailto:slestak...@gmail.com] Sent: 19 May 2011 11:35 am To: Jonathan Leckie; U2 Users List Subject: Re: [U2] Uniobjects on Linux You set IsUnidata to True, was that intentional

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Steve Romanow
Uniobjects is a C module that has been wrapped and packaged for java, vb, and .NET. PickWiki has several examples, as well as the rocket software docs. If you upgrade to the new WebDE you will be using uniobjects for communication (really deep down.) On Thu, May 19, 2011 at 8:37 AM, Israel,

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread John Thompson
My understanding is somewhat limited, and like yourself, I have only ever learned what I had the time to do, or what was required at my job. Recently though, I have been putting effort into branching out. That being said... My understanding of UniObjects is that it is a connector into Universe

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Jeffrey Butera
On 05/19/11 09:26, John Thompson wrote: My understanding of UniObjects is that it is a connector into Universe or Unidata. Yes, but: You have to have a windows machine as the go between. Not true - you can do this with *nix. So for example, if you wanted to use some .NET language or C#,

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread John Thompson
That is new news to me... Thanks for the info. On Thu, May 19, 2011 at 9:38 AM, Jeffrey Butera jbut...@hampshire.eduwrote: On 05/19/11 09:26, John Thompson wrote: My understanding of UniObjects is that it is a connector into Universe or Unidata. Yes, but: You have to have a windows

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Charles_Shaffer
What are UniObjects? Uniobjects are libraries. Theses can be included in a variety of applications and provide access to U2 databases. On Linux there is Uniobjects for Java. There is a version for .NET. And there is an older COM version that can be used for applications that don't support

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread John Thompson
Thanks for correcting that too. I'm still new and learning... On Thu, May 19, 2011 at 9:38 AM, Jeffrey Butera jbut...@hampshire.eduwrote: On 05/19/11 09:26, John Thompson wrote: My understanding of UniObjects is that it is a connector into Universe or Unidata. Yes, but: You have to

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Israel, John R.
Dayton Superior Corporation 1125 Byers Road Miamisburg, OH  45342 -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of charles_shaf...@ntn-bower.com Sent: Thursday, May 19, 2011 9:52 AM To: U2 Users List Subject: Re: [U2

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Steve Romanow
On Thu, May 19, 2011 at 9:26 AM, John Thompson jthompson...@gmail.com wrote: You have to have a windows machine as the go between. Not completely true. I have used UOJ with jython on linux to talk to U2 on AIX. ___ U2-Users mailing list

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread John Thompson
Yes thank you Steve for correcting that. Jeff had corrected that earlier. Being new to some of this, I should have probably just kept my mouth shut so I didn't give bad information :) On Thu, May 19, 2011 at 10:20 AM, Steve Romanow slestak...@gmail.comwrote: On Thu, May 19, 2011 at 9:26 AM,

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Steve Romanow
On Thu, May 19, 2011 at 10:27 AM, John Thompson jthompson...@gmail.com wrote: Yes thank you Steve for correcting that.  Jeff had corrected that earlier.  Being new to some of this, I should have probably just kept my mouth shut so I didn't give bad information :) No please contribute. I was

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Holt, Jake
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Israel, John R. Sent: Thursday, May 19, 2011 9:05 AM To: 'U2 Users List' Subject: Re: [U2] Uniobjects - What Is It? Are you saying that UniObjects are used instead of Redback or is it used in addition to Redback? Without giving away company

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Israel, John R.
-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Holt, Jake Sent: Thursday, May 19, 2011 10:52 AM To: U2 Users List Subject: Re: [U2] Uniobjects - What Is It? I imagine most people simply use it to run subroutines in external applications, but you can

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Amy Cook
] On Behalf Of Israel, John R. Sent: Thursday, May 19, 2011 9:10 AM To: 'U2 Users List' Subject: Re: [U2] Uniobjects - What Is It? Are there any Avanté users out there that have things written with UniObjects that would be willing to share an example of something they have done? John Israel Senior

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Charles_Shaffer
I don't know much about RedBack. It may provide more developed tools than Uniobjects does. UO gives you libraries that you can use in your applicaitons. can you briefly describe some real world examples of what kind of applications were written with UniObjects? I use UniObjects to access

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Israel, John R.
: Thursday, May 19, 2011 2:11 PM To: U2 Users List Subject: Re: [U2] Uniobjects - What Is It? Hi John, We have our shipping software setup to execute a sql stored procedure which calls an Avante subroutine with UniObjects. I'll send it to you offline in a bit. Amy -Original Message- From: u2

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Kevin King
I'm interested to know more about how folks are using UOJ with PHP. I've tried making that connection numerous times but .. just haven't been successful yet. Big fan of PHP but using the UO connection on Windows is ... less than optimal for my needs.

Re: [U2] Uniobjects - What Is It?

2011-05-19 Thread Dan McGrath
...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Friday, 20 May 2011 2:26 PM To: U2 Users List Subject: Re: [U2] Uniobjects - What Is It? I'm interested to know more about how folks are using UOJ with PHP. I've tried making that connection numerous times but .. just haven't been successful yet. Big

Re: [U2] Uniobjects and java

2011-03-16 Thread Doug Chanco
Thanks everyone that makes great sense As I get into uoj and java I am Sure I'll have more questions for all the experts on here Once again thanks Dougc email signature There are 10 kinds of people in the world, those that know binary and those that do not On Mar 15, 2011, at 10:58, Kevin

Re: [U2] Uniobjects and java

2011-03-15 Thread Brian Leach
To: U2 Users List Subject: Re: [U2] Uniobjects and java thanks,can you give me some of the pros/con's? I have some ideas, (not passing huge amounts of data back and forth for one) but I'd be interested in hearing others, for the moment I think I will be calling subroutines but maybe down

Re: [U2] Uniobjects and java

2011-03-15 Thread Kevin King
I agree with Brian for all of the reasons mentioned plus the performance can be much better on the server for processing when the server can simply do what it needs to do without an ongoing I/O dialogue with the client. -Kevin http://www.PrecisOnline.com

Re: [U2] Uniobjects and java

2011-03-13 Thread doug chanco
thanks,can you give me some of the pros/con's? I have some ideas, (not passing huge amounts of data back and forth for one) but I'd be interested in hearing others, for the moment I think I will be calling subroutines but maybe down the road that may change (if the benefits out weigh a

Re: [U2] Uniobjects and java

2011-03-13 Thread doug chanco
interesting blog Tony, thanks to everyone who sent me links/code to look at, I greatly appreciate it For now while I am getting up to speed I am pretty sure I will be calling a subroutine for info from the DB but another project may call for a direct access to the DB thanks again everyone

  1   2   3   4   5   >