Recent content by Errornix

  1. E

    sending xml through progress

    I actually tried that right after my last post. I also added Host to the HTTP header. Together these got it to work. :) Thanks for the help, everybody.
  2. E

    sending xml through progress

    I'm getting closer. I've finally managed to connect and send my request. However, I am now getting a "400 Bad Request" response. Here's what my request looks like: POST /path/to/something.aspx HTTP/1.1 Content-Type: text/xml Content-Length: 485 <?xml version="1.0"?> <more xml here blah...
  3. E

    sending xml through progress

    Ah, I'm an idiot. The reason I can't connect on port 80 is because it's blocked and I need to connect through a proxy... the plot thickens.
  4. E

    sending xml through progress

    Help Connecting to Port 80 I think my application is close to working, but I am having difficulty connecting to the host on port 80. The following connects: DEFINE VARIABLE hSocket AS HANDLE NO-UNDO. CREATE SOCKET hSocket. hSocket:CONNECT("-H somehost -S 443"). But if I try the same thing on...
  5. E

    sending xml through progress

    Hey joey, I'm just hear to try to convince you to post your code. I'm in the same situation as Jupiter, and I need all the help I can get. I've never done any kind of socket programming with Progress, and I'm sure I could learn a lot from your library.
  6. E

    Change Procedure Return-Type

    Is there a way to define the return-type for a .p? I know how to specify the type when using OUTPUT parameters, but I want to be able to define the actual RETURN data-type. (It is CHAR by default).
  7. E

    Adobe Flex and WebSpeed

    I'm still working out some of the details, but for the most part, I have it figured out. Basically, here's how it works... Flex cannot directly call webspeed/progress procedures, instead it must call Web Services. OpenEdge 10 comes with a program called ProxyGen that is used to convert your .r...
  8. E

    Adobe Flex and WebSpeed

    I am currently trying to develop an application using Adobe Flex to build the front-end and WebSpeed for the backend. Has anybody here ever done this before? If so, could you please provide some insight on how you called a WebSpeed procedure from Flex? Thanks. I'm using OpenEdge 10 and Flex 3 btw.
  9. E

    Populate a Browser with a Temp-Table

    Actually never mind, I got it. I was struggling with not being able to define the fields in the browser since I'm using a freeform query. I didn't notice the "Display" section where they can be specified.
  10. E

    Populate a Browser with a Temp-Table

    I have a Temp-Table that I defined in the Definitions section of a screen. I the Main Block, I call a procedure that populates my Temp-Table. I would now like to use this Temp-Table to populate a Browser. Could anybody help me with this?
  11. E

    Populating a Combo-Box with a DB Field

    Hey all, I have a combo-box that I need populated with the values of a certain field. Writing the query to get the data isn't an issue at all. I just don't know how to get the results into my combo-box. Can anyone tell me how to achieve this? Thanks. I'm using Progress 9.1c btw.
Top