Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello
I have a webservice to do which I need to do in c ++ builder 10.3.3
Requirements: werbservice rest, iis hosting, main VCL application in C ++ Builder
Can anyone recommend a website, book or help with their experience?

What I have tried:

So far, I have dealt with the creation of XML from the data from the main form (main application) and I know how to read (parsing) the XML response.
Posted
Updated 19-Jul-20 16:33pm
Comments
[no name] 18-Jul-20 8:05am    
Have a look here (the site is extremly slow): https://edn.embarcadero.com/article/40873[^]

I'm not sure why the hosting in IIS requirement - you could use 'Pistache' User's Guide[^] for example. If you need a gateway/front-end, consider using Nginx or similar
 
Share this answer
 
v2
My 2 tip:
It sounds like you could take a look at the Windows Web Services API - Win32 apps | Microsoft Docs[^].

Since you are mentioning IIS, I can only assume that you are running you software on Windows.

You should probably not mix IIS and VCL forms ...

Best regards
Espen Harlinn
 
Share this answer
 
The first problem I encountered was how to display the XML file in memo and treeview components.
I found such a piece of code on the web
FILE * stream;
  char FirstLine [512];

  OpenDialog1-> Options.Clear ();
  OpenDialog1-> Options << ofAllowMultiSelect << ofFileMustExist;
  OpenDialog1-> Filter = "Text files (* .txt) | * .txt | All files (*. *) | *. *";
  OpenDialog1-> FilterIndex = 2; // start the dialog showing all files
  if (OpenDialog1-> Execute ())
  {
    for (int I = 0; I <OpenDialog1-> Files-> Count; I ++)
    {
      stream = fopen (AnsiString (OpenDialog1-> Files-> Strings [I]). c_str (), "r");
      if (stream)
      {
        // read the first line from the file
        fgets (FirstLine, sizeof (FirstLine), stream);
        Memo1-> Lines-> Append (firstLine);
        fclose (stream);
      }
    }
  }


At the beginning I wanted to display the file in memo and something is displayed but.
First of all, the file is not AnsiString but UTF-8 and secondly, only the first line is displayed in my memo (according to what is written in the code).
You can help because I'm out of ideas.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900