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 4271506
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:27:05+00:00 2026-05-21T07:27:05+00:00

We* have a web application, created by Delphi + Intraweb (for the front end/web

  • 0

We* have a web application, created by Delphi + Intraweb (for the front end/web code management) that manages an ordering process. It acquires ordering information, then sends a transaction request to authorize.net (essentially using their SIM sample code). This works beautifully, and the credit card order is processed.

However, when authorize.net sends the form post back to the relay response url (http://developer.authorize.net/guides/SIM/Receipt_Options/Relay_Response.htm), the Intraweb app blows up. I can see, using TamperData, that the form data is being sent correctly. She can see that her program opens a database connection, then times out.

  • I’ve exhausted my google-fu, and haven’t found any examples of Intraweb code being able to accept incoming form posts. (That’s probably all we really need. If we could get the data into the Intraweb/Delphi world, we could then manage the rest.)
  • The Intraweb documentation suggests that IW will accept params passed on a URL, but doesn’t mention accepting POST data.
  • The authorize.net community forum has an asked/answered post, that says basically “Sorry, we don’t have any Delphi code samples, ask your vendor.”
  • Intraweb Tech Support hasn’t been able to help her. (I think they haven’t responded to the request from several weeks ago, but I’m not certain.)
  • I suggested that she create a test application stub that mimicked the authorize.net form post, to be sure that the form objects were being properly created. (I don’t really understand what’s happening under the covers of the drag-n-drop form fields, but I poured over the generated source code to try to figure this out.) But a form POST is a form POST, right? I mean, it’s HTTP, not magic. But there were two problems with that. 1.) Intraweb seems to force form field names to all CAPS. 2.) She says that IW won’t accept underscores as a part of the form field name. And of course, we’re stuck with what authorize.net sends, lower-case, underscore separated, and all.

Do you have any insights, pointers to sample code, or advice to chuck it all and move to another solution? We’d greatly appreciate any of the above.

*We = an old-skool Delphi programmer/DBA who knows Delphi inside out but Intraweb “automagically works” and me, a Java programmer and occasional PHP hacker on the other side of the country, who’s allergic to visual IDE’s but trying to interpret teh Internets & the mysteries of HTTP for her. For this particular problem, we appear to be less than the sum of our parts.

  • 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-21T07:27:06+00:00Added an answer on May 21, 2026 at 7:27 am

    Thanks to pointers from @ioan, we’ve got a SOAP solution up and running. It took my colleague a bit of trial and error to write the Pascal code, but she passed it on to me to post in case it saves anyone else some time. Here’s what she ended up with:

    procedure TfrmSOAP.btnGetUnsettledReportClick(Sender: TObject);
    var
      X : ServiceSoap;
      MyAuthentication : MerchantAuthenticationType;
      MyRequest : GetUnsettledTransactionListRequestType;
      aResponse : GetUnsettledTransactionListResponseType;
      msg : string;
      i : integer;
    begin
      inherited;
      //Call the service
      X := GetServiceSoap(false);
      //create some variables/parameters to pass back and forth
      MyAuthentication := MerchantAuthenticationType.Create;
      MyRequest := GetUnsettledTransactionListRequestType.Create;
      aResponse := GetUnsettledTransactionListResponseType.Create;
      try
        //assign values to the MerchantAuthenticationType parameter
        MyAuthentication.name_ := APILoginTest;
        MyAuthentication.transactionKey := TransKeyTest;
        //request a list of unsettled transactions
        aResponse := X.GetUnsettledTransactionList(MyAuthentication, MyRequest);
        //check to see if the request was successful
        if aResponse.resultCode <> messagetypeenum(0) then
            begin
              ShowMsg('Error');
              ShowMsg(aResponse.messages[0].text);
            end;
        //step through the list, and display i, InvoiceNo, and LastName.
        for i := 0 to high(aResponse.transactions) do
           msg := msg + IntToStr(i) + ') ' + aResponse.transactions[i].invoiceNumber
                  + '  '+ aResponse.transactions[i].lastName + #13;
        ShowMsg(msg);
      finally
        MyRequest.Free;
        MyAuthentication.Free;
        aResponse.Free;
      end;
    end;
    

    She also sends the reminder to be sure you’re using the right info when running tests vs. production: “I was using the URL in the downloaded WSDL. Which is for production accounts. You must use a different one for test accounts. So I kept getting an empty list, and thought it was error in my code, not getting a response.”

    Thanks again for all of the help and suggestions!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have created an mvc3 web application that uses forms based authentication. one part
I have created a Visual Studio 2010 ASP.NET Web Application. I've noticed that if
I have a web application code which uses jsp, servlet and ejb. I created
I have this web application that i have created using Wicket, Guice and JPA.
I have a web application that uses a parser created with Parse::RecDescent. A parser
I have a web application that performs certain task, and have created a tabbed
I have a web application in Asp.Net. I've created my master page and inside
I have created a web application using Visualstudio 2008 using C# on my computer.
I have created a web application with a Silverlight project embedded in it, using
I have created a site collection inside a web application with user A as

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.