Click here to Skip to main content
16,005,037 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Progress Bar showing how much % is completed Pin
Shibu.V.Nair9-Jul-02 20:44
Shibu.V.Nair9-Jul-02 20:44 
GeneralRe: Progress Bar showing how much % is completed Pin
Thomas Freudenberg10-Jul-02 2:59
Thomas Freudenberg10-Jul-02 2:59 
GeneralChecking 'mute' of Speaker Pin
Shibu.V.Nair9-Jul-02 18:31
Shibu.V.Nair9-Jul-02 18:31 
Generalhelp me help me Pleaseee>>>>>>>> Pin
Anonymous9-Jul-02 18:25
Anonymous9-Jul-02 18:25 
GeneralRe: help me help me Pleaseee>>>>>>>> Pin
Christian Graus9-Jul-02 19:41
protectorChristian Graus9-Jul-02 19:41 
Generalcreating an image "transition" in gdi+ Pin
el_robert9-Jul-02 17:51
el_robert9-Jul-02 17:51 
Generalfor loop was cut off in first post Pin
el_robert9-Jul-02 17:53
el_robert9-Jul-02 17:53 
QuestionHow can ISAPI_Filter call the functions of Soap_Server? Pin
ansoe9-Jul-02 17:19
ansoe9-Jul-02 17:19 
Hi All,

I have a problem regarding SOAP & ISAPI_Filter.

Now, I'm trying to write an ISAPI Filter(Dll), I'd like to call the function of Soap_Server(DLL) via ---.WDSL.
But my ISAPI Filter can't CONNECT to Soap_Server. My Soap_Server is for some data manipulation, using MS SOAP Toolkit 2.0 & VC++ 6 . I can call it's functions from other Soap_Client programs(MFC/VB exe). But my ISAPI Filter can't call.

So, How can ISAPI_Filter call the functions of Soap_Server?

Anyone have the sample code for that?
Any article about that?

The following Connect() function of ISAPI Filter can't CONNECT to my Soap_Server

bool CPlugIn_IIS5Filter::Connect()
{
HRESULT hr;

CString NewWSDL="http://MyWebServer/SoapSvr/MyDBSOAP.WSDL";
if(m_WSDLConnected != NewWSDL)
{
if (m_pSoapClient != NULL) m_pSoapClient.Release();
hr = m_pSoapClient.CreateInstance(__uuidof(SoapClient));
if(FAILED(hr))
{
// DisplayHResult(_T("Cannot create SoapClient."), hr);
return false;
}
try
{
m_pSoapClient->mssoapinit((LPCTSTR)NewWSDL, _T(""), _T(""), _T(""));
}
catch(_com_error err)
{
// DisplayFault(_T("Cannot initialize SoapClient. "));
return false;
}
m_WSDLConnected = NewWSDL;
}
return true;
}

If you have any info, pls forward to me.
Any other way to connect Soap_Server?

Thanks and best regards
Aung
aungns@sensecurity.com
QuestionHow much memory is used? Pin
Antosha9-Jul-02 17:17
Antosha9-Jul-02 17:17 
GeneralUsing SHFileOperation. Pin
David Fleming9-Jul-02 16:58
David Fleming9-Jul-02 16:58 
GeneralRe: Using SHFileOperation. Pin
Michael Dunn9-Jul-02 19:23
sitebuilderMichael Dunn9-Jul-02 19:23 
GeneralRe: Using SHFileOperation. Pin
David Fleming10-Jul-02 6:59
David Fleming10-Jul-02 6:59 
GeneralRe: Using SHFileOperation. Pin
Michael Dunn11-Jul-02 16:07
sitebuilderMichael Dunn11-Jul-02 16:07 
GeneralRe: Using SHFileOperation. Pin
David Fleming11-Jul-02 21:32
David Fleming11-Jul-02 21:32 
GeneralExpression to Binary Tree Pin
Anonymous9-Jul-02 16:34
Anonymous9-Jul-02 16:34 
GeneralRe: Expression to Binary Tree Pin
Rage9-Jul-02 23:04
professionalRage9-Jul-02 23:04 
GeneralRe: Expression to Binary Tree Pin
Anonymous10-Jul-02 4:28
Anonymous10-Jul-02 4:28 
GeneralRe: Expression to Binary Tree Pin
Rage10-Jul-02 5:13
professionalRage10-Jul-02 5:13 
GeneralRe: Expression to Binary Tree Pin
Chris Losinger10-Jul-02 5:23
professionalChris Losinger10-Jul-02 5:23 
QuestionHow to Update Dialog Box Pin
Solero9-Jul-02 16:29
Solero9-Jul-02 16:29 
AnswerRe: How to Update Dialog Box Pin
Christian Graus9-Jul-02 17:48
protectorChristian Graus9-Jul-02 17:48 
GeneralRe: How to Update Dialog Box Pin
Rage9-Jul-02 23:07
professionalRage9-Jul-02 23:07 
GeneralSave Data Problem Pin
chen9-Jul-02 15:33
chen9-Jul-02 15:33 
GeneralSerialize function stops working all of a sudden Pin
Comfortably Numb9-Jul-02 12:54
Comfortably Numb9-Jul-02 12:54 
GeneralRe: Serialize function stops working all of a sudden Pin
Joaquín M López Muñoz9-Jul-02 13:10
Joaquín M López Muñoz9-Jul-02 13:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.