• Firaus Odeh
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I need help getting this to work. I've followed all API documentation and can't get anything to happen. There are no errors, just nothing happens when it's run:

 Case c = new Case();
 Case[] cases = new Case[1];

c.Id = id;
c.Subject = "Test";
cases[0] = c;
SaveResult[] check = binding.update(cases);

Any ideas would be great. I can successfully login and pull data, but update() and create() do nothing.
I need help getting this to work. I've followed all API documentation and can't get anything to happen. There are no errors, just nothing happens when it's run:

 Case c = new Case();
 Case[] cases = new Case[1];

c.Id = id;
c.Subject = "Test";
cases[0] = c;
SaveResult[] check = binding.update(cases);

Any ideas would be great. I can successfully login and pull data, but update() and create() do nothing.