Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     ReportCaster FTP Issue

Read-Only Read-Only Topic
Go
Search
Notify
Tools
ReportCaster FTP Issue
 Login/Join
 
<ccline>
posted
I'm running 5.2.7 and am trying to set up a simple report/RC job that will burst HTML files out to an internal FTP site.

The report runs (I can see the HTML files generated in ibi\ReportCaster52\temp), but the files are not sent to the FTP site correctly.

A 0 KB file is created on the FTP site, but nothing more.

The RC job never finishes. I have to restart the RC service to clear it out.

The same behavior is exhibited when I take off the burst option.

I've accessed the destination FTP Site from the box that has RC, and been able to manually copy files via FTP.

1. Any idea how to get this to work?
2. As a band-aid, is there any way to directly access the bursted files? The files in the temp directory don't have the correct filenames that are needed.

Thanks.

Chris
 
Report This Post
Expert
posted Hide Post
i write my own ftp script and caster just executes it, as any other job. i don't specify the output to be ftp. works great for me.
here's a sample of the code is use for a GET operation; you could change it to PUT; and note that the command lcd is localchange directory, for mmoving around on my server box; command cd moves around on the ftp site.
i write a little text file with the ftp commands in it and then execute it. If you're bursting, you'll have to do some looping.
the userid and password willhave to be your own
as will the 'myftpsite' name. duh.
-*--------------------------------
CMD STATE GET.FTP
-RUN
-IF &RETCODE NE 0 GOTO MAKECHFTP ;
CMD ERASE GET.FTP
-RUN
-MAKECHFTP
FILEDEF CHFTP DISK GET.FTP
-RUN

-WRITE CHFTP open ftp.myftpsite.com
-WRITE CHFTP userid
-WRITE CHFTP password
-WRITE CHFTP ascii
-WRITE CHFTP lcd \
-WRITE CHFTP lcd ibi
-WRITE CHFTP lcd KWI
-WRITE CHFTP get &KWFILE
-WRITE CHFTP lcd daily
-WRITE CHFTP get &KDFILE
-WRITE CHFTP lcd ..
-WRITE CHFTP lcd employees
-WRITE CHFTP get &SPFILE
-WRITE CHFTP lcd ..
-WRITE CHFTP lcd CUSTMAST
-WRITE CHFTP get custmast.txt
-WRITE CHFTP close
-WRITE CHFTP quit
-RUN
DOS ftp -i -s:GET.FTP
-RUN
-*-------------------------------
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     ReportCaster FTP Issue

Copyright © 1996-2020 Information Builders