Hello,
Are the WebRequest and WebResponse classes meant to be supported using Unity iPhone Advanced? I can not seem to get them to work on the iPhone. I get a NotSupportedException when trying to do an http request.
Thanks
Jeremy
Hello,
Are the WebRequest and WebResponse classes meant to be supported using Unity iPhone Advanced? I can not seem to get them to work on the iPhone. I get a NotSupportedException when trying to do an http request.
Thanks
Jeremy
You mean the WWW? then yes
Beside the WWW classes there is only one type of networking, requiring Advance and that are .NET Sockets
none of the other things is present networking wise from .NET 1.1 unless it uses them potentially
Sorry, I do actually mean WebRequest and WebResponse, they have been part of the System.Net namespace since .NET 1.0.
Just to clarify, i get the exception when calling
WebRequest.Create(sURI);
Thanks
Potentially not, as the only mentioned networking support are the WWW / WWWForm which is present in both (and might do what you want there) and .NET Socket for Advance only
The only ones able to answer this for sure are the devs thought I think
Ok, guess i have to use the WWW class.
Thanks