I am currently setting up a wcf SOAP web service, which uses OAuth v1 (DotNetOpenAuth) to autorize users. I'm hosting the site on a remote server via IIS7. Recently I've succeedded at getting the webservice to return the user's timetable, which works like a charm.
However, now I also need to be able to retrieve a user's test results via this web service. To do this, my web service calls another, existing web service to retrieve the results, then formats them and returns them to the user.
I first created a test webservice to do this, which works perfectly- I load my web service's wsdl file in SoapUI, and it returns the desired results (by calling the other webservice).
However, when implementing the method into the actual project, it fails. Apparently there's a hickup caused by elements in the web.config file;
<configuration>
...
<applicationSettings>
<OAuthServiceProvider.Properties.Settings>
<setting name="OAuthServiceProvider_Zuyd_OsirisService" serializeAs="String">
<value>http://.../OsirisServices-OsirisServices/OsirisServicePort</value>
</setting>
</OAuthServiceProvider.Properties.Settings>
</applicationSettings>
</configuration>
With ... being the IP address and port number. When I include this piece of code (which is automatically generated by adding the web reference), I get an error saying "The remote server returned an error: (500) Internal Server Error" whenever I try to access the web reference (or any other file on the site, for that matter). If I don't include it then I can access the files on the site just fine, but, well, then I'm obviously unable to call the second web service.
Am I doing something wrong with this block of code? Or is there something else that I'm missing?
I've included the full error text below;
Server Error in '/consumerexample/v3' Application.
--------------------------------------------------------------------------------
The remote server returned an error: (500) Internal Server Error.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: The remote server returned an error: (500) Internal Server Error.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[WebException: The remote server returned an error: (500) Internal Server Error.]
System.Net.HttpWebRequest.GetResponse() +1485
DotNetOpenAuth.Messaging.StandardWebRequestHandler.GetResponse(HttpWebRequest request, DirectWebRequestOptions options) +508
[ProtocolException: Error occurred while sending a direct message or getting the response.]
DotNetOpenAuth.Messaging.StandardWebRequestHandler.GetResponse(HttpWebRequest request, DirectWebRequestOptions options) +1911
DotNetOpenAuth.Messaging.StandardWebRequestHandler.GetResponse(HttpWebRequest request) +63
DotNetOpenAuth.Messaging.Channel.GetDirectResponse(HttpWebRequest webRequest) +72
DotNetOpenAuth.Messaging.Channel.RequestCore(IDirectedProtocolMessage request) +349
DotNetOpenAuth.Messaging.Channel.Request(IDirectedProtocolMessage requestMessage) +154
DotNetOpenAuth.Messaging.Channel.Request(IDirectedProtocolMessage requestMessage) +69
DotNetOpenAuth.OAuth.ConsumerBase.PrepareRequestUserAuthorization(Uri callback, IDictionary`2 requestParameters, IDictionary`2 redirectParameters, String& requestToken) +193
DotNetOpenAuth.OAuth.WebConsumer.PrepareRequestUserAuthorization(Uri callback, IDictionary`2 requestParameters, IDictionary`2 redirectParameters) +28
OAuthConsumer.GetTimeTable.getAuthorizationButton_Click(Object sender, EventArgs e) in C:\Program Files\TimeTableWebService\consumer4\OAuthConsumer\GetTimeTable.aspx.cs:54
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +154
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3394
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272
EDIT: I should note that, in my test webservice (the one that works), adding a web reference causes the following block of code to be auto-generated;
<appSettings>
<add key="Zuyd.OsirisService" value="http://.../OsirisServices-OsirisServices/OsirisServicePort"/>
</appSettings>
I have no idea why an element appears in the test webservice, while an element appears in the actual webservice. In both cases I simply right click the project name and select "Add web reference".
ANOTHER EDIT: As explained in my second comment, the appSettings element had nothing to do with it, it was another element from the web.config that was missing. After adding that element to my web.config, I got the following error
Server Error in '/consumerexample/v3' Application.
--------------------------------------------------------------------------------
Unable to connect to the remote server
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Unable to connect to the remote server
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[FaultException`1: Unable to connect to the remote server]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +348
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +1421
OAuthConsumer.SampleServiceProvider.IZuydWebservice.GetTestResults(Boolean filtered) +0
OAuthConsumer.SampleServiceProvider.DataApiClient.GetTestResults(Boolean filtered) in C:\Program Files\TimeTableWebService\consumer4\OAuthConsumer\Service References\SampleServiceProvider\Reference.cs:435
OAuthConsumer.GetTimeTable.<btnGetTestResults_Click>b__8(DataApiClient client) in C:\Program Files\TimeTableWebService\consumer4\OAuthConsumer\GetTimeTable.aspx.cs:115
OAuthConsumer.GetTimeTable.CallService(Func`2 predicate) in C:\Program Files\TimeTableWebService\consumer4\OAuthConsumer\GetTimeTable.aspx.cs:141
OAuthConsumer.GetTimeTable.btnGetTestResults_Click(Object sender, EventArgs e) in C:\Program Files\TimeTableWebService\consumer4\OAuthConsumer\GetTimeTable.aspx.cs:115
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +154
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3394
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272