News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Any example for NetComEngine?

Started by step8, February 19, 2018, 09:45:00 PM

Previous topic - Next topic

step8

Hi Biterider ,I'm studying your excellent code.
I don't know how to manage the "NetComEngine" Object to work in a real Project.
Do you have any example for this object?or any hints?
Thanks

Biterider

Hello step8
I looked at my old files and found a project that a friend and I were working on some years ago.
I'm sure you'll need to adapt the paths and code to fit to the current model, but it's a good place to start.

Let me know if you miss a file.

The attached project is a server / client project via HTTP using the NetComEngine.

Regards, Biterider

step8


step8

I open the "NetComHttpSrv.rap" project and compile it,get following error message:
-------------------------------------------
WARNING duplicate include file advapi32.inc
-------------------------------------------
NetComHttpSrv.asm(18) : fatal error A1000: cannot open file : E:\Masm32\ObjAsm32\Code\Macros\UStrings.inc

I comment off the line :
% include &MacPath&UStrings.inc                             ;Includes Unicode support for DlgTmpl
and I get following messages:

NetComHttpSrv.asm(25) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(26) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(27) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(28) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(29) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(30) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(31) : error A2008: syntax error : MakeObjects
NetComHttpSrv.asm(32) : error A2008: syntax error : LoadObjects


I searched in ObjASM32 folder,there is no "UStrings.inc" file.

step8

By the way,your ObjAsm64 Download link is broken.
Not Found

The requested URL /DwnFiles/ObjAsm64.zip was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Biterider

#5
Hi step8
Try replacing UStrings by WStrings (UNICODE -> WIDE)
Since the code is relatively old, I suspect that there are more differences you have to look at.

Thanks for the feedback about the new homepage. For the time being, it is only a test and has no download content, until I release the code.

Biterider

step8

OK,I think I need time to study it.
Thanks for your great code :t