Skip to main content
November 13, 2010
Question

Sample Php Class update() implementation

  • November 13, 2010
  • 1 reply
  • 523 views

Hey guys,

I've spent 2 days straight trying to figure out how to implement the update function in the sample class that Flash builder generates. Testing the operation works fine, but when i try to implement it in code using:

protected function updateProduct(item:Product):void

{

updateProductResult.token = productService.updateProduct(item);

}

it simply refuses to work. I know i am missing something completely obvious but i just can't figure it out!!! Thanks in advance guys.

- T

This topic has been closed for replies.

1 reply

Inspiring
November 13, 2010

Uh huh.

In what way 'refuses' ? Compiler error ? Doesn't send the request (you've tried Charles, FireBug etc. right ...) ? Launches your own ICBMs against you ? Halts and catches fire ?

Now might be a good time to review http://www.catb.org/~esr/faqs/smart-questions.html ...

November 14, 2010

Thanks for the helpful reply. I figured it out. For others facing the same issue:

In the data services panel select data types -> right click on your data type -> enable data management and set all the CRUD operations to "none"

Thank the dbag above for the solution