Search results for query: *

  1. R

    Resolved Problem with Click-Once Deployment

    Eureka, that's brilliant. Now that I understand how to turn ClickOnce on in Edge (not at all difficult once I addressed my usual stupidity), I've updated the MANASYS Jazz Setup page with instructions on how to turn ClickOnce on, and quoting from and referencing this thread. No need to look for...
  2. R

    Resolved Web API Question

    Resolved here Thank you everybody who helped me.
  3. R

    Resolved Warning Messages on publishing

    I'm marking this Resolved, everything seems to be working Ok (or was until Microsoft decided to release Edge without ClickOnce support!!). But that's another issue. Thanks for your help JohnH
  4. R

    Resolved Problem with Click-Once Deployment

    This is certainly weird, it means that the easy convenience of ClickOnce is lost. I'll check it out as an interim approach for the current release which has already "escaped" into the wild, but longer term it is too much to ask of users so I'm going to explore other deployment methods. Most...
  5. R

    Resolved Problem with Click-Once Deployment

    Thanks JohnH. I'd been unable to find the problem, it had to be in my logic, or in the change from VS2017 -> VS2019, or the change to the latest Edge browser. I proved that it wasn't VS2017 -> VS2019, and in spite of testing for a couple of weeks with StartupTest I couldn't find anything...
  6. R

    Resolved Problem with Click-Once Deployment

    I'm still getting the same messages as before, so nothing has changed. They relate to an IBM component (DB2) specifying a different processor architecture to the rest of the project, but DB2 has always worked correctly both in test and in published version, including in a test with the most...
  7. R

    Resolved Problem with Click-Once Deployment

    My software is made available by click-once deployment from the Jazz Software web site. After an earlier issue was resolved deployment has worked correctly since May 2016, but now it doesn't seem to recognize that a new version is available and download and run it. Clicking the Get Jazz button...
  8. R

    Resolved Web API Question

    The tutorial's POST code within TodoItemsController (derived from ControllerBase), which was generated using API Controller with Actions Using Entity Framework, and then slightly modified, was // POST: api/TodoItems [HttpPost] public async Task<ActionResult<TodoItem>>...
  9. R

    Resolved Web API Question

    Thanks John, that's worth noting. My current task is to generate client-side interfaces for CICS Web Services like JSPG2, so I need to understand the minimal Web API code to make this happen. Obviously any database used by a CICS Web Service will exist on a "mainframe", and won't be...
  10. R

    Resolved Web API Question

    Thanks for responding. The reason that JZEmployee is nested inside IJSPG2 is that this reflects the structure of the web service message. I hadn't realized that [key] had to be applied to an outer class. EMPNO is the only class to which a key attribute could have been relevant - it is the...
  11. R

    Resolved Web API Question

    I have spent some time working with the tutorial Create web APIs with ASP.NET Core as recommended in my previous query. I'm now trying to generate a client to invoke CICS web service JSPG2 but I'm having trouble with getting my API test to generate. Program JSPG2 is an operation within...
  12. R

    Resolved How to Post to a REST Service

    Thanks Sheepings, that makes it clear. I'll change my objectives: interface objects will be generated for C# only. Should I end up with a client that has a VB.Net project that they want to connect to the web services that MANASYS Jazz has created, they can add a C# project to their solution...
  13. R

    Resolved How to Post to a REST Service

    This looks really useful - it's the first thing I've seen from Microsoft that mentions Swagger. When MANASYS Jazz generated program JSPG2, as well as the COBOL it generated a Swagger definition of the service, referencing the .json schemas for the input and output messages. So this looks a...
  14. R

    Resolved How to Post to a REST Service

    Thanks for this suggestion JohnH. First I'm going to to the upgrade to VS 2019 that you recommended with my previous query (I'm doing it now), then if that doesn't solve the problem on its own I'll come back to this.
  15. R

    Resolved How to Post to a REST Service

    Program JSPG2 is a COBOL program providing a REST (.json) web service that was generated by MANASYS Jazz, and compiled into a mainframe environment as a CICS web service. I have successfully tested it with SOAPUI. Now I want to develop client-side logic to invoke this service: I want to...
  16. R

    Resolved Warning Messages on publishing

    Thanks JohnH, I'll take your suggestion to install VS2019 and use .Net 4.8 for the next development round. In the meantime I've been experimenting with some local builds, still with VS2017. By changing Compile/Target CPU from X86 to X64 the messages related to the IBM DB2 support...
  17. R

    Resolved Warning Messages on publishing

    My software is deployed from my web site using ClickOnce. When I published it I got various warning messages, however everything seems to be OK. Should I be concerned? First there are some messages related to an IBM Add-in: - 1>------ Build started: Project: Jazz, Configuration: Debug x86...
  18. R

    Answered Path.GetFullPath - can't give 2nd parameter

    Thank you JohnH, that's a much simpler solution than jmcilhinney's solution, which required Net Core, as there were many references to Net Core classes. This Stack Overflow page starts to unpick some of the changes I would have had to make to use it, but then your answer was posted giving me a...
  19. R

    Answered Path.GetFullPath - can't give 2nd parameter

    Thank you, I'll use this. Regards, Robert.
  20. R

    Answered Path.GetFullPath - can't give 2nd parameter

    I have a reference JSPG1I.json that should be resolved relative to another file. It shoujld be simple to get this using Path.GetFullPath(File, Path): - Dim File1 As String = "C:\tutorials\TstSQL\JSPG1.json" Dim Path1 As String = Path.GetDirectoryName(File1) Dim File2 As String =...
Back
Top