Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I spent whole day looking for the answer but no luck. I use Flex Builder 4.6 with .NET MVC 4 brand new WEB Api framework (ApiController). The task is to send a simple POST from Flash swf in Chrome browser to the HTTP Service that runs on the IIS 8. This is my HTTP service

public class CustomerApiController : ApiController
{
    // POST api/CustomerApi/13
    public HttpResponseMessage PostCommandReceived(int id)
    {            
        if (ModelState.IsValid)
        {
            ... some logic ....

            HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.Created, id);
            response.Headers.Location = new Uri(Url.Link("CustomerApi", new { id = id }));
            return response;
        }
        else
        {
            return Request.CreateResponse(HttpStatusCode.BadRequest);
        }
    }

to call this service I use Flash Builder's Data wizard to create HTTP service. This wisard generates this code:

internal class _Super_RegService extends com.adobe.fiber.services.wrapper.HTTPServiceWrapper
{
private static var serializer0:JSONSerializationFilter = new JSONSerializationFilter();

// Constructor
public function _Super_RegService()
{
    // initialize service control
    _serviceControl = new mx.rpc.http.HTTPMultiService("http://localhost:58336/");
     var operations:Array = new Array();
     var operation:mx.rpc.http.Operation;
     var argsArray:Array;

     operation = new mx.rpc.http.Operation(null, "GetRegStatus");
     operation.url = "api/CustomerApi";
     operation.method = "GET";
     operation.serializationFilter = serializer0;
     operation.resultType = valueObjects.IsValidForRegistration;
     operations.push(operation);

     operation = new mx.rpc.http.Operation(null, "GetNextCommand");
     operation.url = "api/CustomerApi/1";
     operation.method = "GET";
     operation.serializationFilter = serializer0;
     operation.resultType = valueObjects.RegCommand;
     operations.push(operation);

     operation = new mx.rpc.http.Operation(null, "PostCommandReceived");
     operation.url = "api/CustomerApi/{commandId}";
     operation.method = "POST";
     argsArray = new Array("commandId","commandIx");
     operation.argumentNames = argsArray;         
     operation.properties = new Object();
     operation.properties["urlParamNames"] = ["commandId"];
     operation.contentType = "application/x-www-form-urlencoded";
     operation.resultType = Object;
     operations.push(operation);

     _serviceControl.operationList = operations;  


     preInitializeService();
     model_internal::initialize();
}

... the rest of code ... }

Both GET commands work fine, but notice in the POST command that I send two parameters Array("commandId","commandIx"); instead of one. One is of URL type that fits my MVC routing and another is of POST type. This is the trick because if I send only URL param, there is error "Content lenght header is required" This is because IIS 8 requires Content-Length HTTP header to be set in POST request and it is not generated without POST param.

Well, this works almost fine in a Test operation (there is some error but I'll decribe it later), but when I run the Flex code my swf app does not replace {commandId} pattern in the

operation.url = "api/CustomerApi/{commandId}"; 

For some reason it tries to access it literally as

"http://localhost:58336/api/CustomerApi/{commandId}"

The operation:mx.rpc.http.Operation class does not perform it's work at runtime but it does it during a Test operation in the Flash Builder. Why? Should I configure this class at runtime? How? This is the first serious problem.

Below is my ActionScript that calls remote HTTP service. It is absolute copy of the code that successfully calls other GET requets in the same application

var regService:RegService;
regService = new RegService();
var token2:AsyncToken = regService.PostCommandReceived(cmd.CommandId.toString(), cmd.CommandId.toString()); 
token2.addResponder(new AsyncResponder(onSetResult, onFault));

The second problem is: when I do a Test operation in my Flash Builder the HTTP request goes to my MVC code, performs all necessary operations, returns back to the Flash Builder environment and for some reason raises this error

InvocationTargetException: Invalid URL-address

I thought there was some problem with this code

response.Headers.Location = new Uri(Url.Link("CustomerApi", new { id = id }));

and I tried to remove id param but with no luck. What is wrong with that response? Please help!

UPDATE: OK I did some trick

I went to the autogenerated wrapper of my webservice in the internal class _Super_RegService extends com.adobe.fiber.services.wrapper.HTTPServiceWrapperclass and changed it to replace that {commandId} pattern myself. It should not be so but it solved the first problem for some tine. I thing something is still wrong and the Test operation still raises that error. Please advice.

public function PostCommandReceived(commandId:String, commandIx:String) : mx.rpc.AsyncToken
{
    var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("PostCommandReceived");
    (_internal_operation as mx.rpc.http.Operation).url = (_internal_operation as mx.rpc.http.Operation).url.replace("{commandId}", commandId.toString()); 
    var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(commandId,commandIx) ;
    return _internal_token;
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.