Questions tagged [webbroker]

This is a class used in Universal Windows Applications (UWP) that enables applications to use authentication and authorisation protocols like OpenID or OAuth to connect to online identity providers. An application can use this class to sign in to social network providers such as Facebook and Google.

34 questions
1
vote
0 answers

Delphi Seattle 10 TRESTRequest error inside Webbroker ISAPI dll

We have an ISAPI webbroker application developed in Delphi Seattle 10. It has support for sign in using SSO Azure. We use TRest components to get the accesscode and graph data. It works most of them time , but 1 or 2 times per day it gives us this…
bsw
  • 153
  • 13
1
vote
0 answers

Delphi JQtouch Web Broker Demo Code not Behaving due to HTTP Response Content-Type charset

I am implementing an application using Delphi XE2 Rest/JSON Server and jQTouch client. I have pretty much finished the server side and am now moving onto the client side development. I have downloaded the jQTouch source and have set it up under IIS…
1
vote
0 answers

WebBroker DataSnap in Delphi XE3

I'm working on a project with WebBroker DataSnap in Delphi XE3. First I created a DataSnap Server WebBroker VCL exclusively using the wizard, TDSServerModule inheriting the class and ran to port 8085. After I created the client application…
1
vote
1 answer

How can I output a file to download without saving it on the server first?

Using Delphi XE3, DataSnap/WebBroker, HTML I create and load a TStringList which I then save it to a file. I put the file location into the action of my HTML form to force a download. How can I do this without saving the file? MyList :=…
Debby
  • 53
  • 6
0
votes
2 answers

How to get actual value of global variables in ISAPI?

I want to make ISAPI dll for Apache with Delphi (10.4) WebBroker. It works fine. But then I want to add some kind of sessions monitor: the idea is to add idTCPServer on WebModule and get by it some global variable with all current "sessions". For…
JBD
  • 1
0
votes
0 answers

How to handle Authorization in a Delphi Webbroker Apache module?

I am working on an Apache module (WebBroker Apache dll) and would like to handle Authorization: Basic Unfortunately TWebRequest does not populate AuthPassword and AuthUser. Any idea where can i find them?
LTi
  • 1
  • 2
0
votes
1 answer

Delphi Request.ContentFields.Values['something'] is not showing values on MIME data

In TWebModule1.WebModule1WebActionItem1Action(), using Request.ContentFields.Values['content'] or any name, I cannot get any values from the POST, but if I use Request.ContentFields.DelimitedText, I will get the values. Where did I go wrong? This is…
Int20h
  • 19
  • 4
0
votes
1 answer

Delphi Webbroker with http.sys

Using Delphi 11 latest version. Is there a switch to let WebBroker use Windows built-in http.sys server instead of Indy Webserver? If so, how to turn on the SSL certificate as well? I imagine Microsoft's built-in http/https engine would be more…
Peter Jones
  • 451
  • 2
  • 12
0
votes
0 answers

How to deal with json string by Delphi WebBroker

I want to post a json string from brower like this: {"user_name":"lined%"} But when I read the content from the action, it just raise a exception :Error decoding URL style (%XX) encoded string at position 6 procedure…
Lin Andy
  • 11
  • 1
0
votes
1 answer

Call to a DataSnap Apache modules fails

I crated a Delphi standalone DataSnap WebBroker application and a loadable apache module named mod_webbroker.dll. They share the same units. The call to the stand alone DataSnap WebBroker succeeded but the call to the apache module failed with no…
Lior I
  • 47
  • 1
  • 8
0
votes
1 answer

What is the difference between Producer and ProducerContent in Delphi?

In Delphi, TWebActionItem.Producer and TWebActionItem.ProducerContent properties are used in Web Brokers to generates the content of response messages when the action item executes. What is the difference between TWebActionItem.Producer and…
Mohamad
  • 1,089
  • 4
  • 19
  • 37
0
votes
1 answer

Delphi rest client/server (webbroker) + database +simultaneous client requests

I'm new to REST developing and i'm creating a simple rest API to request database values from clients. I have used the "Delphi Web Server Application" project assistant (the one that uses TIdHTTPWebBrokerBridge and the WebModule where you create the…
santycg
  • 119
  • 1
  • 8
0
votes
0 answers

Delphi Callback Server using HTTP Protocol Always timeout after a few minutes

I have problem with setting Callback Server in Delphi Tokyo. I've setup a Datasnap WebBroker Server, then i use FDSCallBackClientManager.RegisterCallback(sCallbackID,FDSCallBack); on my client to connect callback server, it can connect and i can…
0
votes
0 answers

Delphi RAD Studio 10 Berlin WebBroker HTTP Port error - no peer with the interface with guid

I am using RAD Studio 10.1 Berlin, tried to create a REST sample application with following steps: New Project->Select Other->Web Server Application->Standalone Application->VCL Application->Port Number. I selected "Test Port" with 8080 and got this…
Ricky Nelson
  • 197
  • 1
  • 1
  • 7
0
votes
1 answer

ISAPI webbroker requestcontentfields is empty (length = 0)

I created a WebBroker application using the Wizard. I changed the default action's code so it looks like this: procedure TWebModule1.WebModule1DefaultHandlerAction(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled:…
Freddie Bell
  • 2,186
  • 24
  • 43