In the cases i have used rest webservices done by others with callback URL i have creted one webservice myself and provided the URL of my webservice as the callback URL It was somehing like: POST /api.example.com/foo?callbackURL=https://my.server.com/my_rest_ws_enpointby pao - WinDev Forum
check the help for OCR: Converting an image to textby pao - WinDev Forum
I'm only having this problem in debug, in runtime everythnig is working as expected. Check this thread if your problem is only in the development environment.by pao - WinDev Forum
Thanks Derek, Hopefully PCSOFT or Chromium will do something about it. Hope is slim, but you never know.by pao - WinDev Forum
We can't run any project in debug using chrome o edge, if we use firefox it works. This is happening with the latest version of chrome and edge. When we try to run the projects in debug wecann see the first page bug the session ends without any visible error.by pao - WinDev Forum
Check the explanation of the context of pages and windows in the help.by pao - WinDev Forum
You can add some JS in the index.html file which is in /var/www/html to check the domain and proced to the app you need. Something like: if(location.hostname == "mysite.com"){ }by pao - WinDev Forum
Are you sure that your redirection code is in the default file used by your webserver? normally it's the index.html in the /var/www/htmlby pao - WinDev Forum
In the default page of your domain normally index.htm or index.html you can redirect the user to your application. Check the index.html generate by WEBDEV, adapt it and used it as the dewfault document of your domain.by pao - WinDev Forum
Answer from PCSOFT: Currently, it is not possible to configure a proxy for the HTML Display control in either version 27 or version 2025 of WINDEV.by pao - WinDev Forum
Does anyone know how to force the use of a certain proxy in one HTML DISPLAY CONTROL?by pao - WinDev Forum
Did you try with telnet to access to 1433 port?by pao - WinDev Forum
The instance name is correct is you connection string?by pao - WinDev Forum
Did you try usinng the ..InputMask or the ..InputType property ..InputMask is suposed to work in reports :by pao - WinDev Forum
Just search in the help for Quotes (in a character string) Using quotes in a character string To use the quote character in a character string, this character must be repeated twice. For example: MyString is string MyString = "The ""General conditions"" option must be checked" Info(MyString) // Displays: The "General conditions" optionby pao - WinDev Forum
With this new sales model (SAAS), launching a new version every year no longer makes any sense. If they start to have a constant source of income instead of depending on sales of new versions, they no longer have a logical justification for not correcting existing bugs,stop supporting a version shortly after, for not evolving versions without having to convert all our projects to the new versionby pao - WinDev Forum
The fact that development environments are in SAAS model is a big change but acceptable. The fact that WAS and native access are only in SAAS model is what poses big problems, we have more than 100 customers using this type of product and I don't think they would accept changing to a situation like this. We will have to invest in changing the product because they are no longer a viable altby pao - WinDev Forum
Sorry but i don't know, i never used the goupware in webdev.by pao - WinDev Forum
The ACCESS_TOKEN will be in the variable MyToken and you can use to call the other endpoints. If you only need to get the information about the user (authentication) just seach the help for OpenIDIdentity (Variable type) You can inspect the IDToken content to see what is returned.by pao - WinDev Forum
Are you using TLS oe SSL to connect to the SMTP server? Search "smtp the target principal name is incorrect" and you will find some explanations. If it's some TLSor SSL problem with the certicate or the name/IP you are using in the connection you can try to use EmailConfigure(emailParameterMode, 1) before the EmailStartSMTPSessionby pao - WinDev Forum
Thanks Guenter, let's see what happens in the future.by pao - WinDev Forum
It should be easy to implement. Don't forget that you must start by registering your application in the identification system you intend to use and extract the APP_ID and APP_SECRET from there..by pao - WinDev Forum
We are using OPENID since WEBDEV18. We have developed it ourselves to use the google and microsoft login systems in our apps, it's easy to do and works well. As we had already developed we continue to use our solution instead of the specific commands for this.by pao - WinDev Forum
Why the two lists of VENDOR_ID? PURCHASE_ORDER.VENDOR_ID IN ({pVendorIDList}) AND PURCHASE_ORDER.VENDOR_ID IN ({pNamesIDList})by pao - WinDev Forum
If you can connect to to the MS Azure SQL and to to HyperfileSQL in the same PC you can try using two connections and copy the data from one to the other. Something like this: wanalise=HListFile(hLstDetail+hLstAll+hLstSorted) wfile=ExtractString(wanalise,firstRank,CR) WHILE wfile <> EOT n_file+=1 itemList = HListItem(ExtractString(wfile,1),hLstDetail) item=ExtractString(itemLby pao - WinDev Forum
Your code looks strange, at least by the variable and file names. It looks like you are using the public key in the private key value (gMqttSession.PrivateKey = MyCert) and using the private key as the password (gMqttSession.PrivateKeyPassword = sPrivateKey )by pao - WinDev Forum
I don't know if ti helps but check the example WD Magnifier provided with WINDEVby pao - WinDev Forum