Search results

  1. K

    Webspeed Server Upgrade

    I plan on upgrading the server that WebSpeed (10.1.C cgiip.exe) is currently running on. Does WebSpeed run on Windows Server 2012 and 2016? Is there anything I should be aware of when installing and configuring the software? I appreciate the help. Mark
  2. K

    Openxml Libraries

    I would like to create MS EXCEL files (.xlsx) from a CGI program and not use MS Office. I've been using OpenXML Libraries by DocxFactory. It works well when I use a predefined EXCEL template and a buffer handle. I would like to be able to have two tables setup in the template. Each table...
  3. K

    Question Problem Opening Excel From Browser Using Webspeed

    I'm running Webspeed 10.1C on a Window Server 2003. Client PC is Windows 7 pro and I.E. 11 and EXCEL 2010 Years ago I wrote a CGI program that downloads order information into EXCEL. I have the following statements output-http-header("Content-disposition","Attachment~; filename=orders.xls")...
  4. K

    Client side digital certificates with SSL

    It is my understanding that ABL does not support client side digital certificates with SSL . The web service that I'm calling requires HTTPS - client side certificates with SSL. One workaround is to use a proxy server stunnel. Stunnel will handle the SSL encryption/decryption. Does any one...
  5. K

    Web Service & HTTPS

    I'm using WebSpeed 10.1C I was able to consume a web service and call a variety of methods using HTTP. The ISP has migrated the web service over to HTTPS. I tried using bprowsdldoc -show100style https: //XXXXX and received errors: Secure Socket Layer (SSL) failure. error code...
  6. K

    Web Service and HTTPS

    Moved thread over to Development Forum
  7. K

    Transmitting XML

    I have some raw XML that I would like to send to a web service. This one transaction authenticates a user/password and requests product availability. When I use SOAP UI and make the raw XML request it works fine. In the past I’ve used Webspeed/ABL and the SAX writer to format the XML. I would...
  8. K

    WSDL Problem

    I'm having problems accessing a web services WSDL using bprowsdldoc. I issue the following command: bprowsdldoc -show100style http://ppd2-wsdl.ussco.com/xmlo/001/ProductAvailabilityWebService.wsdl I do not receive any error messages and OperationIndex.html and DataTypes.html files are not...
  9. K

    Storing XML Data

    I'm running 10.1c webspeed I would like to be able to store the response from a web service "OrderGet" method, modify some of the data and then update the order by calling a web service "OrderUpdate" method. For the update to occur I have to submit all the "OrderGet" data elements. The...
  10. K

    Reading XML into Temp-table

    I'm running WebSpeed 10.1C on a Windows 2008 server. I would like to use XML-READ to read an XML file and store it in a temp-table. I'm not sure how to define a static temp-table using the following XML: <GetCategoryChildrenResponse xmlns="http://tempuri.org/"...
  11. K

    READ-XML Problem

    I'm running WebSpeed 10.1C on Windows 2008 server. I'm trying to store XML data into a temp-table. The web service returns multiple records and they are not being stored in the temp-table. Here's the temp-table definition: def temp-table t-GetRootCategories undo xml-node-name...
  12. K

    SAX and temp-table

    I’m running WebSpeed 10.1C on Window Server 2008. I’m using SAX to create the XML when making a request to a webservice. When I successfully login to the webservice it returns a token that should be included on all subsequent transactions. I’m storing the login token data elements in a...
  13. K

    Question Problem Opening Spreadsheet in EXCEL

    I'm running webspeed 10.1c on a Window's 2003 server. I'm running IE 9 and Microsoft Office EXCEL 2010 on a Windows 7 pc. After many years of downing data into EXCEL I started getting the following error message from EXCEL: Here's some snippet of code: filename =...
  14. K

    Date Problem

    When I access a table's date field from the chui Progress editor it displays fine. When I access the table's date field from Webspeed the value is incorrect. Here's some samples. Good Date Bad Date Progress Editor Webspeed 01/05/12 3/5/1999 01/05/12...
  15. K

    Asynchronous Call

    I have a CGI program that calls a web service. I would like to call the CGI program asynchronously or at a minimum run the web service asynchronously. Is this possible? I'm running Webspeed 10.1.C on Windows Server 2003.
  16. K

    Session:parameter

    I have a program that I run as a batch program (command line) using the -param option. I would like to use the same program in a real-time application. Is there anyway I can set SESSION:PARAMETER before I call the program? Thanks Mark
  17. K

    Consume .NET Web Service

    From an ABL program is there a way to consume a .NET web service and pass an object that is readable in .NET? Thanks Mark
  18. K

    Progress Web Service: Passing Parameters

    I created a web service using Openedge 10.1C03. How do I pass a temp table for a Doc/Lit Web service? I would like to take advantage of the built-in XML formatting. In my client code I have the following: DEFINE TEMP-TABLE b-test LIKE test. RUN XYZ IN hXYZObj(OUTPUT result, OUTPUT TABLE...
  19. K

    Deploy a New Web Service Error

    OS: Window Server 2003 Progress Version 10.1C IIS 6.0 I'm trying to create a web service using Proxygen/Web Service Adapter/AppServer etc. In Progress Explorer I'm accessing the Web Services Adapter/wsa1 and selecting Deploy A New Web Service. I select the .wsm file and hit OK. The deployment...
  20. K

    Best Way To Read XML Data

    I'm running 10.1C and have a cgi wrapper programs that calls a web service. The web service response is in the following simple XML format: - <s:Body xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> - <Error xmlns:i="http://www.w3.org/2001/XMLSchema-instance"...
Top