Invoking Java WebService using Object as Parameter

Ask a Question related to Coldfusion Component Development, Design and Development.

  1. #1

    Default Invoking Java WebService using Object as Parameter

    Hopefully someone can help me out here. I am trying to call a web service which
    is expecting a java object'. ColdFusion is having difficulty converting it to
    the right XML representation for sending over via SOAP. I've been reading up on
    Axis and I'm wonderring what version of Axis CF has included in it or how to
    convert this java object so I can avoid the dreaded 'argument type mismatch'
    error from occuring. Thanks, Phil

    pduba31 Guest

  2. Similar Questions and Discussions

    1. Problems invoking a NuSOAP WebService
      ---------------------- ws.php ---------------------- <?php require_once("nusoap.php"); define("NAME_SPACE","urn:Foo"); // Instantiate and...
    2. WebService Returns Black Page When Invoking
      Hi Everyone! I am working on a project for a directed study class and am having problems with webservices. I have .NET Framework version...
    3. Java code invoking a CF Webservice
      Does anybody have an example of Java code invoking a CF Webservice? We have a Java class the invokes various webservices (Microsoft, Amazon, UPS,...
    4. Invoking WebMethods WebService Issue
      Hi All, I'm trying to create a .NET client to consume a webMethods web service. Based on the wsdl file given by you I've generated a .NET proxy...
    5. Exception when invoking axis webservice from c#
      have you resolved this? if not, a couple of other questions for you: 1. what version of AXIS are you using? v1.1 was just released in June, and...
  3. #2

    Default Invoking Java WebService using Object as Parameter

    Hopefully someone can help me out here. I am trying to call a web service which
    is expecting a java object'. ColdFusion is having difficulty converting it to
    the right XML representation for sending over via SOAP. I've been reading up on
    Axis and I'm wonderring what version of Axis CF has included in it or how to
    convert this java object so I can avoid the dreaded 'argument type mismatch'
    error from occuring. Thanks, Phil

    pduba31 Guest

  4. #3

    Default Re: Invoking Java WebService using Object as Parameter

    Oh, and the service I'm calling is of type 'Document Literal', using
    <soap:binding style='document'
    transport='http://schemas.xmlsoap.org/soap/http'/> in the WSDL for transport. I
    thought I read CF is RPC as the default. Would CF be able to understand this
    and convert accordingly or am I going to have to construct my own call? Thanks,
    Phil

    pduba31 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