{"id":21353417,"url":"https://github.com/feathersui/feathersui-rpc-services","last_synced_at":"2026-03-19T20:02:53.753Z","repository":{"id":145394366,"uuid":"399603374","full_name":"feathersui/feathersui-rpc-services","owner":"feathersui","description":"A port of the RPC service classes from Apache Flex (formerly Adobe Flex) to Feathers UI for Haxe and OpenFL","archived":false,"fork":false,"pushed_at":"2024-08-28T22:06:17.000Z","size":642,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-22T17:28:35.309Z","etag":null,"topics":["adobe-flex","apache-flex","feathers-ui","haxe","openfl"],"latest_commit_sha":null,"homepage":"https://api.feathersui.com/rpc-services/","language":"Haxe","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/feathersui.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"joshtynjala","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2021-08-24T20:59:49.000Z","updated_at":"2024-08-28T22:06:21.000Z","dependencies_parsed_at":"2023-11-16T22:54:22.595Z","dependency_job_id":"80e297df-a56b-45b2-9679-b039cf5e3e65","html_url":"https://github.com/feathersui/feathersui-rpc-services","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Ffeathersui-rpc-services","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Ffeathersui-rpc-services/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Ffeathersui-rpc-services/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersui%2Ffeathersui-rpc-services/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feathersui","download_url":"https://codeload.github.com/feathersui/feathersui-rpc-services/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243826797,"owners_count":20354221,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adobe-flex","apache-flex","feathers-ui","haxe","openfl"],"created_at":"2024-11-22T03:17:32.324Z","updated_at":"2025-10-25T07:27:15.120Z","avatar_url":"https://github.com/feathersui.png","language":"Haxe","readme":"# RPC Services for Feathers UI\n\nA port of the RPC service classes from [Apache Flex](https://flex.apache.org/) (formerly Adobe Flex) to [Feathers UI](https://feathersui.com/) for [Haxe](https://haxe.org/) and [OpenFL](https://openfl.org/).\n\nContains the following service classes:\n\n- `HTTPService`: Load data from a URL as XML, simple string text, URL variables, or JSON.\n- `RemoteObject`: Share the same typed objects on server and client using binary AMF.\n\nContains the following low-level messaging classes:\n\n- `Producer`: Send messages to a destination.\n- `Consumer`: Subscribe to messages from a destination.\n\n## Compatibility Notes\n\n### `RemoteObject`\n\nInstead of adding `[RemoteClass(alias=\"com.example.MyClass\")]` metadata to a class, call the `openfl.Lib.registerClassAlias()` function to register each type when the application initializes.\n\n```hx\nLib.registerClassAlias(\"com.example.MyClass\", MyClass);\n```\n\n### `HTTPService`\n\nThe `resultFormat` property includes two new formats:\n\n- `RESULT_FORMAT_JSON`: Parses the server response as JSON, returning an [anonymous structure](https://haxe.org/manual/types-anonymous-structure.html). Supported on all targets.\n- `RESULT_FORMAT_HAXE_XML`: Returns an instance of Haxe's [`Xml`](https://api.haxe.org/Xml.html) class. Supported on all targets.\n\nThe `RESULT_FORMAT_E4X` and `RESULT_FORMAT_XML` values will throw an exception on most targets. These formats are supported on the **flash** and **air** targets only. Using the new `RESULT_FORMAT_HAXE_XML` instead is recommended.\n\n### Unsupported Service Types\n\nThe following services have not yet been ported to Haxe and Feathers UI.\n\n- ~~`WebService`~~: Provides access to SOAP-based web services on remote servers.\n- ~~`HTTPMultiService`~~: Represents a collection of HTTP operations.\n\nIf you need either of these service types, please create a [feature request](https://github.com/feathersui/feathersui-rpc-services/issues).\n\n## Minimum Requirements\n\n- Haxe 4.1\n- OpenFL 9.2\n- Feathers UI 1.0\n\n## Installation\n\nRun the following command in a terminal to install [feathersui-rpc-services](https://lib.haxe.org/p/feathersui-rpc-services) from Haxelib.\n\n```sh\nhaxelib install feathersui-rpc-services\n```\n\n## Project Configuration\n\nAfter installing the library above, add it to your OpenFL _project.xml_ file:\n\n```xml\n\u003chaxelib name=\"feathersui-rpc-services\" /\u003e\n```\n\n## Documentation\n\n- [feathersui-rpc-services API Reference](https://api.feathersui.com/rpc-services/)\n","funding_links":["https://github.com/sponsors/joshtynjala"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersui%2Ffeathersui-rpc-services","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeathersui%2Ffeathersui-rpc-services","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersui%2Ffeathersui-rpc-services/lists"}