Why is it so difficult?!?
Ok, Bungie has created an API for their new game, Halo Reach. The API allows you to access details stats and information about the game. There are two endpoints, JSON and SOAP. I figured that since SOAP was already XML that it would be easier to get that file than to translate the JSON into usable data. I think I was wrong.
I cannot figure out how to make a SOAP request using C#. When I just use a regular old HttpWebRequest/HttpWebResponse , I get an error "400 (Bad Request)."
Can someone please help me figure this out, or tell me if it would just be easier to use JSON.
Ok, Bungie has created an API for their new game, Halo Reach. The API allows you to access details stats and information about the game. There are two endpoints, JSON and SOAP. I figured that since SOAP was already XML that it would be easier to get that file than to translate the JSON into usable data. I think I was wrong.
I cannot figure out how to make a SOAP request using C#. When I just use a regular old HttpWebRequest/HttpWebResponse , I get an error "400 (Bad Request)."
Can someone please help me figure this out, or tell me if it would just be easier to use JSON.



Comment