Hi Foxpro Expert,
I have a strange bug, I need to find the cause or find a workaround solution.
here it is:
On my server, windows sbs 2011 is intalled. I run nine(9) VFP9 programs compiled in EXE. One the the program doing just 1 thing: send XML. The program send XML several time during the day to lot of different IP address.
The problem is:
If the program sending XML freeze (I don't know why it's freezing?).... ALL foxpro application also freeze (NOT RESPONDING) and are not accessible. It's like the object create in foxpro LOCK foxpro main core. The CPU activity drop to 0%. After 10 to 20sec. everything return to normal like nothing happen. And all fox pro application continue to work.
When I go to Event viewer ... nothing correspond to the time the problem occurred. And I don't see any error in there.
Other program than foxpro running just ok. So, last time it was doing that, I take a screen shot to show you the RESOURCE MONITOR.
Please take a look
here is the code causing this
Do you know How i can isolate the xml transmission to never freeze or interfering with other foxpro exe?
thank you for you time and help
I have a strange bug, I need to find the cause or find a workaround solution.
here it is:
On my server, windows sbs 2011 is intalled. I run nine(9) VFP9 programs compiled in EXE. One the the program doing just 1 thing: send XML. The program send XML several time during the day to lot of different IP address.
The problem is:
If the program sending XML freeze (I don't know why it's freezing?).... ALL foxpro application also freeze (NOT RESPONDING) and are not accessible. It's like the object create in foxpro LOCK foxpro main core. The CPU activity drop to 0%. After 10 to 20sec. everything return to normal like nothing happen. And all fox pro application continue to work.
When I go to Event viewer ... nothing correspond to the time the problem occurred. And I don't see any error in there.
Other program than foxpro running just ok. So, last time it was doing that, I take a screen shot to show you the RESOURCE MONITOR.
Please take a look
here is the code causing this
Code:
oXML=CREATEOBJECT("msxml2.xmlhttp.3.0")
lcLink = "[URL unfurl="true"]http://xxx.xxx.xxx.xxx:7007/cgi-bin/abc_tt.cgi"[/URL]
oXML.Open("POST", lcLink , .f., "user", "pwd")
lcResult = oXML.Send(lcXML)
Do you know How i can isolate the xml transmission to never freeze or interfering with other foxpro exe?
thank you for you time and help