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
1
vote
2 answers

Load string from Delphi stream in Oxygene

I'm new to Oxygene and I want to read strings from a stream that was generated by Delphi. I receive this stream via TCP. Here is how I save strings to a stream on the client side: procedure SaveStringToStream(AStream: TStream; AString: String); var …
1
vote
2 answers

Combining Delphi & remobjects via SSL

I'm in the development of a server client solution. The server is written in delphi and the client written in c#, and we're using RemObjects 5 (xml webservice thingy) to perform the communication. Now, I've got a working soluting using HTTP, but of…
lungic
  • 344
  • 1
  • 13
1
vote
1 answer

Refactoring tools for Oxygene

What refactoring tools are avaliable for Oxygene language in VS2012. AFAIK Resharper & Coderush do not work with it. So what are the alternatives?
user1647411
1
vote
0 answers

How to use VistaDB in multiuser environment

My requirement is as written below: I have a DotNet(c#) winform application using VistaDB as database. So to support multiuser environment( as VistaDB is serverless Database) I have decided to implement Remobjects SDK to build a server which will…
1
vote
1 answer

Delphi 2010 How do I Implement a Hydra WPF host application sample?

Continuing with our Delphi 2010 thick client to multi-tier migration (previous question), we are at the point where we need to find a databinding solution. I have come across RemObjects Hydra. The thing is I can't seem to follow their tutorials for…
reckface
  • 5,678
  • 4
  • 36
  • 62
1
vote
1 answer

Suppress RemObjects SOAP error "content type was not expected"

Trying to make a simple client that consumes a web service using RemObjects SDK, imported the WSDL, all good, however, when I try to execute a method that returns a string, I get the following error: Project Project1.exe raised exception class…
user497849
0
votes
0 answers

Can I open any Swift application in Silver, make changes, and then recompile for Android?

Scenario is as follows. We have an option to purchase source code for a Swift-based application, make changes to it and then recompile for Android. I have found https://www.remobjects.com/elements/silver/ which runs on Windows. Is it possible to…
Jacques
  • 107
  • 1
  • 9
0
votes
1 answer

Delphi (XE) BPL Packages do not load: DevExpress, RemObjects

Good Day, I am in the process of trying to open a legacy software project in Delphi XE. Whenever I try to open the IDE, I get around 100 - 110 error messages, one error message per DevExpress component not loading. This happens when I open the IDE…
0
votes
1 answer

How to use a connection to database saved in a session in DataAbstract/RemObjects?

In the DataAbstract sample application "Old\Connection By User" the procedure "AcquireHoldButtonClick" creates a connection to the database and stores a reference in the user's session variable. I plan to use such a mechanism but fail to understand…
jonjbar
  • 3,896
  • 1
  • 25
  • 46
0
votes
0 answers

REMObjects - How to fix LoadFromFile Read Error

I am using Delphi 7, while calling LoadFromFile from my REMObject Type I am randomly encountering a Stream Read Error. The following line is where I get the error: FileData.LoadFromFile(QItem.PDFPath); What can I do to find and fix the error?
kapil sharma
  • 31
  • 1
  • 3
0
votes
2 answers

Delphi Applications in RemObject Pascal Scripter

I want to run a Delphi application(With forms vcl, forms, etc) using another application with RemObject Pascal Scripter. will RemObject Pascal Scripter support all the areas of delphi , If so can i include 3rd party VCL If not what can you…
Vibeeshan Mahadeva
  • 7,147
  • 8
  • 52
  • 102
0
votes
2 answers

Delphi 7 remobjects - serialize a component

I have a client-server application built in Delphi 7 and RemObjects SDK. Messages between client and server are binary (http://wiki.remobjects.com/wiki/BinMessage). My questions are: 1) if I fill with data a TDataSet/TDataSource and sent them from…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
1 answer

RemObjects leaks detected after calling manually created service instance

I have the following code which creates an instance of an RemObjects service and makes a call to a .net server class function TLabelPrintingServiceProxy.GetInstance: ILabelPrintingManager; var LRoRemoteService: TRoRemoteService; begin …
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
0 answers

RemObjects Silver: Doesn't recognize arc4random_uniform

So I just started using RemObject's Swift compiler, Silver, but it doesn't seem to recognize the function arc4random_uniform(). I have tried researching this problem but could not fin an answer. Here is my code: let randomNumber: UInt32 =…
Alex
  • 13
  • 1
  • 7
0
votes
1 answer

PascalScript: Looking for something like OnBeforeLineExec and OnAfterLineExec

I am writing a small IDE with Single Steps using the Debugdemo. Now I need an Event before and after a line is executed. I would like to disable my Editor while the current Line is executed. I found the OnLine Event but did not find out in what…