For my link archive: [WayBack] Delphi, soap and wrapping values in cdata – Stack Overflow
–jeroen
Posted by jpluimers on 2020/09/15
For my link archive: [WayBack] Delphi, soap and wrapping values in cdata – Stack Overflow
–jeroen
Posted in Delphi, Development, SOAP/WebServices, Software Development, XML/XSD | Leave a Comment »
Posted by jpluimers on 2020/09/15
If I ever need a thread pool in Delphi, then I need to look at this class: [WayBack] iocp-delphi/ThreadPool.pas at master · tondrej/iocp-delphi · GitHub.
Via: [WayBack] Don’t lose time with a known Delphi bug affecting TParallel.Join Don’t lose time with a known Delphi bug affecting TParallel.Join; Ondrej Kelle – Google+
Full repository: [WayBack] GitHub – tondrej/iocp-delphi: Windows I/O Completion Port wrapper class for Delphi and Free Pascal. Wide support too:
–jeroen
Posted in Delphi, Development, Software Development | 1 Comment »
Posted by jpluimers on 2020/09/11
The Delphi WSDL importer maintenance has been in dormant mode for a long while, which means it still barfs on WSDL include directives.
In the day and age of REST and gRPC, I don’t think it will get any love soon.
Related bug entries are for instance RSP-18630: WSDL generate bad code and RSP-17321: “Import WSDL” generates invalid code without explanation of problem are examples of this, and I’m sure that QC had more if it were still alive; I could find these in the WayBack machine:
The problem manifests itself when the WSDL file includes one or more XSD files. The generated code will contain a section like this:
// ************************************************************************ // // The following types, referred to in the WSDL document are not being represented // in this file. They are either aliases[@] of other types represented or were referred // to but never[!] declared in the document. The types from the latter category // typically map to predefined/known XML or Embarcadero types; however, they could also // indicate incorrect WSDL documents that failed to declare or import a schema type. // ************************************************************************ //
Further below is a series of commented out types, all starting with a ! end ending in a column with the namespace of those types.
Searching for the first line gives numerous examples as far back as Delphi 7, for instance:
Based on those, I think the reason is that the WSDL importer fails on <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> which is quite common in the real world.
I did not want to pursue manually modifying the WSDL file, or manually generating the types as the WSDL and XSD files were prone to changes and manual steps would make the re-import process more tedious. If you do want to do that, these link might help:
This is what I used to get this to compile and run [WayBack] Web Service Toolkit – Free Pascal wiki:
Associate .inc files with FreePascal IDEC:\FPC\3.0.4\bin\i386-win32 to the user pathwst-0.7u directoryws_helper subdirectoryWhen compiling in Delphi, then you definitely need the FreePascal RTL sources for the PasTree unit; see [WayBack] fcl-passrc – Free Pascal wiki.
Related:
–jeroen
Posted in Conference Topics, Conferences, Delphi, Development, Event, Software Development | 1 Comment »
Posted by jpluimers on 2020/09/10
Reminder to self to install this to more than just the main dev VM as it combines DProjNormalizer and DProjSplitter, then adds a few more features: [WayBack] Keep Your Project Files Clean With Project Magician – The Art of Delphi Programming
Example of the wizard that shows the additional features
Via [WayBack] Keep Your Project Files Clean With Project Magician – Uwe Raabe – Google+
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/09/09
I know ModelMaker Tools could do this: [WayBack] Quick Question … are there any good tools available to generate class diagrams / hierarchy from existing code? Or doesn’t anyone do that anymore ? – Stefaan Lesage – Google+
But I didn’t know the other tools from the thread had options as well:
–jeroen
Posted in Delphi, Development, Diagram, PlantUML, Software Development, UML | 1 Comment »
Posted by jpluimers on 2020/09/08
Since WayBack cannot save G+ photos, here is one from [WayBack] So, now I’m in front of a problem similar to a former one: I need to get the pixel position of the current editor cursor position for my OTA wizard. I’… – Fl Ko – Google+:
Related:
–jeroen
Posted in C++, C++ Builder, Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/09/03
Wondering how far Mike Versteeg has gotten in the mean time with the newer versions of Delphi that have come up: [WayBack] I’m having a go at multi monitor high DPI support for my styled 64 bit VCL app, which is still not supported in 10.2. Using Scaled and ScaleBy I can com… – Mike Versteeg – Google+
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/09/02
Interesting consensus at which is very similar to my experience: [WayBack] I’ve inherited a project and the developer uses lots of interfaces (All good here!). Then when they develop the interfaced classes, the methods from th… – John Kouraklis – Google+
Some go even further and even declare the classes in implementation sections, but for me that gives too much RTTI hassle:
Private types (types in the implementation section of units) do not get qualified names.
via: Delphi: TRttiContext.GetType versus TRttiContext.GetTypes is not about singular versus plural…
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2020/08/31
From an interesting thread at [WayBack] What’s the piece of Delphi knowledge you find yourself looking up over and over again? For me format strings is probably the thing that most stubbornly… – Lachlan Gemmell – Google+
On the generics side, I have wrote a few bits in my blog before, often pointing to information by others (many by Stefan Glienke as his skills on this topic are beyond excellent):
And on records:
There are some very good books on Delphi though that dig deeper than the documentation:
–jeroen
Posted in Conference Topics, Conferences, Delphi, Development, Event, Software Development | 4 Comments »
Posted by jpluimers on 2020/08/25
If you ever get a “Fatal: F1027 Unit not found: ‘System.pas’ or binary equivalents (.dcu)” – Google Search, then it is likely because you:
This is common for unattended builds (like build-automation).
For each run, the Delphi IDE will save an EnvOptions.dproj with global settings.
Since build scripts should not rely on global settings, you need to ensure those are in your project settings.
Some background reading on this:
–jeroen
Posted in Delphi, Development, Software Development | Leave a Comment »