I've been trying to compile some libraries I've written in f# to work in a game I'm writing for the xbox360, except I keep getting an error saying "The module/namespace 'System.Net.WebRequest' from compilation unit 'System' did not contain the namespace, module or type 'WebRequest'.

The command I've been using to compile it is

"C:\Program Files (x86)\Microsoft F#\v4.0\fsc.exe" -o:obj\Release\XBox360.dll --standalone --noframework --define:TRACE --optimize+ --tailcalls+ -r:"C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Xbox360\mscorlib.dll" -r:"C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Xbox360\System.dll" -r:"C:\Program Files (x86)\Reference Assemblies\Microsoft\FSharp\2.0\Runtime\v2.0\FSharp.Core.dll" --target:library --warn:3 --warnaserror:76 --fullpaths --flaterrors somefile.fs

Does anyone know of a way to fix, or avoid this problem?

link|improve this question
feedback

1 Answer

The xbox assemblies are a cut down version of the normal .net ones (it uses the client framework +- a few bits).

One major limitation is that with xna on the xbox you can only communicate using microsoft's LIVE servers. i.e. no web requests.

You can see this by comparing the SerializableAttribute page, which is supported (has the xna symbol next to supported members and constructors) with the WebRequest page, which does not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.