Error: External WCF service - no request found

Error: External WCF service - no request found

Comments

  • Hi,

    Im getting an error when trying to create an external WCF service
    I have a few external services; all have imported successfully except this final one, which is also our biggest. We are getting these error messages in our logs:

    [Message]:Error In Service ContextProviderServiceWrapper :: Unhandled Service Exception
    [Exception]: DecisionsFramework.BusinessRuleException: [BusinessRule] The external WCF service cannot be automatically generated to be used by the workflow engine.
    Reason: Metadata contains a reference that cannot be resolved: (URL)..
    Please contact support or refer to SDK in order to use this service. ---> System.Exception: Metadata contains a reference that cannot be resolved: (URL).

    [Message]:Metadata contains a reference that cannot be resolved: (URL)
    [Exception]:System.InvalidOperationException: Metadata contains a reference that cannot be resolved: (URL). ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 10.70.33.84:8080

    [color=rgb(34, 34, 34)][font=arial, sans-serif]System.ServiceModel.[/font][/color][color=rgb(34, 34, 34)][font=arial, sans-serif]CommunicationException: The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element. ---> System.ServiceModel.[/font][/color][color=rgb(34, 34, 34)][font=arial, sans-serif]QuotaExceededException: The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element.[/font][/color]

  • Hey there,

    It looks like the size of the data returned from your URI is bigger than the limit for your incoming messages. You can change this by[color=rgb(34, 34, 34)][font=arial, sans-serif] increasing the MaxReceivedMessageSize in Settings.xml for the BasicHTTPEndPointDefinition.

    You can also follow these steps if that doesnt work:[/font][/color]
    [color=rgb(34, 34, 34)][font=arial, sans-serif]
    [/font][/color]
    [b][color=rgb(34, 34, 34)][font=arial, sans-serif]When creating the WCF Reference:[/font][/color]
    [/b][color=rgb(34, 34, 34)][font=arial, sans-serif]1. Check the Use Specified Binding checkbox[/font][/color]
    [color=rgb(34, 34, 34)][font=arial, sans-serif]2. Click the ..." button that appears to the right[/font][/color]
    [color=rgb(34

Sign In or Register to comment.