We had a c++ builder 5 application where a soap connection suddenly stopped working recently when the customer upgraded their server. this example got us going again using c++ builder xe6. thx!
@vclexamples11 жыл бұрын
Thanks Rabi. I would create more tutorials but I have a lack of ideas at the moment :) Regarding book, try C++ Builder 5 Developers Guide. Even if this book is for much older version of BCB it is really good and comes with a lots of examples. Can be downloaded online for free.
@vclexamples11 жыл бұрын
To be honest, i haven't try to use json yet with C++ Builder... Regarding .pas files; C++ Builder supports using .pas files but i'm not sure from what version exactly. All you need is to go to projects/add files... and add your .pas file. Try and compile the project and if it shows no errors then your C++ Builder supports .pas files. When .pas is compiled it's .hpp file is generated. Include that .hpp file into your cpp file (#include...) and then you can use all the functions from .pas file.
@vkkvideo6 жыл бұрын
How can I connect to a SOAP service with authentication based on user name and password?
@marcopetiti69257 жыл бұрын
Thanks a lot, very useful!
@giuliuploader10 жыл бұрын
how about web service for database, is the same? i suppose the only difference would be making sql statement in place of the add you made?
@consdev5 жыл бұрын
How to see the gerated xml before send.
@stefandebeer27077 жыл бұрын
I need some help in regards to this. I am struggling with the following: __property TByteDynArray WSQData1 = { index=(IS_OPTN | IS_NLBL), read=FWSQData1, write=SetWSQData1, stored = WSQData1_Specified }; I write to the TByteDynArray without any issues. I have even saved the array to file and the file is readable. When I submit this structure to the webserver, the array is empty. Any idea why this will happen? Regards,
@leoeroz56077 жыл бұрын
Hello, How can I get the connected client Ip address to SOAP server. IP address must be on HTTP header, I searched about that but dont find any property on TInvokableClass. Do you have any idea about this?
@giuliuploader10 жыл бұрын
i have a question! you have after this tutorial 2 programs, don't you? because a webservice is created in order to acces from one computer to another, so yu can press the button that add 2 number in a different machine? Great tutorials, thanks..
@vclexamples10 жыл бұрын
Yes. Web service is one application and other application is nothing but web service client that uses it's services (functions).
@cristianbugeiro16836 жыл бұрын
Thank you! Help me a lot!
@lospolos18026 жыл бұрын
Cool, man. Realy thank you!
@andresdelacuadra981210 жыл бұрын
Hi, I followed the instructions in video to consume an existing Web Service and it was very helpful. Thanks a lot. Now I have to consume a different kind of Web Service, it is a SVC. There is no WSDL file, Caan you help me please?
@vclexamples10 жыл бұрын
I'm not sure how you can connect if there is no wsdl...
@ersinozdmr8 жыл бұрын
Hi, Can web server send message to client or clients any time without client request? Thanks for tutorial..
@vclexamples8 жыл бұрын
It's a client-server communication based on HTTP (TCP/IP), so the answer is NO.
@ersinozdmr8 жыл бұрын
I need this; A web server can send indications to specific 1 or 2 clients and clients send request to the web server. Is it possible to make communication using XML like this? If it is not possible, should the client periodically check(send request) to see the changes made by the server? Thanks for yor help.
@vclexamples8 жыл бұрын
Client should periodically check if there are any changes on the server side by sending request. That is how TCP (web http) works. If your server would be UDP based than it would be no problem to send data from server to client without request since UDP is connection-less protocol, and UDP would simply throw packages to the clients.
@محمدابويوسف-ص9و7 жыл бұрын
What is the solution to the error in the following line: UUSEFORM ("FormUnit1.cpp", Form1); USEFORM ("FormUnit1.cpp", Form1); USEFORM ("WebModuleUnit1.cpp", WebModule1); / * TWebModule: File Type * /
@محمدابويوسف-ص9و7 жыл бұрын
PROBLEM RESOLVED THANKS
@irun_mon8 жыл бұрын
I didn't know we can build web service with C or C++