Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

shadrach_india

@shadrach_india
About
Posts
77
Topics
36
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • i am afraid [modified]
    S shadrach_india

    :laugh::laugh::laugh:

    The Lounge question

  • i am afraid [modified]
    S shadrach_india

    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.

    The Lounge question

  • i am afraid [modified]
    S shadrach_india

    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

    The Lounge question

  • WinHTTP
    S shadrach_india

    hi 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

    C / C++ / MFC sysadmin

  • From ProcessID
    S shadrach_india

    yes , i can give specifi ProcessId

    C / C++ / MFC question

  • From ProcessID
    S shadrach_india

    hi friends Can i can Windiws Handle(HWND) from ProcessID ? thanks in Advance

    C / C++ / MFC question

  • Copy constructor
    S shadrach_india

    hi 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

    C / C++ / MFC

  • DLL Initialization failed
    S shadrach_india

    Dll might be corrupted

    C / C++ / MFC help

  • MSXML2.DOMDocument & MSXML2.XMLHTTP
    S shadrach_india

    Hi 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

    XML / XSL help question sysadmin tools xml

  • VBScriptEngine & MSXMLDOM.Document
    S shadrach_india

    hi 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

    C / C++ / MFC help question wcf sysadmin tools

  • supporting multithread
    S shadrach_india

    hi all how to konw that a COM Object support multithread or not thanks shadrach

    C / C++ / MFC com tutorial

  • CoInitializeEx()
    S shadrach_india

    hi Problem solved

    C / C++ / MFC help question

  • CoInitializeEx()
    S shadrach_india

    In Stdafx.h #define _WIN32_WINNT 0x0400 #define _ATL_FREE_THREADED #include -- modified at 9:48 Monday 6th November, 2006

    C / C++ / MFC help question

  • CoInitializeEx()
    S shadrach_india

    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; ---- ---- ---- }

    C / C++ / MFC help question

  • CoInitializeEx()
    S shadrach_india

    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

    C / C++ / MFC help question

  • CoCreateInstance giving problem
    S shadrach_india

    OK. i will change my code and let me see

    C / C++ / MFC com sysadmin tools help

  • CoCreateInstance giving problem
    S shadrach_india

    Hi 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

    C / C++ / MFC com sysadmin tools help

  • How to Debug
    S shadrach_india

    r u writing dlls for vb

    C / C++ / MFC help csharp c++ visual-studio

  • EventLog
    S shadrach_india

    Hi 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

    C / C++ / MFC help sysadmin windows-admin security json

  • smart pointers
    S shadrach_india

    Hi all Can anyone tell me definition of Smartpointers in simple by G. Palani samy

    C / C++ / MFC
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups