Posting XML to webservice from ColdFusion

TheWizardofInt

Junior Contributor
Joined
Dec 31, 1969
Messages
333
Location
Orlando, FL
I use this method to take a string in a .Net WebService

<WebMethod()> Public Function XMLUpdate(ByVal sXML As String) As String
...
End Function

When I send it a string from a .Net web page, it works.

The coldfusion page throws an error:

Line 634: requiresPhoneNumbersAsPlainText = "false"
Server cannot read capabilities configuration r.
Source File: c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config Line: 634

Which is the portion of the MachineConfig that handles Mobile Phones.

Is there something besides a string that they should be accepting, or is this person just not configuring his page right, which is what I suspect?
 
Back
Top