Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Glen Batchelor
You can systematically change the slave printer on the remote Accuterm PC using host-issued scripting, but you gotta be careful of windows printer names with spaces. I dump check printing code directly to a printer and then reset back to default using this method. I seriously doubt a

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Dave Laansma
The beauty of the Accuterm (and other direct 'push' features) is that there is virtually no setup required on the PC in order to transfer the data. If Accuterm is operational and you have a network connection, it simply works. And if you get really creative, after the file is transported to the

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Kevin King
I understand the beauty of being able to push reports out a slave printer, but what do you do when the goal is printing labels with specific large proportionally spaced fonts and center or right justification of the text? ___ U2-Users mailing list

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Marc Harbeson
I use Bartender on the host (or on a windows host if NIX) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Friday, April 30, 2010 10:40 AM To: U2 Users List Subject: Re: [U2] AccuTerm File Transfer I

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Doug
I've used AccuTerm, wIntegrate, FTP, rcp, cp, COPY and others I cannot even remember their names. I used them for conversions, setup demos, setup development accounts, etc. They all are slow, sometimes they do not copy all of the data, and or require multiple steps. Must I learn archaic codes

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Glen Batchelor
The same is true for HTTP based services, provided the service is secured for Internet querying or a VPN is in place for WAN requests. The only time port 80/443 are issues is when the PC is locked down due to a strict IAP. If you have a bridged VPN you can even use Windows/Samba shares across

[U2] Complex printing (was Re: AccuTerm File Transfer)

2010-04-30 Thread Bob Rasmussen
On Fri, 30 Apr 2010, Kevin King wrote: I understand the beauty of being able to push reports out a slave printer, but what do you do when the goal is printing labels with specific large proportionally spaced fonts and center or right justification of the text? What you need is a way to

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Glen Batchelor
Kevin, Spell out what you want to achieve and I'm sure several solutions will be suggested. I'm sure Tony has plenty of suggestions for controlling MSWord from Accuterm. DDE was a god-send back in the day and I did some neat app-control things with it under Accuterm, but it's been

[U2] Remote Printing

2010-04-30 Thread skunzman
We are looking for remote printing options from Unidata for VPN users. Currently using a remote print manager called RPM by Brooks. Cisco VPN RS6000/AIX Unidata 7.1 Primac business software What are other companies using for this purpose? Thanks. Steve Steve Kunzman

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Peter Schellenbach
Later versions of AccuTerm support Print Wizard which will process documents that use PCL5 for formatting and print them on any Windows printer, or send the document as a pdf via email or fax. Lots of other bells whistles. The hooks to call Print Wizard can be used to pass the slave print job

Re: [U2] Remote Printing

2010-04-30 Thread Bob Rasmussen
On Fri, 30 Apr 2010, skunz...@comcast.net wrote: We are looking for remote printing options from Unidata for VPN users. Currently using a remote print manager called RPM by Brooks. Print Wizard can work for this as well. One possibility is to use the LPD protocol from the server, and run

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Bob Rasmussen
On file transfer: Kevin King explained to me how he can use directory files in Universe to create a file that is visible to the underlying OS. This raises the possibility of firing off an OS-based file transfer protocol (such as 'sz' for Zmodem) to do a robust transfer. What do you think? On

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Kevin King
Hey Peter, that sounds like the ticket for what I need. What version should I look for? Glen, the goal is to be able to print a label on a laser printer from a keypress on the Unidata application side. The complexities are that the label needs various fonts, most of them proportionally spaced

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Peter Schellenbach
Kevin - AccuTerm 2K2 Standard version (not the Lite version) release 5.3c and 5.3c-sp2 includes the Print Wizard hooks. ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Mecki Foerthmann
You will need to write sequentially (OPENSEQ, WRITESEQ) to make the DIR file not only visible but also usable to the OS, though. Unless you use CR:LF at the end of every line instead of attributes of course. I just changed a program today that was using the proprietary SB+ interface to write text

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Glen Batchelor
I'd opt for print wizard unless you want to hard code the PCL and avoid middleware. You can code the PCL font and spacing escape codes directly in your app and just print the code to the slave printer like normal. It's a little more design time, but it'll be a fairly static setup. If

Re: [U2] AccuTerm File Transfer (script to change windows printer selection)

2010-04-30 Thread Glen Batchelor
If the default printer on the remote session is used for the label and for all other documents, then you don't need this code at all, but I figured I'd post it anyway for reference. Here's the code I use to change the default printer in Accuterm: ACCUTERM.PRINTERNAME =

Re: [U2] Complex printing (was Re: AccuTerm File Transfer)

2010-04-30 Thread Tony Gravagno
Kevin, now that you're asking questions like this, perhaps the demos I've provided for PrintWizard would be of value: nospamNebula-RnD.com/products/PW/demo2.htm (Nebula RD does not sell or support PrintWizard) That's BASIC code to provide text positioning, styles, justfication, images, barcodes,

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Kevin King
While the PW thing looks cool, and especially the integration with AccuTerm, the customer is on an earlier version of AccuTerm and I'm not entirely certain I can convince them to upgrade. But... we have some really good ideas floating around here, and I appreciate all the input.

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Bob Rasmussen
On Fri, 30 Apr 2010, Glen Batchelor wrote: I'd opt for print wizard unless you want to hard code the PCL and avoid middleware. You can code the PCL font and spacing escape codes directly in your app and just print the code to the slave printer like normal. It's a little more design time,

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Bob Rasmussen
On Fri, 30 Apr 2010, Kevin King wrote: While the PW thing looks cool, and especially the integration with AccuTerm, the customer is on an earlier version of AccuTerm and I'm not entirely certain I can convince them to upgrade. But... we have some really good ideas floating around here, and I

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Glen Batchelor
If that's the case, then check out HTMLDOC. You can generate PS from an HTML file and then have Ghostscript create a pcl3 file from that using the pcl3 output device option. You can then dump that file through the slave printer and clean up the temp files. I'm not 100% proven on the PCL

Re: [U2] Remote Printing

2010-04-30 Thread McGowan, Ian
If you can, email the user a pdf :-) I went to a lot of trouble many years ago printing via samba on AIX to local windows printers, and while it worked, it was painful to support (and then the requirements changed to have remote users with ssh but not vpn access). You can do some amazing

Re: [U2] AccuTerm File Transfer

2010-04-30 Thread Tony Gravagno
From: Glen Batchelor If that's the case, then check out HTMLDOC. As a former devoted fan of HtmlDoc I'd now vote against it. - It only supports most HTML 3.2 specs, not all. These days anything that doesn't support HTML 4 is downright primitive. - There are always issues with fonts and

Re: [U2] Complex printing (was Re: AccuTerm File Transfer)

2010-04-30 Thread Kevin King
Been working with PrintWizard all afternoon, thanks. This looks like it'll do the job nicely for our immediate need. ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

[U2] Soap error question

2010-04-30 Thread Lunt, Bruce
Hi All, We have a strange result happening with a simple soap service call and I was hoping someone has seen this problem or something like it before. We have 3 different soap calls: SSN.VERF, SSN.VERF.SUP SSN.SUBMIT. Each program has 2 inputs: CUST.NO SSN and 1 output: VERIFY. The