• KimInFLA
  • NEWBIE
  • 5 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

I have been successfully using the following in both my developer and prodution environment so some time now:

String formattedName = "Poo ? Noah";

SearchResult  sr = binding.search("find {\"" + formattedName + "\"} in name fields returning account(id, name, shippingpostalcode, shippingcity)");

Having recently acquired the SandBox, I have pointed my code over and am now receiving the following error:

org.xml.sax.SAXException: Invalid element in com.sforce.soap.enterprise.sobject.SObject - type

I added the following to do additionally testing and also received the error mentioned above:

QueryResult  qr = binding.query("select Id,Name from Account");

 

Any ideas what might be causing this?  I am using Axis1.3 and

https://test.salesforce.com/services/Soap/u/7.0

Thanks for any assistance.

I have been successfully using the following in both my developer and prodution environment so some time now:

String formattedName = "Poo ? Noah";

SearchResult  sr = binding.search("find {\"" + formattedName + "\"} in name fields returning account(id, name, shippingpostalcode, shippingcity)");

Having recently acquired the SandBox, I have pointed my code over and am now receiving the following error:

org.xml.sax.SAXException: Invalid element in com.sforce.soap.enterprise.sobject.SObject - type

I added the following to do additionally testing and also received the error mentioned above:

QueryResult  qr = binding.query("select Id,Name from Account");

 

Any ideas what might be causing this?  I am using Axis1.3 and

https://test.salesforce.com/services/Soap/u/7.0

Thanks for any assistance.

Is creating a many to many relationship between 2 sforce objects supported? If so, how to?