Skip to content
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Healthcare Apps decision choice

    The Lounge database question xml json
    11
    0 Votes
    11 Posts
    0 Views
    J
    Nand32 wrote: All these are needed for interops between different HC systems....App DB schema I guess you really mean something like 'data model' rather than 'database' which would be what I see when you say "DB". Nand32 wrote: What would you recommend? That requires much more detail about the architecture than what you presented here. Given that there are different systems then who controls/owns those systems? That is important. But other than that transforming data between systems on communication pipelines is always a given. Even if was a good idea to use the same standard for all each system must still serialize/deserialize the binary into data. So the transform layer will always exists. And it depends on the systems on the pipe. It would seem really unlikely that you could create one template/definition to which every single system must conform when those systems must in fact be each doing something different. Not without adding unneeded complexity. What happens if you provide one standard to which 100 systems must adhere and yet a change is needed so just 2 of those systems can be updated? So ignoring all of that, if the existing external models can be easily broken down (important) to sub-models which mostly meet the communication needs of two systems, then you can use that between those two systems. But I suspect you will still need an envelope into which the sub-model is passed.
  • Using await/async Correctly

    C# sharepoint xml json question
    5
    0 Votes
    5 Posts
    0 Views
    Richard DeemingR
    You should generally avoid async void methods[^]. As per David Fowler's async guidance[^], you can either use Task.Run to push the execution onto a background thread, or call a Task-returning method and "discard" the returned task. Either option will allow exceptions to fire the TaskScheduler.UnobservedTaskException event[^] rather than crashing the application from the finalizer thread. In this case: internal class MainWindowViewModel { private MyEntity _data; private async Task LoadData() { \_data = await \_repository.GETDataAsync(); // TODO: Raise any "property changed" events to notify the view that the data has loaded. } public void WindowLoadedExecuted() { \_ = LoadData(); } } "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • Workday EIB import files

    The Lounge xml learning
    2
    0 Votes
    2 Posts
    0 Views
    N
    If it were, it would be easy and everyone could do it. ;) :laugh: M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • How can we found the language

    The Lounge xml question
    7
    0 Votes
    7 Posts
    0 Views
    G
    He and I replied to a now deleted post. Hence the confusion.
  • 0 Votes
    7 Posts
    3 Views
    K
    Yes, in Visual Studio, right-click your project, select "Add Service Reference," input the SOAP web service URL, customize settings if needed, and proceed—it generates the C# files to call the service.
  • 0 Votes
    3 Posts
    0 Views
    P
    SQL code? I do that already.
  • 0 Votes
    3 Posts
    0 Views
    J
    This would be a database question and there is a database forum. Use code tags when you post code and anything else that should be formatted.
  • moderated spammer???

    Spam and Abuse Watch android com tools xml help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML validation with Schematron

    C# csharp xml help
    2
    0 Votes
    2 Posts
    0 Views
    J
    antann78 wrote: I searched but couldn't find anything. I used the following google search string. Schematron C# library About the 3rd item was the following GitHub - kzu/Schematron: A Schematron ISO/IEC standard processor for .NET, written in C#[^]
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    4 Posts
    0 Views
    P
    Thanks, I used a mix of XmlReader and XmlDocument to resolve it so it is similar to your suggestion.
  • How to get XSI:type in inner class while converting to XML

    C# xml tutorial
    2
    0 Votes
    2 Posts
    0 Views
    P
    You already posted this question in Q&A. There's no need to post it again. What you do need to do is provide more information about what it is that you're actually trying to do here. That question could mean many things and the solution will depend on what it is that you're trying to do here. Advanced TypeScript Programming Projects
  • 0 Votes
    4 Posts
    4 Views
    K
    not that CSSI are used on but not all [CIPD] are used on concurrent as alternative to event driven programming as procedure, to SYSAD, not construe to sitel as :: STD Cryphos negative asp
  • Boy did I luck out!

    The Lounge graphics com xml
    5
    0 Votes
    5 Posts
    0 Views
    B
    honey the codewitch wrote: found nanosvg[^]. This is a library for doing vector graphics using SVG (Yes - that SVG the XML way to paint with geometry) I hacked it to ribbons Wow ! «The mind is not a vessel to be filled but a fire to be kindled» Plutarch
  • C# xml serialization

    C# csharp xml json
    4
    0 Votes
    4 Posts
    0 Views
    OriginalGriffO
    To add to what the others have said, I'd suggest that you read this: That's not a database, dude![^] XML is a transfer format, not a data storage format. "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
  • 0 Votes
    1 Posts
    2 Views
    No one has replied
  • XML view to display in grid view

    Visual Basic css sysadmin windows-admin xml
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    3 Posts
    2 Views
    OriginalGriffO
    Perfect! Cheers mate! :thumbsup: "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
  • My winform resize when i open an OleDbConnection

    C# xml help
    2
    0 Votes
    2 Posts
    0 Views
    P
    Inherently, there's nothing in there that would cause the UI to resize. I assume, however, that there is a lot more to your code than this - what do you do with the DataTable? Is this being bound to something on the form? Advanced TypeScript Programming Projects