Well, thanks JRL !
Because this path is being passed in as a variable at runtime to the compiled EXE I was not readily accepting the obvious....
I did track it down to a bug in the external process that is setting the parameter for MS.
Thanks again for everyone's help.
Search found 21 matches
- Wed Jun 24, 2009 8:51 pm
- Forum: Technical / Scripting
- Topic: Problems with long paths
- Replies: 7
- Views: 8084
- Wed Jun 24, 2009 7:52 pm
- Forum: Technical / Scripting
- Topic: Problems with long paths
- Replies: 7
- Views: 8084
long path problems
Must be something in the way you cut/pasted from the website....... There are only single spaces between the words. I just tried to replicate how you might have cut/pasted, and it still pasted as a single space for me. I also just created that long path on the machine where I have MS installed so I ...
- Wed Jun 24, 2009 7:24 pm
- Forum: Technical / Scripting
- Topic: Problems with long paths
- Replies: 7
- Views: 8084
PROBLEMS WITH LONG PATHS
Removing the quotes still makes it operate the same. **BROKEN** One extra tidbit..... I am compiling this to an EXE. Don't know yet if that makes a difference, however I have no choice..... I HAVE to compile it. When I type the command notepad "C:\PROGRAM FILES\ADC LEGAL SYSTEMS INC\PERFECT PRACTICE...
- Wed Jun 24, 2009 6:56 pm
- Forum: Technical / Scripting
- Topic: Problems with long paths
- Replies: 7
- Views: 8084
Problems with long paths
I am having problems with IfFileExists and ReadIniFile when the file paths are long and contain spaces. I'm running version 10.1.21 Pro I have code similar to this: IfFileExists>"%RPath%\bin\ppHTTPLookup.ini" stuff goes here Else MessageModal>"%RPath%\bin\ppHTTPLookup.ini" NOT FOUND Endif And at run...
- Tue Jun 16, 2009 9:19 pm
- Forum: Technical / Scripting
- Topic: ExportData problem in version 11.1.11e Eval
- Replies: 2
- Views: 3660
ExportData problem in version 11.1.11e Eval
The ExportData command seems to be adding an extra character to the end of the file written to disk. The imported file is ---------------------------------------- -- THIS IS A TEST ; ----------------------------------------- What comes out looks similar to this --------------------------------------...
- Tue Jul 29, 2008 5:17 pm
- Forum: Technical / Scripting
- Topic: Access violation at address 00406017 in module 'msched.exe'.
- Replies: 5
- Views: 9423
Assigned causes Access Violation ?
Update: Well, I looked at the log of the run it was making when apparently the access violation happened, and I believe I found what it was running when the error occured. I believe the access violation probably happened when it was doing the "Assigned>" statement. Then nothing happened until I clos...
- Tue Jul 29, 2008 5:01 pm
- Forum: Technical / Scripting
- Topic: Access violation at address 00406017 in module 'msched.exe'.
- Replies: 5
- Views: 9423
Access violation at address 00406017 in module 'msched.exe'.
I'm getting the following error: Access violation at address 00406017 in module 'msched.exe'. Read of address 6E3A6E6A Occurs very intermitently.... and I'm usually not around to see it happen. This is happening in the new 10.1.18 version. Just wondering if anybody else has seen this before? It will...
- Mon Jul 28, 2008 5:39 pm
- Forum: Technical / Scripting
- Topic: Best way to determine Number of records being processed.
- Replies: 6
- Views: 8241
Best way to determine Number of records being processed.
When dealing with VERY LARGE files, what I have done is to find out the size of the file in bytes (using the MS FileSize> command or DOS DIR command) and then pick a reasonable average line length to divide into this. This gives a reasonably accurate guess as to the number of lines. The FileSize> or...
- Fri Jul 25, 2008 7:21 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
Thank you Marcus !
Thank you Marcus !
This fix worked.
This fix worked.
- Tue Jul 22, 2008 6:05 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
HTTPRequest not sending basic authentication
Here is more info to support my theory that HTTPRequest is not sending correct proxy authentication... This is what my debug proxy captured when I made a simple search on google from IE7 browser. Notice the line which reads: Proxy-Authorization: Basic YWRyb2VnZTo0ODJhZHI= HTTPRequest doesn't send th...
- Tue Jul 22, 2008 4:45 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
HTTPRequest not working with Squid proxy basic authenticatio
Copied from the response of the proxy in my previous post .... Proxy-Authenticate: Basic realm="Squid proxy-caching web server" Yes, it appears it is looking for basic authentication. Shouldn't HTTPRequest be sending the username/password base64 encoded in the headers it sends to the proxy? It doesn...
- Tue Jul 22, 2008 2:31 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
HTTPRequest Proxy Problems
I'm still having the issues with HTTPRequest not talking correctly to my web proxy - however I've now had the time to document the problem in more detail. I installed an open-source java program http://grinder.sourceforge.net/ Which has as part of it a "debugging proxy" -- to intercept and log all ...
- Fri Oct 26, 2007 2:11 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
Proxy method
Update:
I believe the proxy server is using basic authentication. This is usually the only type browsers are capable of. Username and password are sent in a header after being base64 encoded.
I believe the proxy server is using basic authentication. This is usually the only type browsers are capable of. Username and password are sent in a header after being base64 encoded.
- Thu Oct 25, 2007 9:25 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
Proxy version
The version of the proxy is reported as (squid/2.6.STABLE6)
I don't know what authentication method it is using currently.
I don't know what authentication method it is using currently.
- Thu Oct 25, 2007 9:06 pm
- Forum: Technical / Scripting
- Topic: HTTPRequest proxy problem
- Replies: 12
- Views: 20319
HTTPRequest proxy problem
I'm having problems with HTTPRequest (using MS 8.0.1) talking correctly to my Squid 2.6 proxy server. This is the sample program I'm running Let>HTTP_TIMEOUT=10 Let>Q=http://tess2.uspto.gov/bin/gate.exe?p_lang=english&p_d=trmk HTTPRequest>Q,,GET,,XMLResponse,192.168.3.3,3128,adroege,482adr MessageMo...