Thanks a lot. It works! But there's still a little problem: When I use the external thread, the command line interface appears for a short time. how can I suppress the command line?
MrChefman
Posts
-
external program -
Showing full String in VS C++ 6.0I do not find the settings which shows the whole String / CString. Using my VS I only see the first char of the String. Which setting do I have to change?
-
external programThanks a lot. But I still have a problem in Building the .exe file. Linking works but when trying to build the .exe there are errors: unresolved external symbol _WinMain@16 I hope, my translation from the German version into English is right ;-) I included both header-files windows.h and winbase.h into my win32-application-project. Where is my mistake?
-
external programHow can I start an external program - probably an .exe file - in a C++ program. And which would be the best way to be sure the external program has finished?
-
SOAPI try to create a simple Client-Server architecture with SOAP-communication. Although the function is set up in the corresponding wsdl-file, I always get an error-response. Why? Thsi ist the response: ... SOAP-ENV:Server WSDLReader:The operation requested in the Soap message with soapAction http://tempuri.org/DocSample1/action/Sample1.AddNumbers isn't defined in the WSDL file. This may be because it is in the wrong namespace or has incorrect case - - -2147467259 : Unbekannter Fehler - WSDLReader:The operation requested in the Soap message with soapAction http://tempuri.org/DocSample1/action/Sample1.AddNumbers isn't defined in the WSDL file. This may be because it is in the wrong namespace or has incorrect case HRESULT=0x80004005: Unbekannter Fehler - Server:An unanticipated error occurred during the processing of this request. HRESULT=0x80004005: Unbekannter Fehler WSDLReader - - WSDLReader The operation requested in the Soap message with soapAction http://tempuri.org/DocSample1/action/Sample1.AddNumbers isn't defined in the WSDL file. This may be because it is in the wrong namespace or has incorrect case -2147467259 : Unbekannter Fehler and here is the wsdl-file: ...
...
-
ActiveX with Visual Studio 6.0OK, it works! But there's still one question: when I compile the project, I get an .ocx file. I want to implement this funciton for a SOAP-Server. The generator need a .dll file. Can I simply change the extension?
-
ActiveX with Visual Studio 6.0How can I build an ActiveX-DLL in Visual Studio 6.0? I have especially a problem in constucting a new method, which is an ActiveX-Component. There's a tool called "ActiveX Testcontainer" in which I should see my methods, but I don't. What's wrong? I created a project with the "ActiveX-Control-Wizard" and added a "Member-Function". This isn't shown as a method in the "ActiveX Testcontainer". Thanks for your help! Markus Do also have a look at my earlier Thread: http://www.codeproject.com/script/comments/forums.asp?forumid=1647&fr=26#xx1362023xx[^]
-
ActiveX DLL in VC++I'm trying to create a ActiveX DLL in VisualStudio C++ 6.0 I want to use this with an IIS-Server to make a SOAP-Communication. I use the SOAP Toolkit 3.0! I have to create a DLL like the following example: >> The following procedure creates a Microsoft® Visual Basic® ActiveX® DLL that implements the various operations: EchoString, AddNumbers, and SubtractNumbers. If you were to create this DLL on a computer other than a server running IIS, you would need to copy it from that computer to a server running IIS and also register the DLL on that server. To create the DocSample1Service DLL Open Microsoft Visual Basic® and create an ActiveX DLL project. Change the Project Name to DocSample1Service and the Class Name to Sample1. On the Project menu, click DocSample1Service Properties. Then, on the General tab, select the Unattanded Execution and Retained In Memory options. For more information see, Developing SOAP Toolkit Applications. To the Sample1 class, add the code from the Code Listing for the Sample1 Class. Save the project in the Soap3DocSamples\DocSample1\Server folder. On the File menu, click Make DocSample1Service.dll. Save the DLL in the Soap3DocSamples\DocSample1\Server folder. <<
-
SOAP Server in Visual C++Hello, I'm trying to set up a SOAP-Server in VC++. I already have set up the client according to an example. The server in this example is written in VB. I use the SOAP Toolkit 3.0. The description tells me following. >> Open Microsoft Visual Basic® and create an ActiveX DLL project. Change the Project Name to DocSample1Service and the Class Name to Sample1. On the Project menu, click DocSample1Service Properties. Then, on the General tab, select the Unattanded Execution and Retained In Memory options. For more information see, Developing SOAP Toolkit Applications. To the Sample1 class, add the code from the Code Listing for the Sample1 Class. Save the project in the Soap3DocSamples\DocSample1\Server folder. On the File menu, click Make DocSample1Service.dll. Save the DLL in the Soap3DocSamples\DocSample1\Server folder. << What steps do I have to do according to acieve such a ActiveXDLL with Visual Studio C++ 6.0. Especially the properties can't be found in VisualStudio. When I create a ActiveX Control, a .ocx-file is created. And at last the implementation I wrote in the project can'z be seen by the WSDL-Generator. THX