Search results

  1. W

    Answered Sending Json As Form-data

    i managed to do the POST using Postman, but i'm still not able to "translate" this to proper ABL-code. Maybe somebody could help. Attatched a screen-shot how I did it in Postman
  2. W

    Answered Sending Json As Form-data

    After fighting last week to receive JSON-data via httpGet I ran into the next problem immediatelly. Now I have to send back this modified JSON-data, but it seems that I have to send it back as form-data. How would I do that ? oRequest = RequestBuilder:Post(httpUrl, JsonObject)...
  3. W

    Httpget And Json

    for all who are interested: OE11.6 seems to have a bug. installed SP 3 (OE11.6.3) and now everything works fine, I get the JSon-Response as expected.
  4. W

    Httpget And Json

    tried it on laptop, where Avira is running instead of AVG --> and everything works fine ! Thanks to everybody who helped !
  5. W

    Httpget And Json

    Firewall is not active, only AVG is running. I already turned AVG off, did not solve the problem
  6. W

    Httpget And Json

    funny ! That's the same code I use. Nevertheless: i copied your code, ran it and my result is still the same: "{}", that's all I get. Any ideas what could be the problem ? I'm on OE11.6 and Win 8
  7. W

    Httpget And Json

    Hi everybody, OE11.6 i'm completely new to OpenEdge.Net.HTTP and JSon, so I would appreciate any help. when I enter the following command in the address-line of a browser, i see the JSon-data on the screen...
  8. W

    Adding Shortcut To A .net-menu-item

    Hi everybody, i can add eg. "F8" as a shortcut to a .net-menu-item with this command: oMenuItem:ShortcutKeys = System.Windows.Forms.Keys:F8. but I have no clue how to add a "combined" shortcut like "CTRL-F". I guess I have to combine "Keys:Control" and "Keys:F" somehow, but I don't kno how...
  9. W

    Abl-menu On .net-controls

    Wow, this is great, thanks a lot ! This seems to be a very easy way to convert existing ABL-Windows to .Net-Windows ! But this immediatelly leads me to the follow-up question: If one has ABL-Widgets and .NET-components together, how does this effect r-code-size and loading-times (e.g. over a...
  10. W

    Abl-menu On .net-controls

    Hi everybody, as i'm really new to using .Net-controls in OE (11.6) forgive my stupid question, but: is it possible to define a popup-menu in ABL and connect it to a .Net-TreeView-control ?
  11. W

    Converting C#-examples To Abl-code

    didn't see your 2 posts while I was writing my last answer. Will soon look into this. Thanks a lot for all your efforts
  12. W

    Converting C#-examples To Abl-code

    the "Organisation"-class has a property called "FileCabinetsRelationLink", which in my case returns "/DocuWare/Platform/FileCabinets?orgid=464". This takes me to the website, where I can access my documents online. No use at all. I know you can only guess and I really appreciate all your...
  13. W

    Converting C#-examples To Abl-code

    here is a link to the Docuware Online-documentation: FileCabinets Class
  14. W

    Converting C#-examples To Abl-code

    the line assign fileCabinets = org:GetFileCabinetsFromFilecabinetsRelation(). gives error 14830 You cannot assign a scalar value into a .NET array object. (14830)
  15. W

    Converting C#-examples To Abl-code

    Hi everybody, OE11.6 – Win8 Sorry for the long post, but I try to give as many information as I can. I try to access the DocuWare Platform Services and have some C#-examples, which I try to transform to Progress ABL. I know that no one out there is familiar with this Docuware-Library, but I...
  16. W

    Question Accessing .net-array From Abl

    sorry guys to bother you again, but i'm stuck again. How would the following class be implemented in ABL ? public IEnumerable<FileCabinet> GetAllFileCabinetsUserHasAccessTo() { return (from fileCabinet in this.org.GetFileCabinetsFromFilecabinetsRelation().FileCabinet where...
  17. W

    Question Accessing .net-array From Abl

    works like a charm ! Thanks a lot
  18. W

    Question Accessing .net-array From Abl

    Hi everybody OE11.3 - Win8 I'm trying to read a property in a .NET-class and I'm not able to translate the C#-syntax to ABL-code. I'm totally new to this kind of programming, so I would appreciate any code-example. the class is called "DocuWare.Platform.ServerClient.ServiceConnection" and...
Back
Top