webbroker

Migration of Traditional Windows Service to Service Fabric

假如想象 提交于 2019-12-19 04:05:31
问题 I'm kicking the tires on the preview release of Service Fabric for Windows Servers found here: Create and manage a cluster running on Windows Server We are trying to solve the problem of the perception of too many Windows services to manually manage, contemplating infrastructures that would make the services more automatically managed. We currently run on-premises, so we are looking at Service Fabric for Windows Servers, not Service Fabric on Azure. I have a native Windows service (Windows NT

No mapping for the Unicode character exists in the target multi-byte code page

旧时模样 提交于 2019-12-12 18:17:44
问题 i have a soap builded with Delphi 2007 and it work! After a conversion in Delphi 10.1 Berlin i have a lot of exceptions: No mapping for the Unicode character exists in the target multi-byte code page the cause seem, when webbroker HttpApp parsing the request parameters, it raise this exception if request has some url encoded chars in the query string, eg.: http://localhost/soap/soap.dll/action?param=%E0 in fact if i call URL.Decode() with %E0 ( à url encoded): TNetEncoding.URL.Decode('%E0');

Delphi 7 ISAPI WebBroker file upload

醉酒当歌 提交于 2019-12-08 03:33:19
问题 I am trying to accept file uploads in a Delphi 7 Webbroker CGI. I'm using Shiv Kumar's TMsMultipartParser, but I have a problem with Chrome. I can't access the parsed data (surprisingly, Explorer works fine). This is my code: with TMsMultipartFormParser.Create do begin Parse(Request); lsExternalID:=ContentFields.Values['external_id']; if (lsExternalID='') then raise Exception.Create('No external ID'); for i := 0 to Files.Count -1 do begin lsFileName:=files[i].FileName; //Rename file using