Questions tagged [remobjects]

RemObjects Software is a software development company offering tools and libraries for software developers on a variety of platforms.

RemObjects SDK is a cross-platform remoting framework for .NET, XCode and Delphi.

DataAbstract is a multi-tier database framework for .NET, XCode and Delphi.

Hydra is a plugin framework for .NET and Delphi.

Oxygene is an Object Pascal language and IDE for .NET.

58 questions
0
votes
1 answer

make a New Binary Expression List like ([A or B] AND C) in RemObjects

I am trying to build a NewBinaryExpressionList but with this condition: ((A OR B) AND C) I think this is a NewBinaryExpressionList within another, but it's not currently working for me.
Jp191290
  • 51
  • 8
0
votes
0 answers

Https connection issue

this is my first attempt here so please don't be harsh I'm hosting a home server and i need it to run on https I've achieved that with the apache server from XAMPP and it works fine, meaning i am connecting to it and i see my sources both from…
bogdica19
  • 33
  • 1
  • 3
0
votes
1 answer

RemObjects SDK, EOleError with message ‘Could not obtain OLE control window handle’ in Delphi

I'm trying to create a Delphi RemObjects SDK Combo Service/Standalone project. I could put an ActiveX control on the form. But If run it, it crashes with an error message, "Project NewProjectClient.exe raised exception class EOleError with message…
0
votes
4 answers

How to display toast when click on list item

Trying to display toast when click on list items but showing many errors in Visual studio. The codes are working fine in android studio and i remake it for C# using RemobjectC#. Below are my mainactivity codes using System; using java.util; using…
user3909370
  • 25
  • 1
  • 9
0
votes
1 answer

Close properly a RemObjects Indy Http Server

I have a webservice using RemObjects and a TROIndyHTTPServer using Delphi XE. I don't know how to close manually the application without generate an access violation when the clients are executing webservice operations. I don't know how to abort…
Plebios
  • 835
  • 1
  • 7
  • 17
0
votes
1 answer

Delphi Hydra visual plugin border issuse if using styles in host app

If creating a delphi hydra host application and then load a delphi hydra visual plugin on It, then a dialog border appears for visual plugin. this borders appears if using styles in delphi host(Project>options>application>appearance). Can you help…
Shaahin Ashayeri
  • 918
  • 2
  • 13
  • 30
0
votes
1 answer

RemObjects: How do I set aRetry in clientChannelNeedsLogin on Android?

As the title says, how do I set aRetry in clientChannelNeedsLogin on Android?
CeeRo
  • 1,142
  • 3
  • 12
  • 21
0
votes
1 answer

How to receive RemObjects-events on Android?

Having trouble making my Android-app receive RemObjects-events... Here's the Android (java) class: package no.wolftech.fieldagentforandroid.tools; import java.net.URI; import java.util.Date; import…
CeeRo
  • 1,142
  • 3
  • 12
  • 21
0
votes
1 answer

RemObjects: How to prevent UI from freezing when making unsuccessful TCP/IP connection?

I am testing my program TCP/IP connection which uses RemObjects TcpClient and TcpServer controls and running into an issue. If the host or remote server is not listening for connection, then client just simply freezes in trying to make remote…
ThN
  • 3,235
  • 3
  • 57
  • 115
0
votes
1 answer

Memory leak using RemObjects and COM Objects over Delphi

I have a webservice created with RemObjects SDK over Delphi XE and a function published that to do his works needs to use com objects (Specifically Ado connection to database using DMO). I have detected that when I call this function a lot of times…
user1151835
0
votes
2 answers

How do I add a custom header to a SOAP request using C#?

I'm connecting to a RemObjects SDK SOAP server written in Delphi using a C# client. I can make the initial login, but subsequent requests require a custom SOAP header that looks like this:
norgepaul
  • 6,013
  • 4
  • 43
  • 76
-1
votes
1 answer

can't connect LocalData Adapters to Schemas

This is My Situation I have a Service Named BaseDataService, in here I create a LocalDataAdapter that I'm gonna use to connect to a specific service called DataBaseLayer. The service I'm trying to connect contains the schemas that have all…
Jp191290
  • 51
  • 8
-1
votes
1 answer

RemObjects PascalScript How to get the value of the variable after compilation?

RemObjects PascalScript. How to get the value of the variable after compilation? var a,b,c: integer; begin a := 5; b := 6; c := a+b; end; cc := IntTostr(????c????);
1 2 3
4