EPC Group - Enterprise Microsoft AI, SharePoint, Power BI, and Azure Consulting
G2 High Performer Summer 2025, Momentum Leader Spring 2025, Leader Winter 2025, Leader Spring 2026
BlogContact
Ready to transform your Microsoft environment?Get started today
(888) 381-9725Get Free Consultation
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌
‌

EPC Group

Enterprise Microsoft consulting with 29 years serving Fortune 500 companies.

(888) 381-9725
contact@epcgroup.net
4900 Woodway Drive, Suite 830
Houston, TX 77056

Follow Us

Solutions

  • M&A Practices

    • M&A Tenant Migration
    • Carve-Out Migration
    • Private Equity Practice
    • Engagement Operating Model
  • All Services
  • Microsoft 365 Consulting
  • AI Governance
  • Azure AI Consulting
  • Cloud Migration
  • Microsoft Copilot
  • Data Governance
  • Microsoft Fabric
  • Dynamics 365
  • Power BI Consulting
  • SharePoint Consulting
  • Microsoft Teams
  • vCIO / vCAIO Services
  • Large-Scale Migrations
  • SharePoint Development

Industries

  • All Industries
  • Healthcare IT
  • Financial Services
  • Government
  • Education
  • Teams vs Slack

Power BI

  • Case Studies
  • 24/7 Emergency Support
  • Dashboard Guide
  • Gateway Setup
  • Premium Features
  • Lookup Functions
  • Power Pivot vs BI
  • Treemaps Guide
  • Dataverse
  • Power BI Consulting

Company

  • About Us
  • Our History
  • Microsoft Gold Partner
  • Case Studies
  • Testimonials
  • Fixed-Fee Accelerators
  • Blog
  • Resources
  • All Guides & Articles
  • Video Library
  • Client Reviews
  • Engagement Operating Model
  • FAQ
  • Contact
  • Schedule a consultation

Microsoft Teams

  • Teams Questions
  • Teams Healthcare
  • Task Management
  • PSTN Calling
  • Enable Dial Pad

Azure & SharePoint

  • Azure Databricks
  • Azure DevOps
  • Azure Synapse
  • SharePoint MySites
  • SharePoint ECM
  • SharePoint vs M-Files

Comparisons

  • M365 vs Google
  • Databricks vs Dataproc
  • Dynamics vs SAP
  • Intune vs SCCM
  • Power BI vs MicroStrategy

Legal

  • Sitemap
  • Privacy Policy
  • Terms
  • Cookies

About EPC Group

EPC Group is a Microsoft consulting firm founded in 1997 (originally Enterprise Project Consulting, renamed EPC Group in 2005). 29 years of enterprise Microsoft consulting experience. EPC Group historically held the distinction of being the oldest continuous Microsoft Gold Partner in North America from 2016 until the program's retirement. Because Microsoft officially deprecated the Gold/Silver tiering framework, EPC Group transitioned to the modern Microsoft Solutions Partner ecosystem and currently holds the core Microsoft Solutions Partner designations.

Headquartered at 4900 Woodway Drive, Suite 830, Houston, TX 77056. Public clients include NASA, FBI, Federal Reserve, Pentagon, United Airlines, PepsiCo, Nike, and Northrop Grumman. 6,500+ SharePoint implementations, 1,500+ Power BI deployments, 500+ Microsoft Fabric implementations, 70+ Fortune 500 organizations served, 11,000+ enterprise engagements, 200+ Microsoft Power BI and Microsoft 365 consultants on staff.

About Errin O'Connor

Errin O'Connor is the Founder, CEO, and Chief AI Architect of EPC Group. Microsoft MVP multiple years, first awarded 2003. 4× Microsoft Press bestselling author of Windows SharePoint Services 3.0 Inside Out (MS Press 2007), Microsoft SharePoint Foundation 2010 Inside Out (MS Press 2011), SharePoint 2013 Field Guide (Sams/Pearson 2014), and Microsoft Power BI Dashboards Step by Step (MS Press 2018).

Original SharePoint Beta Team member (Project Tahoe). Original Power BI Beta Team member (Project Crescent). FedRAMP framework contributor. Worked with U.S. CIO Vivek Kundra on the Obama administration's 25-Point Plan to reform federal IT, and with NASA CIO Chris Kemp as Lead Architect on the NASA Nebula Cloud project. Speaker at Microsoft Ignite, SharePoint Conference, KMWorld, and DATAVERSITY.

© 2026 EPC Group. All rights reserved. Microsoft, SharePoint, Power BI, Azure, Microsoft 365, Microsoft Copilot, Microsoft Fabric, and Microsoft Dynamics 365 are trademarks of the Microsoft group of companies.

Azure Integration Services connects enterprise applications using four components: Azure Logic Apps (workflow orchestration), Azure Service Bus (reliable messaging), Azure API Management (API gateway), and Azure Event Grid (event routing). This guide shows how to design and deploy each component for a connected enterprise system.

Key Facts

  • Azure Integration Services = Logic Apps + Service Bus + API Management + Event Grid.
  • Logic Apps supports 400+ connectors for SaaS, on-premises, and Azure services — no custom code required for most integrations.
  • Service Bus delivers guaranteed message delivery with FIFO ordering, dead-letter queues, and sessions for exactly-once processing.
  • API Management provides rate limiting, OAuth 2.0 authentication, request transformation, and an API developer portal.
  • Event Grid routes events from Azure services (Storage, Cosmos DB, Event Hubs) to Logic Apps, Functions, or Service Bus with sub-second latency.
  • EPC Group: 29 years of Microsoft consulting, 10,000+ enterprise deployments, Microsoft Solutions Partner.
Back to Blog

How to Set Up a Connected System with Azure Integration Services

Errin O\'Connor
December 2025
8 min read

How to Set Up a Connected System with Azure Integration Services

Azure Integration Services connects enterprise applications using four components: Azure Logic Apps (workflow orchestration), Azure Service Bus (reliable messaging), Azure API Management (API gateway), and Azure Event Grid (event routing). This guide shows how to design and deploy each component for a connected enterprise system.

Key facts

  • Azure Integration Services = Logic Apps + Service Bus + API Management + Event Grid.
  • Logic Apps supports 400+ connectors for SaaS, on-premises, and Azure services — no custom code required for most integrations.
  • Service Bus delivers guaranteed message delivery with FIFO ordering, dead-letter queues, and sessions for exactly-once processing.
  • API Management provides rate limiting, OAuth 2.0 authentication, request transformation, and an API developer portal.
  • Event Grid routes events from Azure services (Storage, Cosmos DB, Event Hubs) to Logic Apps, Functions, or Service Bus with sub-second latency.
  • EPC Group: 29 years of Microsoft consulting, 10,000+ enterprise deployments, Microsoft Solutions Partner.

Component overview: what each service does

Service Primary role Best used for
Azure Logic Apps Workflow orchestration Automating multi-step processes between systems (ERP, CRM, HR)
Azure Service Bus Reliable messaging Decoupling producer/consumer systems, guaranteed delivery, enterprise queuing
Azure API Management API gateway Exposing internal APIs externally with security, throttling, and versioning
Azure Event Grid Event routing Reacting to Azure service events in real time (file uploads, DB changes)

Step 1 — Design your integration architecture

Before building, map the data flows between your systems. Answer these questions.

  • Which systems need to exchange data? (ERP, CRM, HR, custom apps, SaaS.)
  • Is the integration synchronous (request/response) or asynchronous (fire-and-forget)?
  • What are the message volume and latency requirements? (High volume → Service Bus. Real-time events → Event Grid. API calls → APIM.)
  • Do you need guaranteed exactly-once delivery? Use Service Bus sessions.
  • Is there an existing API contract? Use API Management as the front door.

Step 2 — Set up Azure Service Bus

  1. In the Azure portal, create a Service Bus namespace. Choose the Premium tier for network isolation and message sessions.
  2. Create a queue for point-to-point messaging or a topic with subscriptions for publish/subscribe patterns.
  3. Configure message lock duration, max delivery count, and dead-letter queue settings.
  4. Assign sending applications a Shared Access Signature (SAS) policy with Send-only permission. Assign receiving applications Receive-only permission.
  5. Enable message sessions on the queue if you need FIFO ordering for correlated messages.

Step 3 — Build a Logic Apps workflow

  1. In the Azure portal, create a Logic App (Standard) resource in your resource group.
  2. Open the designer and choose a trigger: Service Bus message received, HTTP request, Event Grid event, or a schedule.
  3. Add actions using built-in connectors: query a SQL database, call a REST API, send an email, write to SharePoint, or post to Teams.
  4. Add error handling: set Scope actions with Catch blocks for failed steps. Write failed messages to the Service Bus dead-letter queue.
  5. Deploy to your integration environment using an ARM template or Bicep for repeatable deployment.

Step 4 — Configure Azure API Management

  1. Create an API Management instance. Use the Developer tier for testing and Standard/Premium for production.
  2. Import your API from an OpenAPI (Swagger) specification, WSDL (SOAP), or directly from an Azure Function or Logic App.
  3. Add policies to the API: rate limiting (throttle by subscription key), JWT validation, request transformation (add/remove headers), and response caching.
  4. Create products (API bundles) and issue subscription keys to consuming teams or applications.
  5. Publish the API to the developer portal for self-service documentation and key management.

Step 5 — Add Event Grid for real-time event routing

  1. In the Azure portal, create an Event Grid topic or use a system topic (automatically created by Azure services like Storage and Cosmos DB).
  2. Create an event subscription: choose your endpoint (Logic App, Azure Function, Service Bus queue, or webhook).
  3. Filter events by type (e.g., only route BlobCreated events) to avoid processing unnecessary events.
  4. Set a dead-letter destination (Azure Blob Storage) for events that cannot be delivered after the retry policy expires.

Migrating from BizTalk Server

Many enterprises run BizTalk Server for legacy integration. Azure Integration Services is the modern replacement.

  • Logic Apps replaces BizTalk orchestration.
  • Service Bus replaces BizTalk messaging adapters.
  • API Management replaces BizTalk web service publishing.
  • Event Grid adds event-driven capabilities that BizTalk did not provide natively.

BizTalk mainstream support ended in 2025. Microsoft recommends migrating to Azure Integration Services. EPC Group has delivered multiple BizTalk-to-Azure migrations for regulated-industry clients.

Frequently asked questions

What is the difference between Logic Apps and Azure Functions for integration?

Logic Apps use a no-code/low-code visual designer with 400+ connectors — ideal for business workflow automation. Azure Functions are code-first and better for high-performance, low-latency data processing or custom transformation logic. Many integration architectures use both together.

When should I use Service Bus instead of Event Grid?

Use Service Bus when you need guaranteed delivery, ordered processing, or dead-letter queue support for critical transactional messages. Use Event Grid when you need fast, lightweight routing of Azure service events (file upload, database change) with no ordering requirements.

Does Azure Integration Services support HIPAA and SOC 2?

Yes. All four components are covered by Azure's compliance certifications including HIPAA (with BAA), SOC 2 Type II, FedRAMP, and ISO 27001. Use VNet integration and private endpoints for healthcare and government workloads requiring network isolation.

How much does Azure Integration Services cost?

Logic Apps Standard: approximately $0.005–$0.01 per execution step. Service Bus Standard: $0.10 per million operations. API Management Developer tier: $48/month. API Management Standard: $313/month. Event Grid: $0.60 per million events. Total cost depends heavily on message volume.

How long does a typical Azure Integration Services deployment take?

A basic three-system integration (ERP to CRM to SharePoint) takes 4–8 weeks with EPC Group's accelerator templates. A full enterprise integration hub replacing BizTalk takes 3–6 months depending on the number of interfaces, data transformation complexity, and compliance requirements.

Design your Azure integration architecture

EPC Group has delivered Azure Integration Services projects for Fortune 500 and regulated-industry clients. Call (888) 381-9725 or request a 30-minute discovery call.

Why Organizations Choose EPC Group

EPC Group is a Houston-based Microsoft consulting firm with 29 years of enterprise implementation experience and over 10,000 successful deployments across Power BI, Microsoft Fabric, SharePoint, Azure, Microsoft 365, and Copilot. We serve organizations across all industries including Fortune 500, federal agencies, healthcare, financial services, government, manufacturing, energy, education, retail, technology, and global enterprises.

What sets EPC Group apart is our governance-first approach. Every engagement begins with a security and compliance assessment. Our team of senior architects brings hands-on delivery experience across HIPAA, SOC 2, FedRAMP, and CMMC environments. We own outcomes, not hours.

  • Fixed-fee accelerators with predictable pricing and defined deliverables
  • Senior architect engagement on every project, not rotating juniors
  • Compliance-native delivery for regulated industries
  • End-to-end coverage from strategy through 24/7 managed services
  • 11,000+ enterprise engagements refined into repeatable, risk-controlled patterns

Call (888) 381-9725 or email contact@epcgroup.net for a free assessment.

Azure Architecture: 2026 Considerations for How To Set Up A Connected System With Azure Integration Services

Azure Landing Zones (Microsoft Cloud Adoption Framework) in 2026 are the de facto starting point for every enterprise Azure deployment. The Enterprise-scale landing zone deploys management groups, hub-spoke networking, Azure Policy initiative assignments, Azure Monitor + Log Analytics, and Microsoft Sentinel in a single Bicep/Terraform run; the compressed bootstrap that used to take 6-12 weeks of architect time can now finish in 4-7 days.

FinOps in Azure 2026 is no longer optional at any meaningful scale: Azure Reservations (1-yr or 3-yr commits) deliver 30-72% savings on predictable VM workloads, Azure Savings Plans extend the discount to compute portability across instance families, and Azure Hybrid Benefit lets BYOL Windows Server and SQL Server licenses cut compute costs by an additional 40-49%. Typical Azure cost-optimization engagements return 25-40% of annual Azure spend within 90 days.

Decision factors EPC Group evaluates

  • Azure Policy initiative assignment for Azure Government readiness
  • Confidential Computing enclave evaluation for regulated workloads
  • Enterprise-scale landing zone bootstrap via Bicep/Terraform
  • Microsoft Defender for Cloud benchmark alignment
  • Reservation + Savings Plan portfolio for predictable workloads

See related EPC Group services at /services or schedule a discovery call at /contact.