RemoteObjectInvoker

(This tag must be placed inside an <EventHandlers> tag or a <MessageHandlers> tag)

The RemoteObjectInvoker tag is used to create a Remote Object instance and call a method on the object created. To use this tag, you need to specify the same attributes you would when creating a remote object with the <mx:RemoteObject> tag. In addition, you need to specify what method to call. This tag will also accept all mx.rpc.remoting.RemoteObject tag attributes (with the exception of the "operations" property).

<RemoteObjectInvoker destination="YourDestination" source="path.to.your.service" method="methodToCall" arguments="{['argument1', 'argument2']}" />

The above example would be the same as doing the following:

<mx:RemoteObject id="myService" destination="ColdFusion" source="path.to.this.service" />
myService.methodToCall('argument1', 'argument2');

You would also need to either create event handlers for the server result and fault or create a Responder to handle them. That is not necessary when using the RemoteObjectInvoker tag because results and faults are handled by Mate. See section "Handling a service result or fault".

With this tag, you can also utilize an already created RemoteObject instance. This is useful when the same services are used by several EventHandlers blocks or several EventMaps.

Suppose you have a Remote Object tag (either in the event map itself or in a different file):

<mx:RemoteObject id="myService" destination="ColdFusion" source="path.to.this.service" />

You can call a method on that already created service as follows:

<RemoteObjectInvoker instance="{myService}" 
	method="methodToCall"
	arguments="{['argument1', 'argument2']}" />

See the best practices for this tag

Attributes

method

required

The method attribute specifies what function to call on the remote object instance.

arguments

If the remote method has arguments, you can pass them via the "arguments" attribute.

Suppose you have a RemoteObject method called getPhotos and it expects a user name and an album name as arguments. You can specify them with the arguments attribute:

<RemoteObjectInvoker
	destination="YourDestination" source="path.to.your.service"
	method="getPhotos"
	arguments="{['Tom','My Album']}" />

Note that the arguments attribute expects an array. Besides passing literal values, you can pass values coming from the event that triggered the list execution:

<RemoteObjectInvoker
	destination="YourDestination" source="path.to.your.service"
	method="getPhotos"
	arguments="{[event.userName, event.album]}"/>

This assumes that the event contained a userName property and an album property.

You can also pass the complete data or lastReturn as an argument depending on what your service expects.

<RemoteObjectInvoker
	destination="YourDestination" source="path.to.your.service"
	method="getPhotos"
	arguments="{data}"/>
<RemoteObjectInvoker
	destination="YourDestination" source="path.to.your.service"
	method="getPhotos" 
	arguments="{lastReturn}"/>

Of course you can use any combination of arguments:

<RemoteObjectInvoker
	destination="YourDestination" source="path.to.your.service"
	method="getPhotos"
	arguments="{[event.age, lastReturn, 'Tom']}"/>

instance

A RemoteObject instance

The instance attribute specifies the already created service instance to use to make the call. This attribute must be supplied using bindings because it needs to point to an already created object.

Suppose you have a RemoteObject already created:

<mx:RemoteObject id="myService" destination="ColdFusion" source="path.to.this.service" />

You can make a call to this service by using the RemoteObjectInvoker tag, with instance {myService}. Note that any property you need for your service must be defined in the RemoteObject tag.

<RemoteObjectInvoker instance="{myService}" />

debug

Boolean

Whether to show debugging information for this RemoteObject resultHandlers and faultHandlers. If true, Console output will show debugging information as those handlers run.

Inner tags

resultHandlers

A set of handlers to run when the server call returns a result. Inside this inner tag, you can use the same tags you would in the main body of an <EventHandlers> block, including other service calls.

faultHandlers

A set of handlers to run when the server call returns a fault. Inside this inner tag, you can use the same tags you would in the main body of an <EventHandlers>, including other service calls.

Handling a service result or fault

You can have a resultHandlers block and a faultHandlers block inside the tag to handle service results and faults.

<RemoteObjectInvoker destination="YourDestination" 
  	source="path.to.your.service"
	method="methodToCall"
	arguments="{['argument1', 'argument2']}">

	<resultHandlers>
		... this list executes when server returns results ...
	</resultHandlers>
	
	<faultHandlers>
		... this list executes when server returns an error ...
	</faultHandlers>

</RemoteObjectInvoker>

See "Handling a service result or fault" for more information.

37 responses

  1. Hi,

    I'm experimenting with converting a Cairngorm application over to Mate, not having much luck since I'm also very new to Cairngorm. However, i've hit a snag with SetCredentials()

    Is SetCredentials() supported by MATE on remote object calls? If it is, can you point me in the right direction please.

    Many thanks,

    Matt Law
  2. Whoops, here it is: <br /><a rel="nofollow" href="http://mate.asfusion.com/api_docs/com/asfusion/mate/actions/builders/ServiceInvoker.html">http://mate.asfusion.com/api_docs/com/asfusion/mate/actions/builders/ServiceInvoker.html</a>;
  3. So there's no discussion about the source attribute. Is it required? If so what exactly is this? Does it have to subclass a certain class?<br /><br />Charlie
  4. Charlie,<br />All the attributes not discussed here correspond to the RemoteObject tag (<a rel="nofollow" href="http://livedocs.adobe.com/flex/3/langref/mx/rpc/remoting/RemoteObject.html">http://livedocs.adobe.com/flex/3/langref/mx/rpc/remoting/RemoteObject.html</a>; ), including source and destination. Whether it is required or not depends on what adapter you are using on the server.
  5. Is there any way to pass in named arguments? i.e. firstName='Tom'
  6. Jim,<br />Usually, the Flash Remoting Gateway will take an object as named arguments when it is the only thing you sent (it may vary by AMF implementation I guess). If you are passing literal values, then it is as simple as:<br />&lt;<a href="RemoteObjectInvoker</a><br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a><br />&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;arguments=&quot;{{firstName: 'Tom', lastName: 'Smith'}}&quot;/&gt;<br /><br />If you need data from somewhere else, then you can construct the object before sending it: <br /><br />&lt;<a href="ObjectBuilder</a>">http://mate.asfusion.com/page/documentation/tags/objectbuilder">ObjectBuilder</a>; generator=&quot;{Object}&quot; cache=&quot;false&quot;&gt;<br /> &lt;Properties firstName=&quot;{event.name}&quot; lastName=&quot;{event.lastName}&quot; /&gt;<br />&lt;/<a href="ObjectBuilder</a>&gt;<br">http://mate.asfusion.com/page/documentation/tags/objectbuilder">ObjectBuilder</a>&gt;<br /><br />&lt;<a href="RemoteObjectInvoker</a><br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a><br />&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;arguments=&quot;{lastReturn}&quot;/&gt;
  7. Have to say, I've been dipping in and out of this for weeks now, and its suprisingly easy to remember and get back in to. <br /><br />With those changes you did for me, I've now got it working with .NET authentication, and the Cafe Townsend example was the perfect basis for me to built my try-out my new application.<br /><br />All in all, great stuff!! :) <br /><br />Many thanks.
  8. How can I concatenate an event property ie. event.name to the source attribute?<br />I want to do:<br />source = &quot;path.to.{event.name}.cfc&quot;<br /><br />Thanks
  9. Rob,<br />You'll have to create the path elsewhere (ie: using <a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>;) and then use the properties tag inside the <a href="RemoteObjectInvoker</a>:<br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>:<br />&lt;properties&gt;<br /> &lt;Properties source=&quot;{lastReturn}&quot; /&gt;<br />&lt;/properties&gt;<br /><br />Having said that, I am not 100% sure you can dynamically change the source. I'll have to verify it.
  10. For the sake of portability across different servers i choose not to user services-config.xml file, usually creating a custom channel using parameters from flashVars:<br /><br />var ch:ChannelSet = new ChannelSet();<br />ch..addChannel(new AMFChannel('amfphp', parameters.gatewayUrl));<br /><br />then use it in the service, i've glazed upon mate source code and found channelSet property in ServiceInvoker, i guess this would be the place to change it with above.<br /><br />Now, what would be the &quot;Mate&quot; way of doing this ?
  11. ion,<br />You can do that or set each attribute you need to be dynamic with the Properties inner tag:<br />&lt;code&gt;<br />&lt;<a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; ...&gt;<br /> &lt;Properties endpoint=&quot;{YOUR DYNAMIC GATEWAY URL}&quot; /&gt;<br />&lt;/<a href="RemoteObjectInvoker</a>&gt;<br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>&gt;<br />&lt;/code&gt;<br /><br />The drawback is that you have to do it in every <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>;. A better way would be to change that in the RemoteObject instance, either changing the channel set or the specific properties. You could do that in many different ways: binding those values to some static variable in a Config.as class, which you would change on FlexEvent.INITIALIZE or pass the remoteobject instance to some class that sets the properties, etc.<br />Ie:<br />&lt;mx:RemoteObject endpoint=&quot;{Config.endpoint}&quot; .../&gt;
  12. Laura, Thanks for this previous answer - I am not at a level where I can really follow these tips. I am working on finding the best solution to use pyAMF with Google App Engine in combination with Mate. The pyAMF site shows how to manually configure a remote object (because pyAMF does not support service-config.xml or remoting-config.xml) but I am not seeing how to combine this with Mate's remote object features. Here is the pyAMF link: <a rel="nofollow" href="http://pyamf.org/wiki/RemoteObjectConfig">http://pyamf.org/wiki/RemoteObjectConfig</a>;. Any information you could provide or sources for further reading would be greatly appreciated.
  13. Hi Greg,<br />I am pretty sure that you can still use the RemoteObject tag, even if you can't use services-config.xml. I think the example they show would translate to:<br />&lt;code&gt;<br />&lt;mx:RemoteObject id=&quot;service&quot; endpoint=&quot;<a rel="nofollow" href="http://localhost:8080/services&quot">http://localhost:8080/services&quot</a>;; destination=&quot;EchoService&quot; /&gt;<br /><br />&lt;<a href="EventHandlers</a>">http://mate.asfusion.com/page/documentation/tags/eventhandlers">EventHandlers</a>; ...&gt;<br />&nbsp;&nbsp;&nbsp;&lt;<a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; instance=&quot;{service}&quot; method=&quot;echo&quot; arguments=&quot;{['Hello World']}&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;&lt;/<a href="RemoteObjectInvoker</a>&gt;<br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>&gt;<br />&lt;/<a href="EventHandlers</a>&gt;<br">http://mate.asfusion.com/page/documentation/tags/eventhandlers">EventHandlers</a>&gt;<br />&lt;/code&gt;<br /><br />If that doesn't work, then you can always add the channel set to the remoteObject tag (though I don't think the ChannelSet adds any information you don't already have).
  14. Can you pass an object from the event as the argument? So for example, if i had an object in my event called MyObject and an object in my view called formObject, and before I dispatch my event i set event.MyObject = formObject can i use that in my event map for the event <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; arguments as arguments=&quot;{event.MyObject}&quot;? It works if I do {event.MyObject.requestID} but if i leave out the property it does not pass anything.
  15. Kyle,<br />As most of the examples show, what you are trying to do should work. Please double check if indeed you are not received anything (turn debugging on and check in the console).
  16. Hi Laura,<br />In debugging I can see the object looks like it was passed:<br />arguments=&quot;[object SearchCriteriaVO]&quot;<br />However Coldfusion says the required argument was not passed in. Whats really strange is that if I change my argument from event.searchCriteria to event.searchCriteria.request my debugging says:<br />arguments=&quot;1&quot;<br />and Coldfusion recieves the data. It seems like there is some property I am not using that I should be, any ideas?
  17. Kyle,<br />Whenever you pass a single argument to a CF service (and that argument is not an aliased object), then you'll receive all the properties of the object as single parameters. That is the default behavior of the Flex remoting gateway. Since none of the names of your properties match the name of the required argument, you get the error. I see that you are trying to pass a SearchCriteriaVO. Probably the aliasing is not working correctly (make sure you have a SearchCriteriaVO in the server and that their aliases match.<br /><br />PS: For this type of problems, I recommend you to head to the forums.
  18. Can you leave the arguments attribute off of the remote Object invoker tag and it still work?
  19. Lavon,<br />Yes, if you don't specify any arguments, then the service call will not send any parameters, but the call will be made regardless.
  20. Hi,<br />Actually I wanted to post this in the forum, but I just cannot get in. So I try here.<br /><br />I am looking at options to authenticate through Mate to a backend. I have created a method, but now I feel I want to use a more ChannelSet oriented way. It would be great if I could do something like this:<br /><br />&amp;lt;ChannelSetInvoker username=&quot;event.username&quot; password=&quot;event.password&quot; method=&quot;login&quot;&gt;<br /> &amp;lt;resultHandlers&gt;<br /> &amp;lt;<a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>; generator=&quot;{AuthenticationManager}&quot; method=&quot;storeAuthenticationDetails&quot;<br /> arguments=&quot;{resultObject}&quot;/&gt;<br /> &amp;lt;<a href="EventAnnouncer</a>">http://mate.asfusion.com/page/documentation/tags/eventannouncer">EventAnnouncer</a>; generator=&quot;{AuthenticationEvent}&quot; type=&quot;{AuthenticationEvent.AUTHENTICATED}&quot;/&gt;<br /> &amp;lt;/resultHandlers&gt;<br /> &amp;lt;faultHandlers&gt;<br /> &amp;lt;<a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>; generator=&quot;{AuthenticationManager}&quot; method=&quot;storeAuthenticationProblem&quot;<br /> arguments=&quot;{fault}&quot;/&gt;<br /> &amp;lt;/faultHandlers&gt;<br />&amp;lt;/ChannelSetInvoker&gt;<br /><br />I have written some functions that can actually do just this, but now I want to use the normal event handlers from Mate. What do you think? Would that be handy? I was working on a patch, but I cannot get it to work without flex builder. Tried with the flex-maven plugin, but something seems to go wrong. You have my email if you want more info.<br /><br />thanks Jettro
  21. Sorry about the previous xml, this might be better<br />&lt;ChannelSetInvoker username=&quot;event.username&quot; password=&quot;event.password&quot; method=&quot;login&quot;&gt;<br /> &lt;resultHandlers&gt;<br /> &lt;<a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>; generator=&quot;{AuthenticationManager}&quot; method=&quot;storeAuthenticationDetails&quot;<br /> arguments=&quot;{resultObject}&quot;/&gt;<br /> &lt;<a href="EventAnnouncer</a>">http://mate.asfusion.com/page/documentation/tags/eventannouncer">EventAnnouncer</a>; generator=&quot;{AuthenticationEvent}&quot; type=&quot;{AuthenticationEvent.AUTHENTICATED}&quot;/&gt;<br /> &lt;/resultHandlers&gt;<br /> &lt;faultHandlers&gt;<br /> &lt;<a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>; generator=&quot;{AuthenticationManager}&quot; method=&quot;storeAuthenticationProblem&quot;<br /> arguments=&quot;{fault}&quot;/&gt;<br /> &lt;/faultHandlers&gt;<br />&lt;/ChannelSetInvoker&gt;
  22. Having trouble finding an example of the RemoteInvoker endPoint. I'm evaluating Mate for adoption by my team and I can't seem to make a amfphp connection. I've tried several variation without luck. My call is being made from an air project.<br />Also can you tell me what I need to do to use the flex debugger. I have enabled Mate's debugging, but all it does is trace the call and response. So basicly it's telling me I have a fault which I'm announcing, but it's not firing the responder in the view. So I have no idea what the fault is. Can I set break points in the remoteObjectInvoker chain? I must be missing something. <br /><br />Help,<br /><br />John
  23. John,<br />The best you can do is to try to connect to your remote object using plain RemoteObject tag and handle the result and faults. Once you have that working and figure out the problem, start using Mate and its <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; tag. Also see his tutorials and videos:<br /><a rel="nofollow" href="http://mate.asfusion.com/news/hello-world-video-tutorial">http://mate.asfusion.com/news/hello-world-video-tutorial</a>;
  24. Laura,<br />Thanks for you quick response. I have viewed the Hello world screencast. It requests that I use a services xml file. I want to skip that step and use the endpoint instead, but I'm not having luck finding a real example of that working. I'm having as much trouble finding a mxml remoteobject tag example. I can implement and connect with a channell in AS, but no luck with mxml. Can you point me in the direction of a working example of either your <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; or the mx remoteObject with endpoint used in it?<br /><br />John
  25. Hi people,<br /><br />I have one question about Mate. I work with java, but i dont know how to use the RemoteObject using Mate with Java. I need to use the remote-config.xml file to mapping my &quot;services&quot; classes on Java? I have some thing like that without mate:<br /><br />in my login.mxml file have:<br /><br />&lt;mx:Script source=&quot;ASLogin.as&quot; /&gt; (ASLogin.as below)<br /><br />&lt;mx:RemoteObject id=&quot;loginService&quot; destination=&quot;LoginService&quot; showBusyCursor=&quot;true&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mx:method name=&quot;login&quot; result=&quot;onLoginHandler(event)&quot; fault=&quot;onFaultHandler(event)&quot;/&gt;<br />&lt;/mx:RemoteObject&gt;<br /><br />and when i want to use the method &quot;login&quot;, i do:<br /><br />ASLogin.as(AS File)<br /><br />private function btnEntrar():void <br />{<br />....<br />this.loginService.login(this.usuarioInput.text, this.senhaInput.text);<br /><br />and, in my remote-object.xml file have:<br /><br /> &lt;destination id=&quot;LoginService&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;properties&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;source&gt;LoginService&lt;/source&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/properties&gt;<br />&nbsp;&nbsp;&nbsp;&lt;/destination&gt;<br /><br />how can i do this using Mate? someone have examples projects Java with Mate? <br /><br />Sorry my english, but i'm Brazilian and i don't speaks english very well!<br /><br />thanks for all!
  26. marcelocaser,<br />Use the remote object that works for you and say &lt;<a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; instance=&quot;{loginService}&quot;&gt;<br />But don't put the remote object in the login view, put it in the map or in a separate file (preferred).
  27. laura, thank you for reply...<br /><br />so, i understand you, but now i have use some thing like that:<br /><br />LoginService.xml<br /><br />&lt;mx:Object ...&gt;<br /><br /> &lt;mx:RemoteObject id=&quot;loginService&quot; destination=&quot;LoginService&quot;/&gt;<br /><br />&lt;/mx:Object&gt;<br />---end----------------------------------------------------------------------<br />my LoginMap.xml<br /><br />&lt;--instance RemoteObject--&gt;<br />&lt;services:LoginService id=&quot;servicos&quot; /&gt;<br /><br />&lt;mate:<a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; instance=&quot;{servicos.loginService}&quot; method=&quot;login&quot;&gt;<br /> .......here my faulfHandler and resultHandler right?<br />&lt;/mate:<a href="RemoteObjectInvoker</a>&gt;<br">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>&gt;<br /><br />--end--------------<br /><br />is correct? after this i have to declared my destination LoginService in remote-config.xml right?
  28. Does remoteObjectInvoker hijack convertParametersHandler at all? Seems like whenever I set convertParametersHandler on my RemoteObject instance, the convertParametersHandler receives an empty array, instead of an array containing the arguments from my remoteObjectInvoker tag.<br /><br />Has anyone successfully used remoteObjectInvoker on a remoteObject instance that has a convertParametersHandler?<br /><br />Also, it would be great if I could use a RemoteObject instance from the eventMap cache, why is that not supported?
  29. Hi,<br />any examp[le how the <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; would look like using Flex4 Generated PHP Services?<br />Its not working like this:<br />&lt;<a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; destination=&quot;PHP&quot; source=&quot;stockquotesService&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; method=&quot;getStockquotesByID&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arguments=&quot;{event.symbol}&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; debug=&quot;true&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;resultHandlers&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a href="MethodInvoker</a>">http://mate.asfusion.com/page/documentation/tags/methodinvoker">MethodInvoker</a>; generator=&quot;{QuoteManager}&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; method=&quot;storeQuote&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arguments=&quot;{resultObject}&quot;/&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/resultHandlers&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<a href="RemoteObjectInvoker</a>&gt">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>&gt;
  30. anyone reading this post here at all?
  31. is it possible to have a dynamic value for the source attribute? im trying to avoid hard-coding any paths into this field.
  32. What's the best way to incorporate Flex/client side logging into these <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>; calls?
  33. Most Common Drug Reactions <a rel="nofollow" href="http://www.bridge2dubai.com/">http://www.bridge2dubai.com/</a>; - valium medication The weights of these infants were normal by 10 months but their head circumferences still remained less than the average at 18 months. <a rel="nofollow" href="http://www.bridge2dubai.com/">http://www.bridge2dubai.com/</a>; - cheap valium
  34. I use remoteobject invoker to pass string which contain a tokenSamL processed by the server side of the application.<br />The token is coming from the request (by flashvar into flex) then passed to remote object invoker as an argument.At the java side of the app, the token arrived urldecoded is there a wat to pass a string and have mate not to url decode it?
  35. While using <a href="RemoteObjectInvoker</a>">http://mate.asfusion.com/page/documentation/tags/services/remoteobjectinvoker">RemoteObjectInvoker</a>;, does Mate interpret &quot;mymethod&quot; and &quot;myMethod&quot; as same? case-insensitive?
  36. &lt;a href= <a rel="nofollow" href="http://blog.leafrique.com/jolineledesma/9109/Selena+Gomez+Concert+T+Shirts.html">http://blog.leafrique.com/jolineledesma/9109/Selena+Gomez+Concert+T+Shirts.html</a>; &gt;selena gomez concert t shirts&lt;/a&gt;
  37. It might &lt;a href= <a rel="nofollow" href="http://forums.odforce.net/index.php/user/9315-wellbutrin-sr/">http://forums.odforce.net/index.php/user/9315-wellbutrin-sr/</a>; &gt;wellbutrin recall&lt;/a&gt; be fighting. Weall know howvulnerable i wanted.Lee unbuckled his friends, stretching away from the instant &lt;a href= <a rel="nofollow" href="http://forum.twilightgaming.co.za/index.php/user/60092-warfarin/page__tab__aboutme">http://forum.twilightgaming.co.za/index.php/user/60092-warfarin/page__tab__aboutme</a>; &gt;warfarin diet&lt;/a&gt; that.

Comments now closed