Interfacing With Ohio Tax Web Service

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Interfacing With Ohio Tax Web Service

    I am having trouble interfacing with the Ohio Tax web service. It is designed
    to take in an address and return an XML formatted set of data. Although I've
    never used xmlsoap I was under the impression that i could use <cfinvoke> to
    make the connection to this webservice. Attached is my code which is current
    returning the following error:

    Could not perform web service invocation "GetOHSalesTaxByAddress" because
    AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
    faultSubcode: faultString: Server was unable to process request. --> Invalid or
    Missing Security Token. faultActor: faultNode: faultDet.................and so
    on.

    The 'SalesDate' argument is a 'dateTime' datatype, so i tried using
    '2003-11-19T00:00:00.00000" instead but then it didn't recognize the type and
    gave an error saying:
    Web service operation "GetOHSalesTaxByAddress" with parameters [...] could not
    be found.

    Perhaps I am trying to do this completely wrong. Any ideas on how to get this
    working would be IMMENSELY appreciated. Thanks.

    -=Rob





    <cfinvoke webservice =
    "https://thefinder.tax.ohio.gov/OHFinderService/OHFinderService.asmx?WSDL"
    method = "GetOHSalesTaxByAddress"
    returnvariable="tax_results">
    <cfinvokeargument name="AddressLine" value="12250 Nantucket Dr.">
    <cfinvokeargument name="City" value="Chardon">
    <cfinvokeargument name="StateOrProvince" value="OH">
    <cfinvokeargument name="PostalCode" value="44024">
    <cfinvokeargument name="CountryCode" value="US">
    <cfinvokeargument name="SalesAmount" value="50.00">
    <cfinvokeargument name="SalesDate" value="2003-11-19">
    <cfinvokeargument name="ReturnMultiple" value="false">
    </cfinvoke>

    RoBsTaMaCk Guest

  2. Similar Questions and Discussions

    1. php NuSOAP and .net SOAP interfacing
      Hi! I'm trying to develop a .net application (xml web service client, using SoapHttpClientProtocol), but i can't get any response from xml web...
    2. Interfacing
      I have a movie with an interface and everything where the interface "un" grows and grows back again differently when navigating around. On this one...
    3. Interfacing an application
      Hey all. I have an application that I want to interface with a web page. The catch is I didn't write the program and I don't know who did (beofre...
    4. Interfacing flash with javascript
      On my website, I'm working on a little price estimate calculator in javascript. I was wondering if there is anyway that I can activate certain...
    5. interfacing with Python using Perl
      I don't know Python and I really have no desire to learn it, but I do have a decent amount of experience with Perl. Is there a module(s) that will...
  3. #2

    Default Re: Interfacing With Ohio Tax Web Service

    Rob,

    I just started working with this web service and I'm getting the exact
    same error message you've reported. Have you made any progress since
    you posted this?

    Seth Johnson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139