Search results

  1. C

    Change Broker URL

    Thanks for your reply. I was able to correct the problem by doing a "Save As" and renaming my file.
  2. C

    Change Broker URL

    I'm having problems figuring out how to change the broker URL for my CGI Wrapper. I've created a new broker and want to reference it whenever I compile my program. I've changed the broker name the Broker URL text box when I select Preferences and go to the WebSpeed tab. The changes have been...
  3. C

    Temp-Table Data Not Available

    I finally figured out what was happening. The environment variable State_Aware_Enabled had been added to the progress explorer and set to NO. After removing this variable, the temp-table began to work correctly again. Thanks, CR Junk
  4. C

    Temp-Table Data Not Available

    In my WebSpeed application, I'm creating a temp-table and storing a large amount of data in it whenever a user goes between two specific screens. Everything had been working correctly for a while now until today. The data is being written to the temp-table correctly. When the user clicks...
  5. C

    Output File to Mapped Drive

    FINALLY!! I found out how to change the user. In Services, I changed edited the "AdminService for Progress 9.1D". In the properties for this service, I changed the Log On from "Local System Account" to "This account" and then added the appropariate username and password for Server_B. After...
  6. C

    Output File to Mapped Drive

    I think I'm dealing with a permission error. If I run a .bat file that copies files from one folder to another on Server_A, it works fine when executed with WebSpeed. I modified this .bat file so that it copies files from Server_A to Server_B. I can manually run the .bat file on Server_A...
  7. C

    Output File to Mapped Drive

    This is probably a mistake on my end. In my previous two post, I had placed the FILE-INFO:FILE-NAME code before the xml file was created - this created the Message.txt fiel. After I moved it bleow the code that creates the xml file. It did not create Message.txt file. I am logging onto...
  8. C

    Output File to Mapped Drive

    I tried the code you posed again, but this time I substitued T:\ with C:\. It said: Cannot find C:\xml24 Here is the code I'm using to test if WebSpeed can find the directory: FILE-INFO:FILE-NAME = tmpFN. IF FILE-INFO:FILE-TYPE = ? THEN OUTPUT TO...
  9. C

    Output File to Mapped Drive

    Sorry about the tmpFileName in the code I listed. I typed the name wrong in my message. I changed it to tmpFN in my previous message. I tried the code you posed and it returned: Cannot find T:\xml24 I got on Server_A and verified that the T:\ drive is mapped to Server_B. I also got on...
  10. C

    Output File to Mapped Drive

    I'm having problems getting WebSpeed to write a file out to a mapped network drive. Originally, I had WebSpeed output the file to the C:\. This works without any problems. /* Write file to Server_A */ ASSIGN tmpFN = "C:\xml24\MPR\" + tmpRN + ".xml". OUTPUT TO value(tmpFN). I mapped a...
  11. C

    WebSpeed and Firewalls

    Casper, I think we have all the appropriate ports open now. I'm having trouble finding documentation that shows me how to setup everything (maybe I've come across it but didn't realize what I was looking at??). I have the messenger installed on the dmz and the ports open now. Where do...
  12. C

    WebSpeed and Firewalls

    Thanks for everyone's help. Casper, if I put the messenger on the webserver n the dmz, how wide of a range should be used for the agent? Currently, I have it setup like this: Minimum: 3202 Maximum: 3502. Thanks, CR Junk
  13. C

    WebSpeed and Firewalls

    I'm not very educated when it comes to working with network related issues, so hopefully what I'm asking will make sense. I'd like to move my WebSpeed app over from our development server to the DMZ. On our DMZ we're running IIS on W2K. We also have Progress Explorer installed on the DMZ...
  14. C

    How to handle apostrophe?

    Just take a picture of the code next time! :) Thanks again! CR Junk
  15. C

    How to handle apostrophe?

    Hi Casper, I tried using: ASSIGN MyName = REPLACE(MyName, "'", "&#39"). This seems to have solved the problem. Thanks for your help! CR Junk
  16. C

    How to handle apostrophe?

    Thanks for your help. I tried using the HTML-ENCODE(), but this did not seem to work. I'm not sure that I'm following you on the replace ' with '. Could you elaborate a little more? Thanks, CR Junk
  17. C

    How to handle apostrophe?

    What is the best way to handle an apostrophe when working with WebSpeed? I've tried the following: ASSIGN MyName = REPLACE(MyName, "'", "''"). But I just end up with: Joe''s Seafood After a few post backs to the server, Joe''s Seafood eventually gets truncated down to Joe. Thanks, CR Junk
  18. C

    Run Non-WebSpeed Procedure

    Thanks everybody! After changing the UPDATE to ASSIGN, the code is executed correctly. I'm slowly learning Progress and WebSpeed. CR Junk
  19. C

    Run Non-WebSpeed Procedure

    Do I have to do anything special in the WebSpeed portion in order for the non-WebSpeed procedure to run? As a test, I copied the file CP.P to the same directory where my WebSpeed CGI Wrapper is located. I then added: Run CP.P. to a procedure in the WebSpeed CGI file but the code does not seem...
  20. C

    Obtain Values From ASP Pages

    For anyone who is curious, I somewhat accomplished this - although it is not a very secure way to pass this type of data. I created an encoding procedure in my ASP page that will encode the UserName, UserID, date/time. I then had my ASP page to dynamically create a URL to the WebSpeed file...
Top