You are not logged in.
perfect!Thank you for your work.
Thank you for your quick response, very great project.
Some apis (aliyun openapi) need to flatten the submitted object if it requires formdata, but it handles arrays with the sequence number of the first element being 1.
Is it possible to define a HandleArrayType=(hatNone=-1,hatZero=0,hatOne=1);
Change the array type of aHandleNestedArray to this HandleArrayType to determine the element sequence number based on the type
TDocVariantData. FlattenFromNestedObjects whether can increase the transformation as follows:
{“arr":["a","b","c”]} => {"arr.1":"a","arr.2":"b","arr.3":"c"}
TSqlDataset is readonly,
I used the TBufDataset to obtain the json of the dataset through restful api, then passed it into the TBufDataset by the client, edited it in dbgrid, then obtained the delta data and submitted it to the server. All these were processed by the interface-based service.
Because there is no field size information, I defined the column information directly in the tbufdataset at design time
mormot2test compile error:
Compile Project, Mode: default, Target: D:\fpcupdeluxe_32T\ccr\mORMot2\test\fpc\bin\i386-win32\mormot2tests.exe: Exit code 1, Errors: 1, Warnings: 1
Verbose: Free Pascal Compiler version 3.3.1-17444-g490c431bf9 [2025/02/12] for i386
Verbose: Copyright (c) 1993-2025 by Florian Klaempfl and others
Verbose: Target OS: Win32 for i386
Verbose: Compiling mormot2tests.dpr
Verbose: Compiling .\test.soa.network.pas
Verbose: Compiling .\test.core.data.pas
Verbose: PPU Loading D:\fpcupdeluxe_32T\ccr\mORMot2\packages\lazarus\lib\i386-win32\mormot.net.dns.ppu
Verbose: PPU Source: mormot.net.dns.pas not found
Verbose: PPU Source: ..\mormot.defines.inc not available
Warning: Recompiling mormot.net.dns, checksum changed for D:\fpcupdeluxe_32T\ccr\mORMot2\packages\lazarus\lib\i386-win32\mormot.net.sock.ppu
Fatal: Can't find unit mormot.net.dns used by mormot.net.ldap
Verbose: Compilation aborted
I solved this problem by defining the fields of the dataset directly at design time
For example, if the certificate expired yesterday (cc.GetNotAfter), your code: Expired := NowUtc-fRenewBeforeEndDays; expired is one month ago, cc.getNotAfter<expired is not valid.
Am I wrong? How do I feel that your code will trigger renew after the expiration of rnewBeforeEndDays? My previous program has not triggered after the expiration, and I need to delete all certificate files each time before I can get it again.
In TAcmeLetsEncrypt checkCertificates procedure(line 1110), check the expiration date of error code:
cc. GetNotAfter < expired
should be:
cc.getNotAfter-fRenewBeforeEndDays < NowUtc
注册表中搜索
Several global variables are defined in the mormot.rest.core unit:AuthAdminDefaultPassword,AuthSupervisorDefaultPassword,AuthUserDefaultPassword。You can set the initial password, and then change the password through the server code
Thank you for your great work!
I read the source code and in the new method you added: in the InternalInvoke function of the mormot.soa.client unit, when the clientSideInvoked method is invoked in the DoClientCall method, should the parameter "send" be "resp"?
By customizing the Routing class, I changed the format of the returned data to meet my requirements in the web client, but if the same interface needs to work in the pascal client, it should not be recognized correctly. Should there also be a corresponding method in the TRestClientRouting's inheritance class that can customize the data returned by parsing?
I reviewed the mormot2 examples. In the examples, everyone uses the model.
Orm model can have no objects;
TOrmModel.create([ ], arootName)
Sorry, my mistake, my json file format is corrupted.
Now IDocDict doesn't work correctly, use "exists" to check for existing keys and always return false
不行,我看了返回值的16进制数字,原始字符串:out测试, 返回的16进制表示:6F7574 C3A6C2B5C28B C3A8C2AFC295,正确的UTF8编码:6F7574 E6B58B E8AF95
I tried it, but using Utf8ToString(errMsg) didn't solve the problem.
What happens to the RawUtf8 parameter? English can be returned normally.
my code define as follows::
IUserManage = interface(IInvokable)
['{970EB610-FC4B-4A89-9A39-2767A5100F97}']
function chgMyPwd(oldPwd,newPwd:RawUtf8;hashed:Boolean;out errMsg:RawUtf8):boolean;
end;
If errmsg returns a Chinese string, the client displays it incorrectly, but if errmsg is of type string, the return is correct.
I don't know why.
When TSynZipDecompressor. Create (d, szcfRaw), the error is: (avail in = 131071 out = 131072)
I used the following method to extract it,Error on line 880 of mormot.lib.z:Error -3[data error] during TsynZipDecompressor.write process(avail in =131070 out=131072)
function TmainForm.GUnZipFile(aSrcFile, aDestFile: TFileName; aIsFile: Boolean
): boolean;
var
gz: TSynZipDeCompressor;
s, d: TStream;
vfn:TFileName;
begin
try
s := TFileStreamEx.Create(aSrcFile, fmOpenReadDenyNone);
try
if aIsFile then
vfn:=aDestFile
else
vfn:=aDestFile+extractFileName(aSrcFile);
d := TFileStreamEx.Create(vfn, fmCreate);
try
gz := TSynZipDeCompressor.Create(d,szcFzip{, szcfGZ});
try
StreamCopyUntilEnd(s, gz);
result := true;
finally
gz.Free;
end;
finally
d.Free;
end;
finally
s.Free;
end;
except
result := false;
end;
end;
I find using TDocVariantData sortByName, and toUrlEncode can satisfy many platform API calls, if the toUrlEncode can choose encoding rules: use urlEncode or urlencodeName, so much the better
The service I developed with TsynDaemon has a cpu usage close to zero when running with /c as the console, and 20% when running as a service. I don't know what the problem is, even though I don't have any code in start, the cpu usage is so high. My system is windows10 fpc3.3.1 lazarrus 3.99, mormot2
Thank you, https is finally working
After many attempts, the ssl_password_file parameter does the job, but strangely, the file name specified after this parameter must be in the standard windows path, and the certificate file specified path must replace the '\' in the path with '//'.
gAcmeLetsEncryptServer:=TAcmeLetsEncryptServer.create(TsynLog, TacmeDaemonSettings(settings).keyStoreFolder,
ACME_LETSENCRYPT_URL{ACME_LETSENCRYPT_DEBUG_URL},'',''{There can be no passwords here},-1,'8084');
After the test, you cannot set the password when applying for a certificate. After the password is set, the https service cannot run. After removing the password and re-applying for a certificate, it can run normally
d:\sslkeystore\xxx.xx.com.crt.pem;
d:\sslkeystore\xxx.xx.com.crt.pem;
This is the file generated by mormot.net.acme
I use nginx, the Settings are as follows, but https is not accessible,, I don't know what the problem is
server {
listen 443 ssl;
server_name xxx.xx.com;
ssl_certificate d://sslkeystore//xxx.xx.com.crt.pem;
ssl_certificate_key d://sslkeystore//xxx.xx.com.key.pem;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
location / {
proxy_pass http://127.0.0.1:81;
proxy_redirect default;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_max_temp_file_size 0;
proxy_connect_timeout 180;
proxy_send_timeout 180;
proxy_read_timeout 180;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
Yes, it works correctly and the certificate file has been generated
thanks
Thanks
this issue has been solved,
but this mormot.net.acme has found a new issue here, I have submitted a new topic
An error occurred while calling the completedomainregistero function:
EXC EJwsHttp {Message:"Error 400 [Error parsing certificate request: asn1: structure error: tags don't match (16 vs {class:0 tag:13 length:45 isCompound:true}) {optional:false explicit:false application:false private:false defaultValue:<nil> tag:<nil> stringType:0 timeType:0 set:false omitEmpty:false} certificateRequest @2] while querying https://acme-v02.api.letsencrypt.org/acme/finalize/1349321746/213579860876"} [CheckCertificates] at 4c4526
I trace that in asm code, the comparison of the first 4 bytes is already inconsistent
The received data url:
/.well-known/acme-challenge/Fx3W3J_cIlgHswjpA_NMDES4GPJ0acGEBHtXaCgTlsM
In line 1264 of the mormot.net.acme unit, CompareMem(P, @_ACME_CHALLENGE_PATH, ACME_CHALLENGE_PATH_LEN) executes incorrectly and returns false all the time.
My environment is lazarus 3.99, FPC3.3.1(i386), windows 10
Thank you for your quick response.
The program is running normally.
Thank you again for your contributions to the world of pascal
this is my code:
registerOpenSsl;
gAcmeLetsEncryptServer:=TAcmeLetsEncryptServer.create(TsynLog, TacmeDaemonSettings(settings).keyStoreFolder,
ACME_LETSENCRYPT_URL,'','abcdefg',-1,'8084');
gAcmeLetsEncryptServer.LoadFromKeyStoreFolder;
gAcmeLetsEncryptServer.Redirect('xxxx.com','https://www.xxxx.com');
gAcmeLetsEncryptServer.Redirect('www.xxxx.com','https://www.xxxx.com');
the “AcmeLetsEncryptServer.Redirect ” has an error at runtime:
Project acmeDaemon raised exception class 'External:ACCESS VIOLATION' with message:Access violation reading from address $7331322D.
in file 'mormot.core.base.pas' at line 4819:if PStrLen(p1-_STRLEN)^=len then
This error is in the execution TAcmeLetsEncrypt. GetClient statements,
Error is in the call:
AcmeLetsEncryptServer. Redirect (' xxxx.com ', 'https://www.xxxx.com');
After introducing the mormot.crypt.openssl unit and calling registerOpenSsl, the issue of x509-es256 not being supported was resolved. But a memory conflict occurred again. When I traced the call to the getClient part of the getClientLocked method in mormot.net.acme, the value of the servername parameter passed changed to an invalid string, causing an error when the FindPropName method was called.
I'm testing this because I got a run-time error when I was using mormot.net.acme saying that X509-es256 is not supported, and acme relies on openssl, so I'm testing to see if openssl has errors
Is my problem, add compile parameter -dUSE_OPENSSL; FORCE_OPENSSL, needs to be recompiled, I am running directly.
mormot2tests project, when setting the compilation option USE_OPENSSL; FORCE_OPENSSL, the project could not compile, indicating that many open_SSL-related variables could not be found.
FPC 3.2.2 ,lazarus 2.2.6
FPC 3.3.1,lazarus 3.99
I've tested the above versions and they don't work.
Also, I found that lazarus.lpk does not contain the file mormot.crypt.x509
Thank you. Yes, you're right. It's up and running.
I want to sort the elements of IKeyValue by Key, and I don't know any good way to do that.
FPC 3.2.2 lazarus2.2.6
Use the class IkeyValue in mormot.core.collections
The following code keeps getting errors: Fatal: Syntax error, ";" expected but "," found.
vparams:specialize IkeyValue<RawUtf8,variant>;
vParams:=Collections.NewPlainKeyValue<RawUtf8, variant>(); //There are errors in this line
Thank you. I'll test it later
The encoded URI is transmitted, but a signature field is added, and the signature field is based on this encoded URI. The result is definitely different if the string contains ~ and %7E
api calls from ali,tencent, or other services will sign the encoded url. If the encoding results are inconsistent, the signature verification will fail
or You can add an argument to the urlencode(urlEncodeName) function, and it is up to the user to decide whether ~ is encoded or not
RFC3986 rules will not encode ~, PHP rawUrlEncode from version 5.3 support RFC3986, the previous version will encode ~, Ali, Tencent api coding is to follow this rule.
In RFC3986, should '+'(43) be converted to %43?