Adobe Graphics Server - SOAP REQUESTS

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

  1. #1

    Default Adobe Graphics Server - SOAP REQUESTS

    Anyone out there got web services going for the AGS with CF Can only get the
    GetVersion() method working but cant work out the request object for Execute()
    Argument mismatch error! I'm guessing you either know the answer or you don't!
    :)

    Pete Thomas Guest

  2. Similar Questions and Discussions

    1. Feature requests for Flash Media Server 3
      Hello Adobe FMS dev team :) Who i must contact in the Adobe FMS dev team to indicates a whish list of all new features and fix bug i want in the...
    2. #40099 [NEW]: Cannot pass long (> 2147483647) in SOAP requests
      From: phpbugs at henrik dot synth dot no Operating system: MacOSX PHP version: 5.2.0 PHP Bug Type: SOAP related Bug...
    3. See Server Requests Running in CFMX 6.1
      How can I see what Requests are running on my CFMX 6.1 Server running on a W2K box? I am getting requests that run and won't stop, even though I...
    4. Tool for intercepting SOAP requests
      Is there a simple straight forward tool out there for intercepting my SOAP requests so that I can debug the XML that I am sending?
    5. What is the best way to import EXCEL graphics into Adobe illustrator 10
      Here is the procedure I am currently using: -copy the EXCEL graphics and paste it into Mac Draw PRO -save the mac draw pro file as PICT2 -import...
  3. #2

    Default Re: Adobe Graphics Server - SOAP REQUESTS

    Forget the webservices object you will have nightmares just use the sdk java
    classes. Stick the altercast_sdk.jar and xerces.jar in the WEB-~INF/lib and
    you're good to go <cfsavecontent
    variable='myXML'><commands><version/></commands></cfsavecontent> <cfscript>
    Altercast = CreateObject('Java','com.adobe.altercast.sdk.Alter Cast'); serverURL
    = CreateObject('Java','java.net.URL');
    serverURL.init('http://localhost:8019/altercast/AlterCast'); myService =
    Altercast.createWebServiceServer(serverURL); req = altercast.createRequest();
    req.setCommands(myXML); responseObj = myService.execute(req); results =
    responseObj.getResults(); resultContent = results[1]; xmlPacket =
    toString(resultContent.getData()); </cfscript> <cfdump var='#xmlPacket#'>
    <cfsavecontent variable='myXML'><commands><loadContent
    source='srcfile'/><imageInfo/></commands></cfsavecontent> <cfscript> Altercast
    = CreateObject('Java','com.adobe.altercast.sdk.Alter Cast'); serverURL =
    CreateObject('Java','java.net.URL');
    serverURL.init('http://localhost:8019/altercast/AlterCast'); myService =
    Altercast.createWebServiceServer(serverURL); req = altercast.createRequest();
    req.setCommands(myXML); file1 = CreateObject('Java','java.io.FileInputStream');
    file1.init('C:\testcymk.jpg'); req.addFile('srcfile',file1); responseObj =
    myService.execute(req); results = responseObj.getResults(); resultContent =
    results[1]; xmlPacket = toString(resultContent.getData()); </cfscript> <cfdump
    var='#xmlPacket#'>

    Pete Thomas 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