Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1085217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:39:43+00:00 2026-05-16T22:39:43+00:00

I am currently working on a system in Microsoft Access 2007, and I need

  • 0

I am currently working on a system in Microsoft Access 2007, and I need to make a SOAP request to an outside webserver in order to retrieve some data. I’m new to both SOAP and Visual Basic, and I’ve been having trouble figuring out exactly what I need to do to make this SOAP request happen.

From some Googling about, it seems that previous versions of Access may have needed Microsoft’s SOAP Toolkit in order to make a SOAP request. So far as I can tell, however, the SOAP Toolkit was deprecated several years ago, so I’m pretty sure that’s not what I want. Do I need to download an outside library to make a SOAP call? If so, which? If not, what is the VB syntax used for making a SOAP call from an Access 2007 file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T22:39:43+00:00Added an answer on May 16, 2026 at 10:39 pm

    I don’t know if there is a better way than doing it through VBA using a low-level Http POST to pass the SOAP message to the server. You will have to craft the XML SOAP message by whatever method you choose. Here is a sample function to do an Http POST in VBA.

    Function doHttpPost(request As String) As String
    
        Dim response As String
        Dim http As WinHttp.WinHttpRequest
        Set http = New WinHttp.WinHttpRequest
    
        On Error GoTo doPostError
    
        http.setTimeouts 30000, 30000, 30000, 300000
    
        http.Open "POST", "http://someserver.com/soapListener", False
        http.setRequestHeader "name", "value" 'set any headers you want'
    
        http.send request
    
        If http.Status <> 200 Then
            MsgBox "An error has occurred with your request. " & vbCrLf & "The error message is: " & http.responseText & vbCrLf & http.Status & " " & http.statusText
            Exit Function
        End If
    
        doHttpPost = http.responseText
        Exit Function
    
    doPostError:
        'process error messages here'
    
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The system I am currently working on requires some role-based security, which is well
I'm currently working on a very poor developed system, and I have to make
I'm currently working on an asp.net-mvc content management system. It would be incredibly useful
I'm currently working on a project that hooks into various system calls and writes
Currently, I am working on a new version control system as part of a
I'm currently working in a system with a bit of a legacy presentation layer
I currently working on an issue tracker for my company to help them keep
I am currently working on a project and my goal is to locate text
I'm currently working on creating a new C# project that needs to interact with
I am currently working on a project with specific requirements. A brief overview of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.