Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.

Respondido How can I change Data member from other service?

  • terça-feira, 10 de abril de 2007 07:36
     
     

    Hi everybody.

    today I have some question,.

    I made two services. one is Called A, the other called B.

     

    A have a [Data Member] int a;

     

    and I want to change that member from service B.

    I already linked to Partner and call A's service hanlders. However I couldn't change Data member from other service.

    How can I reach that problem? somebody help me~!

Todas as Respostas

  • terça-feira, 10 de abril de 2007 19:15
     
     Respondido

    you need to send an Update message from Service B, to Service A. Service A needs to implement a Handler, and an Update operation, so when it receives the Update message, it updates the value, with the value in the Update body, send from Service B.

     

    Service Tutorials 1->6 are *really* helpfull understanding how to talk between services.

     

    thanx

    g