Search results

  1. B

    Question sax reader of xref-xml output

    thanks Tom. trash that request. took the hit and did it over lunchtime.
  2. B

    Question sax reader of xref-xml output

    Morning All, has anyone done any work on reading the xref-xml output to a table ? regards, Brendan
  3. B

    Question proparse propath problems.

    Thanks Larry.
  4. B

    Question proparse propath problems.

    Yes Larry that's the one. But I need the full API program directory.
  5. B

    Question proparse propath problems.

    Maybe if I approach in a different way.... Does anyone know where I can svn the original proparse API written in openedge ? Can't locate on oehive, all are references to .net and java. I've used the API versions n a previous company with some success.
  6. B

    Question proparse propath problems.

    Thank rhd. Been there , done that, bought several tee shirts... I'm also very interested to know if anyone actually uses proparse. Lots of talk surrounding it. Seems to be a royal pain to set up.. The results better be worth it :)
  7. B

    Question proparse propath problems.

    Thanks man.
  8. B

    Question proparse propath problems.

    Hi, not a java expert, but attempting to use proparse.net.dll to parse existing codebase, and use one of the subsequent tools to generate html cross-reference of .i's and .p's (smartdox or autodox etc). I have followed install instructions and have an OE development environment with access to...
  9. B

    MSSQL Dataserver Pricing

    thanks for response tamhas ! according to progress document "OpenEdge® 10 Platform & Product Availability Guide" last version March 26, 2010, it should be available.
  10. B

    MSSQL Dataserver Pricing

    Good Morning, Can anyone give a ball-park price for to purchase MSSQL Dataserver for Openedge 10.1b. We would only need minimum price as the development would be a background polling process from Openedge calling a stored procedure in MSSQL Server. Many thanks in advance of response. Brendan
  11. B

    Unix grep command

    something like... cd <directory> find . -name "order*.*" -print | xargs grep -i "create order-line" > ./grepr.txt the grep -i ignores case (I hope).
  12. B

    WSDL request mode problem

    To all, please disregard this thread. Problem is sorted. Web service provider was not "accurate" with their information. See below... Yes, Guys from Department were lying. The Code was working as supposed. Only catch is that ""The SSL client certificate is not supported by OpenEdge"" Therefore...
  13. B

    WSDL request mode problem

    Hello Everyone, One of my colleagues is on a customer site and is having a spot of bother. We are using the code below to access a Web Service. It is using stunnel to access secure site with certificates. hWebService:CONNECT("-WSDL C:\wsdl\AM.wsdl -SOAPEndpoint...
  14. B

    IP address using progress command

    great stuff Maxim !
  15. B

    Type Mismatch when sending email with attachment in smtpmail.p

    GDMS ??? My god, I worked on this product for 8 years. Ferdie, where are you ? Singapore or HongKong ? I was the person who initially installed in SimeDarby in Singapore. Benji
  16. B

    How to timeout an attempted client appserver connection.

    MaximMonin Thank you. I already figured to do this and have introduced this. I do still have an issue though where the appserver may be down. In this instance I still have an unacceptable pause while client CONNECT statement tries to negotiate. benji
  17. B

    How to timeout an attempted client appserver connection.

    many thanks for the response gentlemen. any other postings on the subject greatly appreciated.
  18. B

    How to timeout an attempted client appserver connection.

    Good Evening All, OE10.1b running on Win32. I am testing failsafes on an EPOS system. EPOS client communicates last sales transaction via appserver to a backoffice suite after each sale. This working well. I then try when I pull the network cable out (network failure). The CONNECT METHOD...
  19. B

    how to cancel an INPUT FROM from a serial device.

    leave a monkey alone and he'll solve the problem..... will this work ? DEFINE BUTTON stop-it LABEL "STOP". DEFINE VARIABLE stop-sel AS LOGICAL INITIAL FALSE. DISPLAY stop-it. ON CHOOSE OF stop-it stop-sel = TRUE. ENABLE stop-it. input from com3. repeat: process events. import...
  20. B

    how to cancel an INPUT FROM from a serial device.

    Hi, This is driving me nuts !! I have an RFID tag reader attached to serial com port 3 of my Windows XP pc. At its most basic, I have following code. input from com3. repeat: import lv_tag. end. input close. Once I open INPUT FROM, the program will wait forever for an RFID tag...
Top