:laugh::laugh::laugh:
shadrach_india
Posts
-
i am afraid [modified] -
i am afraid [modified]hi i am in development team. whenever any changes / new modules is need to develop, my seniors people will do it . if they are busy , then the work will be given to me.
-
i am afraid [modified]hi all I have been working for 1 yr 3 months in company It is totally product oriented company. Mostly I am doing support related work (75 %). I am afraid that after some time Will I forgot all programming ? . Guys tell me I need to change my current position to project oriented company . -- modified at 6:00 Thursday 1st February, 2007
-
WinHTTPhi friends i need to post binary data to server using WinHTTP Technology. i have code for this posting data using WinInet Technology. can anyone give to me idea
-
From ProcessIDyes , i can give specifi ProcessId
-
From ProcessIDhi friends Can i can Windiws Handle(HWND) from ProcessID ? thanks in Advance
-
Copy constructorhi friends ! please do anyone tell me why we put & character in copy constructor. i know it is syntax. but i need a little explanation thanks
-
DLL Initialization failedDll might be corrupted
-
MSXML2.DOMDocument & MSXML2.XMLHTTPHi In side my ASPPage I am creating XMLDomDcoument and HTTPRequest Object . I have listed here the Code Processing flow 1. Loading XML Content from Request Object to XMLDOMDocument 2. Opening our DataCenter Server’s ASP Page by MSXML2.XMLHTTP Object 3. Sending the XMLDOMDocument by MSXML2.XMLHTTP object
<% Set objXMLDocument = CreateObject("MSXML2.DOMDocument") dataCenter=dataCenter & Mid(Request.ServerVariables("URL"), InStrRev(Request.ServerVariables("URL"), "/")+1) & "?rt=GWAY" Set objHTTPRequest = CreateObject("MSXML2.XMLHTTP") objXMLDocument.load(Request) objHTTPRequest.open "POST", dataCenter, False objHTTPRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" objHTTPRequest.send objXMLDocument ret = objHTTPRequest.responseText Response.Write ret Set objXMLDocument = Nothing Set objHTTPRequest = Nothing %>
Everything working fine for some time (likely1 hour or 55 minutes ) After that , My Script engine is throwing a Error like “ Failed to Create Object CreateObject("MSXML2.DOMDocument") “ :(( After restarting my webserice, it working fine and come to same status as mention above I have question on this issue 1. Whether it is VBScript Engine Issue :zzz: 2. Whether it is MSXML2.DOMDocument Issue :zzz: Thanks in advance g.p.swamy -
VBScriptEngine & MSXMLDOM.Documenthi CPIans I am struggling with a WebService Project. I am explaining the issue. I have created a web services which process ASP Pages. Whenever a client connect to my service I am creating a thread for handling its request. In this thread, I am calling VBScript Engine component for execute ASP Page. Here my webservice is used as a gateway. In side my ASPPage I am creating XMLDomDcoument and HTTPRequest Object . I have listed here the Code Processing flow 1. Loading XML Content from Request Object to XMLDOMDocument 2. Opening our DataCenter Server’s ASP Page by MSXML2.XMLHTTP Object 3. Sending the XMLDOMDocument by MSXML2.XMLHTTP object
<% Set objXMLDocument = CreateObject("MSXML2.DOMDocument") dataCenter=dataCenter & Mid(Request.ServerVariables("URL"), InStrRev(Request.ServerVariables("URL"), "/")+1) & "?rt=GWAY" Set objHTTPRequest = CreateObject("MSXML2.XMLHTTP") objXMLDocument.load(Request) objHTTPRequest.open "POST", dataCenter, False objHTTPRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" objHTTPRequest.send objXMLDocument ret = objHTTPRequest.responseText Response.Write ret Set objXMLDocument = Nothing Set objHTTPRequest = Nothing %>
Everything working fine for some time (likely1 hour or 55 minutes ) (it is varying for each server) After that , My Script engine is throwing a Error like “ Failed to Create Object CreateObject("MSXML2.DOMDocument") “ :(( After restarting my webserice, ii working fine and come to same status as mention above While running webservice , every execution of ASP , handles are increase gradually I have question on this issue 1. Whether it is VBScript Engine Issue :zzz: 2. Whether it is MSXML2.DOMDocument Issue :zzz: Thanks in advance g.p.swamy -
supporting multithreadhi all how to konw that a COM Object support multithread or not thanks shadrach
-
CoInitializeEx()hi Problem solved
-
CoInitializeEx()In Stdafx.h #define _WIN32_WINNT 0x0400 #define _ATL_FREE_THREADED #include -- modified at 9:48 Monday 6th November, 2006
-
CoInitializeEx()Inside the a thread BOOL CClientThread::InitInstance() { //CoInitialize(NULL); CoInitializeEx(NULL,COINIT_MULTITHREADED); m_TimeLock.Lock(); m_timeLastAction = CTime::GetCurrentTime(); m_TimeLock.Unlock(); // Attach the socket handle to a CSocket object. // This makes sure that the socket notifications are sent to this thread. m_ClientSocket.Attach(m_hSocket); m_ClientSocket.m_pThread = this; ---- ---- ---- }
-
CoInitializeEx()Hi All i need to call this CoInitializeEx() in my application. compiler giving error msg this error C2065: 'CoInitializeEx' : undeclared identifier i have include the respective heaer file "objbase.j" what i have to do compile ? thanks
-
CoCreateInstance giving problemOK. i will change my code and let me see
-
CoCreateInstance giving problemHi all i have developed a web server. Whenever a client connect to my web server, i create a thread and process the rquest. In my thread, each time i create one COM component(Script engine vbscript.dll)using CoCreateInstance. so i am facing a problem while calling the CoCreateInstance(). Is any good method to avoid frequent calls to the COM component. I mean one time initializing my engine and using it whenever i need thanks g.shadrach
-
How to Debugr u writing dlls for vb
-
EventLogHi i have one issue regarding EventLogType of event viewer. I have written code for reading all events from event viewer. for getting event log type name like application, system and security, I refer registry path (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog). Form this path, I come to know how many event log type are and using the keyname, I read the event logs information. My problem is that One machine (windows 2000 server) the eventlog names are differ from registry with eventviewer. Ex. In registry Application In EventViewer . Application Logs So I could not get the log information from event log viewer I am using OpenEventLog() API Thanks By . Shadrach
-
smart pointersHi all Can anyone tell me definition of Smartpointers in simple by G. Palani samy