Sponsored Content
Full Discussion: COMP-3 File transmission
Top Forums Shell Programming and Scripting COMP-3 File transmission Post 302107315 by sharifhere on Friday 16th of February 2007 02:38:09 AM
Old 02-16-2007
Thanks for ur reply. I tried transferring in binry still the same problem occured. Junk characters replaced the packed fields in the destinaiton file.

Source Machine : Unix (Solaris 9.0)
Destination : Mainframe (OS/390)
 

9 More Discussions You Might Find Interesting

1. Programming

direct transmission of files via TCP/IP

Hi, is it possible to write files via write() to a socket and read it on the other side via read(), without going through buffers? Iif not via write() and read() are there other possibilities? thanks darkspace (5 Replies)
Discussion started by: darkspace
5 Replies

2. OS X (Apple)

comp hardware comparing

www.insaen.nl (2 Replies)
Discussion started by: sk8parkinsaen
2 Replies

3. UNIX for Dummies Questions & Answers

Problem with comp built for Linux..

I built a PC I intended on using to run Linux. It was using a AMD XP 2000 processor, had a 80 gig hard drive, and 256 mb of ram. I got it all connected and working and installed OpenLinux (from book "Learn Linux in 24 hours" that came with a instillation CD). My intent was to take about a month... (18 Replies)
Discussion started by: Tony Empire
18 Replies

4. UNIX for Dummies Questions & Answers

lftp transmission error help

We have installed lftp version 3.4.7. When trying to send a file it loops on sending. It appears that the lftp sends about 130k then attempts to verify transmission (with a head command maybe). The receiver is pulling the data immediatly behind the firewall and does not appear to be answering... (0 Replies)
Discussion started by: Iversog
0 Replies

5. Shell Programming and Scripting

Comp-3 conversion possible with Shell Scripting or PERL?

I guess the subject asks it all, but I am wondering (before I go and code a COBOL module) if conversion of regular ASCII data to COMP-3 is possible on a UNIX environment (AIX 5.1)? Any help would be appreciated! Thanks, Dave (13 Replies)
Discussion started by: dfran1972
13 Replies

6. UNIX for Advanced & Expert Users

Geeting the error during file transmission

I am facing the following issue during file transmission from one of our application to SFTP server.Here the fact is that i am geeting the error message but the file transmission is happening properly.The message i get is as follows: sftp> cd inbox sftp> ... (3 Replies)
Discussion started by: bimal3099
3 Replies

7. AIX

Problem in ftpying the datasets containing comp values to AIX from mainframe

Hi, When i am trying to ftp COBOL generated data sets which contain comp values to AIX in ASCII mode. the comp values are getting corrupted. If i ftp the data set in binary mode it is working properly, but for this i have to change some compiler options in the COBOL. Also if i want to use the... (5 Replies)
Discussion started by: sekhar gajjala
5 Replies

8. Shell Programming and Scripting

curl into a shell script (variable transmission): need help

Hey I'm writting a little shell script, and I started using curl with it today. I would like to login into a website using curl (--data argument). This part is working, curl sent me the webpage that we see when we log in this website. Problem: This is a temporary page. When I log in this... (0 Replies)
Discussion started by: Link_
0 Replies

9. UNIX for Dummies Questions & Answers

File transmission logs in UNIX

Can any one give a explaination with examples on how to understand file transmission log files in Unix for inbound and outbound traffic. (1 Reply)
Discussion started by: ITDev01
1 Replies
Net::CUPS::Destination(3pm)				User Contributed Perl Documentation			       Net::CUPS::Destination(3pm)

NAME
Net::CUPS::Destination - CUPS Destination Object SYNOPSIS
use Net::CUPS::Destination; my $printer = $cups->getDestination( "lj4200dn" ); my $name = $printer->getName(); my @options = $printer->getOptions(); my $jobid = $printer->printFile( $filename, $title ); DESCRIPTION
Net::CUPS is an object oriented interface to the Common Unix Printing System. Net::CUPS::Destination is an abstraction of the concept of a destination in CUPS. Destinations will most likely be a printer, but it can be any type of target in which a file is sent for processing. METHODS
addOption $dest->addOption( $name, $value ); Method to add another option name/value pair to the destination. cancelJob my $dest->cancelJob( $jobid ); Method to chancel a job sent to this destination. getDescription my $description = $dest->getDescription(); Provides the description string associated with this printer. getError my $error = $dest->getError(); Utility method for returning the last error that occured. getName my $name = $dest->getName(); Method to return the name of the destination. getJob my $job = $dest->getJob( $jobid ) Method to get a specific job as a hash of attributes. getJobs my @jobs = $dest->getJobs( $whose, $scope ); This method will return an array of job identifiers. $whose is 0 for all users and 1 is just for the selected user. $scope is -1 for all jobs, 0 for active jobs and 1 for completed jobs. getLocation Returns the location string for this destination. getOptionValue my $value = $dest->getOptionValue( $name ); This utility method will return the value of the selected option. getOptions my @options = $dest->getOptions(); This method will return an array of the options currently set on the destination. printFile my $jobid = $dest->printFile( $filename, $title ); I know this is the method that you have been looking for. This is what you will use to send a file to handled by the destination. You must provide the name of the file and a title for the job. getUri my $uri = $dest->getUri(); This function returns the device URI of a destination. For example, a network printer might appear as socket://192.168.1.1 SEE ALSO
Net::CUPS, Net::CUPS::PPD, Net::CUPS::IPP SUPPORT
Support for this module and other software developed by Dracken Technology, Inc can be found at http://www.dracken.com/. AUTHOR
Dracken Technology, Inc. (http://www.dracken.com/) COPYRIGHT AND LICENSE
Copyright (c) 2003-2005 David Hageman Copyright (c) 2006-2009 Dracken Technology, Inc. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. CUPS, the Common UNIX Printing System, the CUPS logo, and ESP Print Pro are the trademark property of Easy Software Products. perl v5.14.2 2009-07-30 Net::CUPS::Destination(3pm)
All times are GMT -4. The time now is 11:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy