Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

theNOCer
theNOCer
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
6

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by theNOCer
Customize the badges you want to showcase on your profile
Re: SOAP Requests - Adobe LiveCycle 04-07-2008
I tried both running it locally and on the same domain and gothe same error. so im pretty sure the problem is _not_ acrossdomain issue. i just dont know what it is.. here is some moredetails on the error(mx.messaging.messages::HTTPRequestMessage)#0 body = (Object)#1 clientId = (null) contentType = "application/x-www-form-urlencoded" destination = "" headers = (Object)#2 httpHeaders = (Object)#3 messageId = "90AB8BE3-59A0-70C0-2B55-E9D0759171FB" method = "GET" recordHeaders = false timestamp = 0 ...

Views

446

Likes

0

Replies

1
Re: SOAP Requests - Adobe LiveCycle 03-07-2008
Im pretty sure i was running into some cross domain issuesbecause im not running the software at that ip. So instead i gotthe wsdl and have it locally where the html is being run

Views

446

Likes

0

Replies

1
Re: SOAP Requests - Adobe LiveCycle 02-07-2008
help?

Views

446

Likes

0

Replies

0
SOAP Requests - Adobe LiveCycle 30-06-2008
I am trying to get some data from something called and iLONvia SOAP. I am currently doing this in some javascript code onanother page and i want to do this in flex so i can take somecharts I've already made and use this data.attached is my code. here is the error i am gettingquote:Channel.Security.ErrorUnable to load WSDL. If currently online, please verify theURI and/or format of the WSDL (wsdl address)I can visit http://--IP--/WSDL/v4.0/iLON100.wsdland see the WSDL. in my javascript code the u...

Views

1.6K

Likes

0

Replies

6
Re: HTTPService and JSON - Adobe LiveCycle 19-03-2008
Ok got it var myData:String = String(event.result.DATA); should bevar myData:String = String(event.result); now its just a matter of taking our different arrays andputting them into the collection

Views

98

Likes

0

Replies

0
HTTPService and JSON - Adobe LiveCycle 19-03-2008
I am trying get dynamic data into my charts usingmx:HTTPService to get a JSON. I have used the flex 3 help andcombed the forums to get this far but i am now stuck.here is my code quote: import mx.collections.ArrayCollection; import mx.rpc.events.ResultEvent; import com.adobe.serialization.json.JSON; import mx.controls.Alert; import mx.utils.ObjectUtil; [Bindable] private var expensesAC:ArrayCollection = newArrayCollection( [ { time: "1-24 19:00", cal: 2000, tva: 1500 }, { time: "1-24 20:00", cal: 1000, tva: 200 } ]); private function onJSONLoad(event:ResultEvent):void{ Alert.show("onJSONLoad called!"); var myData:String = String(event.result.DATA); Alert.show("data worked"); // Alert.show(myData); // myText.text = myData; // var ary:Array = (JSON.decode(myData) as Array); // var dp:ArrayCollection = new ArrayCollection(ary.data); // linechart.dataProvider = dp; } private function failed():void{ Alert.show("Fail!!"); } So when i run this i get the Alert "onJSONLoad called!" butnot the "data worked". when i run the service in my browser with firebug i get aresponse that looks like soquote:{"CALIFORNIA" : {demand : [ 40, 41,42,43, ect ],baseline : [ 40, 41,42,43, ect ],numReadings : [ 40, 41,42,43, ect ]},"ERCOT" ...

Views

544

Likes

0

Replies

1