覆盖 BlazeDS / FlexDataservice 端点
我正在使用 Flex Dataservice 中的构建来连接到 BlazeDS 服务器。 Flex 使用模型文件夹中的 *.fml 文件来获取连接详细信息,在该文件中您可以找到以下内容:
<annotation name="ServiceConfig">
<item name="DEFAULT_ENTITY_PACKAGE">valueObjects</item>
<item name="contextRoot">/MYWEBAPP</item>
<item name="rootUrl">http://192.168.178.21:8080/MYWEBAPP</item>
<item name="LINKED_FILE"></item>
<item name="ABSOLUTE_ENDPOINT">http://192.168.178.21:8080/MYWEBAPP/messagebroker/amf</item>
</annotation>
Flex DataService 创建的 _super_Database 类使用该配置来设置远程对象以进行通信。 现在我正在寻找一种方法来覆盖扩展 _super_Database 类的 Database 类中的这些设置。有人可以帮忙吗?
I'm using the build in Flex Dataservice to connect to a BlazeDS server.
Flex is using the *.fml file within the model folder for the connection details, within that file you can find the following:
<annotation name="ServiceConfig">
<item name="DEFAULT_ENTITY_PACKAGE">valueObjects</item>
<item name="contextRoot">/MYWEBAPP</item>
<item name="rootUrl">http://192.168.178.21:8080/MYWEBAPP</item>
<item name="LINKED_FILE"></item>
<item name="ABSOLUTE_ENDPOINT">http://192.168.178.21:8080/MYWEBAPP/messagebroker/amf</item>
</annotation>
the _super_Database class created by Flex DataService uses that configuration to setup a remote object for communications.
Now i'm looking for a way to overwrite those settings within the Database class which extends the _super_Database class. can anyone assist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在运行时定义通道和其他RemoteObject信息,而不在编译时指定services-config文件;那么您可以使用此链接为您提供执行此操作所需的信息。
If you want to define channels and other RemoteObject information at run-time without specifying a services-config file at compile time; then you can use this link to give you the information you need to do that.