Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Pete Thomas #1
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
-
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... -
#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... -
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... -
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? -
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... -
Pete Thomas #2
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



Reply With Quote

