惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
雷峰网
雷峰网
S
SegmentFault 最新的问题
博客园 - 【当耐特】
博客园_首页
量子位
爱范儿
爱范儿
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
V
V2EX
美团技术团队
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Oracle Integration Cloud (Gen3): File Polling Using FTP T...
Naveen · 2026-05-02 · via DEV Community
Cover image for Oracle Integration Cloud (Gen3): File Polling Using FTP Trigger

Naveen

Automate file‑based integrations without custom schedulers (OIC Gen3 24.10+)

File‑based integrations are still extremely common—daily CSV extracts, XML drops from legacy systems, or batch partner feeds over FTP/SFTP.

Before Oracle Integration Cloud (OIC) Gen3 24.10,
triggering an integration when a file arrived often required:

  • Scheduled integrations
  • External scripts
  • Custom polling logic

Gen3 introduced a native File‑Polling trigger and it simplifies everything.

In this post, I’ll walk through how to use the new FTP File Polling trigger, when to use it, and what to watch out for.

When Should You Use File Polling?
Use this feature if:

  • Files are small to medium in size
  • You want to trigger immediately on file arrival
  • You don’t need manual file download logic
  • You prefer a low‑code, native OIC pattern

Typical use cases:

  • Daily CSV or XML reports
  • Lightweight batch integrations
  • Partner file drops
  • Staging‑based data ingestion

What’s New in OIC Gen3 24.10+
With the FTP File‑Polling trigger, you can:

  • Automatically trigger an integration when a file arrives
  • Match files using filename patterns
  • Load file content directly as payload
  • Control archive, delete, or reject behavior
  • Avoid additional adapters or scripts

Step‑by‑Step: Configuring File Polling in OIC

1. Verify OIC Version
Ensure your instance is:

Oracle Integration Cloud Gen3 – 24.10 or later

File polling is not available in earlier Gen3 builds.

2. Configure FTP / SFTP Connection
Create or reuse an FTP adapter connection with Trigger & Invoke role:

  • Host, port, credentials
  • Source directory permissions
  • Optional archive/reject directories

Test the connection before proceeding.

3.Use the File‑Polling Trigger
While creating the integration:

  • Select the FTP Adapter as the trigger
  • Choose File Polling as the trigger type

You’ll configure:

  • Polling frequency (e.g., every 5 minutes)
  • Source directory
  • Filename pattern (e.g., *.csv)
  • Schema type (CSV / XML)
  • Optional sample file upload for schema generation This eliminates the need for a separate file‑server read step.

4. Configure File Handling Behavior
You can define what happens after the file is read:

📦 Archive the file
🗑️ Delete after successful read
🚫 Reject invalid files
⚠️ Ignore delete errors to prevent retries

This is extremely useful for idempotency and cleanup.

5. Design the Integration Flow
After the trigger:

Parse file content using the generated schema
Route data to downstream systems
Apply validations and transformations
Handle errors using reject logic

The file content is already available as the payload—no manual streaming required.

6. Test with a Proof of Concept (POC)
Before production:

  • Drop a test file matching the pattern
  • Confirm the integration triggers immediately
  • Validate: *File movement (archive/delete) *Payload parsing *Error handling

7. Deploy & Monitor
Once verified:

  • Activate the integration
  • Monitor tracking for file runs
  • Adjust polling frequency or file rules if required