Skip to content
  • Eliminating old books

    The Lounge csharp php asp-net xml
    43
    0 Votes
    43 Posts
    1 Views
    J
    dandy72 wrote: Which doesn't make them valueless. But you said "...books were just taking up place in a number of boxes on the floor of a closet." You wanted the storage. You didn't want to build an addition onto your house to provide that storage. Which is the same problem the library has. Except multiplied by thousands.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • RSS experiment...

    The Lounge xml help question announcement
    12
    0 Votes
    12 Posts
    0 Views
    R
    Yeah, my interface is a typical Windows application standing alone purchased from a well known purveyor of a proprietary language. And their thing, as such being a language, is probably to provide inroads to automaticity of just such a process as a TSR. The fact that I don't complain about having to depress a button on a Windows form shouldn't indicate that I'm probably not going to like something else I'd run into down that road that'll cause lightning bolts to fly from my rearend, it just means I don't know everything about their language yet. But I keep a fire extinguisher handy.
  • HttpRequest from Logic App is null

    Cloud Computing database com cloud xml json
    2
    0 Votes
    2 Posts
    3 Views
    T
    Found the issue. For anyone who runs across this or similar problem with an HTTP-Triggered Azure function in the future it may be because you are running the function in isolated worker mode. If so you must change the footprint of the function to look for an HttpRequestData object rather than an HttpRequest object in the Run parameters and return a HttpResponseData object like this: [Function(nameof(myHttpTriggeredFunction))] public static HttpResponseData Run([HttpTrigger(AuthorizationLevel.Anonymous, "post")] HttpRequestData req, FunctionContext executionContext) { // processing code here } There are no solutions, only trade-offs.    - Thomas Sowell A day can really slip by when you're deliberately avoiding what you're supposed to do.    - Calvin (Bill Watterson, Calvin & Hobbes)
  • Anyone heard of the X.400 protocol?

    The Lounge javascript cloud xml json question
    12
    0 Votes
    12 Posts
    0 Views
    T
    Another nighttime story ... In 1983 (*), I started working in a company developing an X.400 system. Testing interaction with other systems was essential, so those of us who kept up old contacts at our alma mater was welcome to keep in X.400 contact with them - the University ran a different X.400 implementation. The underlaying network wasn't perfectly stable, so every now and then, messages didn't make it. One day we had a huge rush of incoming messages, some of them months old. All the missing ones were there. Where had they hidden in the weeks before? It took a while before we found an explanation. When the University mail system failed delivery, it was configured to make a new try later - at midnight. At our company, a raw disc offline backup copy was made every day, or rather: every night, starting at midnight. So when the MTA at the U made another attempt at midnight, night after night, our mail machine was just taken down for backup. One evening, our mail machine had a total crash. As it was already down, the operators decided to make the backup a couple hours early. The machine was back on air before midnight, ready to receive all the failing messages for months from the university. It took yet a couple days before anyone connected the early backup to the rush of emails, but when someone suggested it, the connection was obvious. (*) Some people claim that while internet protocols are based on real experience, real testing, OSI standards are just paperwork that never works in practice. That is of course far from truth. This was in 1983, a year before the fist official X.400 standard was passed. There were (at least) two complete, independent implementations available for testing. But, being ahead of time can be costly. My company obviously based the implementation on working drafts. For a couple years, the drafts for the directory functions (then still part of X.400 - later to be split off as X.500) was quite stable, the implementation was based on that. A few months before the finalizing of the official standard, a major part of the directory drafts was ditched, and another alternative pulled in. My company had to do a huge crash job to implement the other alternative, the one in the final standard. (Obviously, proponents of this other alternative were from companies who had a running implementation of that alternative ready. In order to be competitive, my company had to offer the standard solution as soon as possible, not something of their own, before the competition took over the mar
  • How to convert XML to text file

    C# help csharp design regex xml
    5
    0 Votes
    5 Posts
    0 Views
    OriginalGriffO
    To add to what the others say, you need to sit down and work out exactly what you expect to generate form your XML data. The reason being that XML is a text-based hierarchically structured data format, and it can be all in a single line: newlines (or any other whitespace) are not required by the XML specification, and "individual items" in XML can span multiple lines of text without any change in the data it encapsulates or an entire array of objects can occupy a single line of text - that's problem number one! The second problem is that the data contained in the XML itself doesn't "lend itself" to a flat file output - which is what an unformatted text file contains. If you look at a "basic XML" file like this example: W3Schools CD Catalog[^] you can see that what it contains isn't readily useful as a text file unless you actually convert that to a formatted file of some form. Just stripp[ing out the XML stuff doesN't give you any useful data: Empire BurlesqueBob DylanUSAColumbia10.901985Hide your heartBonnie TylerUKCBS Records9.901988Greatest HitsDolly PartonUSARCA9.901982Still got the bluesGary MooreUKVirgin records10.201990ErosEros RamazzottiEUBMG9.901997One night onlyBee GeesUKPolydor10.901998Sylvias MotherDr.HookUKCBS8.101973Maggie MayRod StewartUKPickwick8.501990RomanzaAndrea BocelliEUPolydor10.801996When a man loves a womanPercy SledgeUSAAtlantic8.701987Black angelSavage RoseEUMega10.9019951999 Grammy NomineesManyUSAGrammy10.201999For the good timesKenny RogersUKMucik Master8.701995Big Willie styleWill SmithUSAColumbia9.901997Tupelo HoneyVan MorrisonUKPolydor8.201971SoulsvilleJorn HoelNorwayWEA7.901996The very best ofCatStevensUKIsland8.901990StopSam BrownUKA and M8.901988Bridge of SpiesT'PauUKSiren7.901987Private DancerTina TurnerUKCapitol8.901983Midt om nattenKim LarsenEUMedley7.801983Pavarotti Gala ConcertLuciano PavarottiUKDECCA9.901991The dock of the bayOtis ReddingUSAStax Records7.901968Picture bookSimply RedEUElektra7.201985RedThe CommunardsUKLondon7.801987Unchain my heartJoe CockerUSAEMI8.201987 (I manually added the line breaks to prevent that showing as a single very long line!) So you need to work out what is in the XML that you are interested in, and how you will "present" that in your resulting file - otherwise it's just a waste of your time and effort! "I have no idea what I did, but
  • 0 Votes
    4 Posts
    4 Views
    pkfoxP
    I just discovered this about a minute before you posted - thanks for your time :thumbsup: In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
  • How to query with multi table

    Database database question com design xml
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Call Web Service with AJAX

    Web Development xml help csharp html visual-studio
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Code dumper (soap sam)

    Spam and Abuse Watch question wcf com tools xml
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Revisionism in journalism

    The Lounge announcement algorithms xml question
    16
    0 Votes
    16 Posts
    0 Views
    D
    inariy wrote: NNTP (Network News Transfer Protocol) is better. RSS and NNTP really serve different purposes. I don't see why anyone with an RSS feed would publish the same thing over Usenet. I still use both every day. There really is no overlap.
  • 0 Votes
    9 Posts
    4 Views
    A
    Mmmm, use the debugger as all suggested, the answer is in the error - Debugging Flutter apps[^]
  • ADP Enterprise API help

    C# json csharp xml help question
    3
    0 Votes
    3 Posts
    0 Views
    J
    Richard Deeming wrote: it has built-in support for generating a C# snippet Well that is interesting information. I would not have even thought to look for that.
  • Heck yeah, I broke through!

    The Lounge csharp c++ graphics design xml
    4
    0 Votes
    4 Posts
    0 Views
    H
    Yeah Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • Adventure time, SVG edition

    The Lounge design graphics com iot xml
    2
    0 Votes
    2 Posts
    0 Views
    M
    SVG FTW ! :java: "If we don't change direction, we'll end up where we're going"
  • 0 Votes
    1 Posts
    3 Views
    No one has replied