Search results for query: *

  • Users: RobertbNZ
  • Content: Threads
  • Order by date
  1. R

    Answered Signing Applications with a Trusted Certificate

    I want to sign my software with a trusted certificate, so that I don't get the steps "Windows Protected your PC" when it is downloaded. How do I do this? Detail I am developing software with Visual Studio, and the builds (ClickOnce manifests and assembly) are signed, using a certificate...
  2. R

    Resolved Nested Classes with Arrays, Part 2

    Skydiver, this is a follow-on from my previous query, I'm now trying to handle a response containing 10 occurrences of the Employee record. I'm having some challenges bridging the COBOL world where Records and Fields map an area of memory, and the .NET world of reference and value classes...
  3. R

    Resolved Nested Classes with Arrays.

    In Nested Classes Skydiver showed me how to create a class structure that mapped a COBOL record layout. I'm now trying to extend this, with a "mainframe" CICS Web Service that returns 10 occurrences of a record. With 1 occurrence a class structure like this works perfectly, with program JSPG2...
  4. R

    Resolved Controls and Events

    I'm developing C# skills after years of working with VB.NET. I am having difficulty finding out what events are available with a control, and how to relate an event handler to the event that I want to use. In VB I'd click a control on a form and the default event handler would be added. For...
  5. R

    Resolved Using struct

    I'm having trouble using a struct. Why doesn't this work: - Changes Changed = new Changes(); Changed.Skip = true; struct Changes { public bool Skip; public bool EMPNO; } The line "Changed.Skip = true; is rejected with messages: -...
  6. R

    Resolved Handling Errors in a Web Service Interface

    Continuing the saga of my Web Service Interface project, I am now trying to find the best way of handling client-side errors. I think that I have almost completed the research phase, and the illustrated code all works as I intend, but before I continue with the development phase I want to...
  7. R

    Resolved Use HttpClient Synchronously

    The advice of Skydiver for my previous question directed me to HttpClient, and I'm now successfully sending a message to my CICS web service and receiving a response with the code below. This is based on code from an HttpClient tutorial How do I convert this so that line 22 waits for the...
  8. R

    Resolved Web Service Query

    I have spent some time working with the tutorial Create web APIs with ASP.NET Core as recommended in a previous query. I'm now trying to generate a client to invoke CICS web service JSPG2 but I'm having trouble with writing my API test. I suspect that I'm trying to approach the problem from...
  9. R

    Resolved Nested Classes

    I need to map COBOL record layouts into C# (or VB) classes. COBOL record layouts may have many definition levels, and I need to be able to cope with the rule that a field name may be repeated, provided that there is a way of distinguishing which field you mean with full qualification. I thought...
Back
Top Bottom