Re: [flexcoders] Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz

2008-07-29 Thread Tom Chiverton
On Monday 28 Jul 2008, Vijay Ganesan wrote:
 Get this error trying to use the datavisualization library as an RSL:
 Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz

What does the web server log for the request for this file ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[flexcoders] Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz

2008-07-28 Thread Vijay Ganesan

Get this error trying to use the datavisualization library as an RSL:
Error #2032: Stream Error. URL: datavisualization_3.0.0.477.swz

Using the framework library as an RSL (framework_3.0.0.477.swz) seems
to work fine.

Flex Builder seems to put the datavisualization_3.0.0.477.swz in the
right place just as it does with framework_3.0.0.477.swz. But I get a
runtime error where it seems to be unable to find
datavisualization_3.0.0.477.swz

What is special about the datavisualization swz that is causing this
error when the framework swz seems to work fine?

Thanks
Vijay




[flexcoders] Error #2032: Stream Error

2008-05-07 Thread Deniz Davutoglu
I have a couple http services which pool data from mysql and apcahe,
just one of them is trowing 

[RPC Fault faultString=HTTP request error
faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent
type=ioError bubbles=false cancelable=false eventPhase=2 text=Error
#2032: Stream Error. URL: php/siteler.php]. URL: php/siteler.php]
at
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216]
at
mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49]
at
mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:103]
at
DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:343]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/redirectEvent()

I know that this page exist and return data becouse when I enter url
in browser it returns me data.
Do you have any idea what about is this problem.



Re: [flexcoders] Error #2032: Stream Error

2008-05-07 Thread Josh McDonald
The stream error is what you get when the server returns a 500 fault. Try
using a proxy like Charles to see what the actual data returned from the
server was, there's usually better information in the response, but the
browser doesn't let Flash see it.

-J

On Wed, May 7, 2008 at 9:45 PM, Deniz Davutoglu 
[EMAIL PROTECTED] wrote:

   I have a couple http services which pool data from mysql and apcahe,
 just one of them is trowing

 [RPC Fault faultString=HTTP request error
 faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent
 type=ioError bubbles=false cancelable=false eventPhase=2 text=Error
 #2032: Stream Error. URL: php/siteler.php]. URL: php/siteler.php]
 at
 mx.rpc::AbstractInvoker/
 http://www.adobe.com/2006/flex/mx/internal::faultHandler
 ()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216]
 at

 mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49]
 at

 mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:103]
 at

 DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:343]
 at flash.events::EventDispatcher/dispatchEventFunction()
 at flash.events::EventDispatcher/dispatchEvent()
 at flash.net::URLLoader/redirectEvent()

 I know that this page exist and return data becouse when I enter url
 in browser it returns me data.
 Do you have any idea what about is this problem.

  




-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


Re: [flexcoders] Error #2032: Stream Error

2008-05-07 Thread Douglas Knudsen
not necessarily.  this 2032 error is thrown when the browser tells the
player something mucked up in the response before the browser passed the
response to the player.  Whatever the mucked up issue is, the browser does
not tell the player what is at issue and it gets the 2032 label.  I've seen
this occur regularly for a web service call in IE, but not FF and Service
Capture indicated nothing wrong with the response, go figure.

search the archives, its not a uncommon subject.

DK

On Wed, May 7, 2008 at 9:40 AM, Josh McDonald [EMAIL PROTECTED] wrote:

   The stream error is what you get when the server returns a 500 fault.
 Try using a proxy like Charles to see what the actual data returned from the
 server was, there's usually better information in the response, but the
 browser doesn't let Flash see it.

 -J


 On Wed, May 7, 2008 at 9:45 PM, Deniz Davutoglu 
 [EMAIL PROTECTED] wrote:

I have a couple http services which pool data from mysql and apcahe,
  just one of them is trowing
 
  [RPC Fault faultString=HTTP request error
  faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent
  type=ioError bubbles=false cancelable=false eventPhase=2 text=Error
  #2032: Stream Error. URL: php/siteler.php]. URL: php/siteler.php]
  at
  mx.rpc::AbstractInvoker/
  http://www.adobe.com/2006/flex/mx/internal::faultHandler
  ()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216]
  at
 
  mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49]
  at
 
  mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:103]
  at
 
  DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:343]
  at flash.events::EventDispatcher/dispatchEventFunction()
  at flash.events::EventDispatcher/dispatchEvent()
  at flash.net::URLLoader/redirectEvent()
 
  I know that this page exist and return data becouse when I enter url
  in browser it returns me data.
  Do you have any idea what about is this problem.
 
 


 --
 Therefore, send not to know For whom the bell tolls. It tolls for thee.

 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]
 




-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


Re: [flexcoders] Error #2032: Stream Error

2008-05-07 Thread Josh McDonald
Moving to Flash development was supposed to mean IE was no longer the bane
of my existence...

On Thu, May 8, 2008 at 12:25 AM, Douglas Knudsen [EMAIL PROTECTED]
wrote:

   not necessarily.  this 2032 error is thrown when the browser tells the
 player something mucked up in the response before the browser passed the
 response to the player.  Whatever the mucked up issue is, the browser does
 not tell the player what is at issue and it gets the 2032 label.  I've seen
 this occur regularly for a web service call in IE, but not FF and Service
 Capture indicated nothing wrong with the response, go figure.

 search the archives, its not a uncommon subject.

 DK

 On Wed, May 7, 2008 at 9:40 AM, Josh McDonald [EMAIL PROTECTED] wrote:

The stream error is what you get when the server returns a 500 fault.
  Try using a proxy like Charles to see what the actual data returned from the
  server was, there's usually better information in the response, but the
  browser doesn't let Flash see it.
 
  -J
 
 
  On Wed, May 7, 2008 at 9:45 PM, Deniz Davutoglu 
  [EMAIL PROTECTED] wrote:
 
 I have a couple http services which pool data from mysql and apcahe,
   just one of them is trowing
  
   [RPC Fault faultString=HTTP request error
   faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent
   type=ioError bubbles=false cancelable=false eventPhase=2 text=Error
   #2032: Stream Error. URL: php/siteler.php]. URL: php/siteler.php]
   at
   mx.rpc::AbstractInvoker/
   http://www.adobe.com/2006/flex/mx/internal::faultHandler
   ()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:216]
   at
  
   mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49]
   at
  
   mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:103]
   at
  
   DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:343]
   at flash.events::EventDispatcher/dispatchEventFunction()
   at flash.events::EventDispatcher/dispatchEvent()
   at flash.net::URLLoader/redirectEvent()
  
   I know that this page exist and return data becouse when I enter url
   in browser it returns me data.
   Do you have any idea what about is this problem.
  
  
 
 
  --
  Therefore, send not to know For whom the bell tolls. It tolls for
  thee.
 
  :: Josh 'G-Funk' McDonald
  :: 0437 221 380 :: [EMAIL PROTECTED]
 



 --
 Douglas Knudsen
 http://www.cubicleman.com
 this is my signature, like it?
 




-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


[flexcoders] Error 2032 - Stream error

2007-11-30 Thread msabljic
Hello flexcoders,


I am having a problem where my Flex application dipplays this error:

faultCode:Server.Error.Request faultString:'HTTP request error' 
faultDetail:'Error: [IOErrorEvent type=ioError bubbles=false cancelable=false 
eventPhase=2 text=Error #2032: Stream Error.[/CODE]

Error is displayed every time i use HTTPService for connecting to a simple .php 
script:

?php

include('file_handler.php');

$f = new file_handler(webct.carnet.hr, 80, username, password, url, 
WEBDAV);

?


I should mention that .php script work just fine when executed directly from 
browser and basically what it does is connect to a remote server using webdav 
protocol through custom 'file_handler.php' class. If i remove the line:

$f = new file_handler(webct.carnet.hr, 80, username, password, url, 
WEBDAV);

used for connecting error is not displayed. I googled and didn't find any 
solution and what's even worse i don't know what's the problem? Can someone 
help me on this?

-- 
Best regards,
 Mirko  mailto:msabljic[at]gmail.com



[flexcoders] Error #2032, Stream Error

2007-09-13 Thread digitaljedis
Good Morning everybody,
You guys helped this flex beginner yesterday and now today I have a
new problem, I'm getting the following error:

[RPC Fault faultString=HTTP request error
faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent
type=ioError bubbles=false cancelable=false eventPhase=2 text=Error
#2032: Stream Error. URL: http://admin.mydomain.com/bars/create;].
URL: http://admin.mydomain.com/bars/create;]
at
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()
at mx.rpc::Responder/fault()
at mx.rpc::AsyncRequest/fault()
at private::DirectHTTPMessageResponder/errorHandler()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
at [io]

I know this error is common when the URL is incorrect, but I know it's
there.  I can paste it into the browser and it works fine.   

The code I'm using to access the service is as follows:

mx:HTTPService id=listBars
url=http://admin.mydomain.com/bars/list; useProxy=false method=GET/
mx:HTTPService id=updateBar
url=http://admin.mydomain.com/bars/update; useProxy=false
method=POST result=listBars.send()/
mx:HTTPService id=deleteBar
url=http://admin.mydomain.com/bars/delete; useProxy=false
method=POST result=listBars.send()/
mx:HTTPService id=createBar
url=http://admin.mydomain.com/bars/create; useProxy=false
method=POST result=listBars.send() contentType=application/xml
mx:request xmlns=
bar
title{barTitle.text}/title
username{barUsername.text}/username
tags{barTags.text}/tags
category{barCategory.text}/category
description{barDescription.text}/description
image{barImage.text}/image
link{barLink.text}/link
menu{barMenu.text}/menu
coupons{barCoupons.text}/coupons
address{barAddress.text}/address
state{barState.text}/state
zipcode{barZipcode.text}/zipcode
/bar
/mx:request
/mx:HTTPService

Listing, Updating, and Deleting function perfectly - but everytime I
try and create, it fails.  This is my create button:

mx:Button label=Create 
click=createBar.send(); BarClearForm()/

Thanks again guys, I really appreciate it!  



[flexcoders] error 2032 Stream Error

2007-05-07 Thread scott_flex

I just started getting the 2032 error when calling a web service and 
for the life of me cannot determine what's causing it.

Code snippet looks like:
var ws:WebService = new WebService()
ws.addEventListener(fault, faultHandler); // alerts error 
ws.loadWSDL(http://mylocalservers/test.asmx?WSDL;);
ws.updateTest(__xml);


Sometimes i get it, and sometimes i don't.  Not sure why though.

faultCode Server.Error.Request
faultDetail: Error: IOErrorEventtype: ioError
faultString: HTTP Request error

I getting in production when i'm in an SSL environement and I get it 
in my development environment where i'm running the flex app and web 
services all locally.

The url to my web service url is correct and the web services runs 
properly when called and tested from other apps.

What's weird is that i haven't changes how my web service calls or 
web service itself works...

Any help or pointers would be greatly appreciated.

--Scott








[flexcoders] Error #2032: Stream Error with ASP.NET 1.1 Web Service (running on local machine

2007-05-03 Thread mark_j_ellul
Hi,

I seem to have an random error with my Flex app which happens every so
often.

I am using Cairngorm 2.2 with a mx:WebService Object in my
Services.mxml. The web service is written in ASP.NET 1.1. I am using
Firefox as my browser.

Below is the trace on the faultEvent Object.

Upon doing some research I have seen this has cropped up with
HttpService objects and something to do with Caching on the Server
side. I cannot find any solutions for .net 1.1 and web services.

Any help would be muchly appreciated

Regards

Mark



Error: [IOErrorEvent type=ioError bubbles=false cancelable=false
eventPhase=2 text=Error #2032: Stream Error. URL:
http://markemark.homeip.net/ModerationUI/ModerationServices.asmx;].
URL: http://markemark.homeip.net/ModerationUI/ModerationServices.asmx
(mx.messaging.messages::ErrorMessage)#0
  body = (Object)#1
  clientId = DirectHTTPChannel0
  correlationId = B4C4616C-B647-1489-387B-52B3F9CE99B8
  destination = 
  extendedData = (null)
  faultCode = Server.Error.Request
  faultDetail = Error: [IOErrorEvent type=ioError bubbles=false
cancelable=false eventPhase=2 text=Error #2032: Stream Error. URL:
http://markemark.homeip.net/ModerationUI/ModerationServices.asmx;].
URL: http://localhost/ModerationUI/ModerationServices.asmx;
  faultString = HTTP request error
  headers = (Object)#2
  messageId = 37A664BF-143C-BEAD-880F-52B3FA5A3C3A
  rootCause = (flash.events::IOErrorEvent)#3
bubbles = false
cancelable = false
currentTarget = (flash.net::URLLoader)#4
  bytesLoaded = 0
  bytesTotal = 0
  data = (null)
  dataFormat = text
eventPhase = 2
target = (flash.net::URLLoader)#4
text = Error #2032: Stream Error. URL:
http://localhost/ModerationUI/ModerationServices.asmx;
type = ioError
  timestamp = 0
  timeToLive = 0




[flexcoders] Error #2032 Stream Error IOError

2006-12-06 Thread newflexuser
Hi.
I m a new flex developer.new to flash and designing too.I have good 
knowledge of java technologies.

Here in my flex application i m trying to use mx:HttpRequest object 
to communicate to server
TestApplication.mxml

mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; 
width=100% height=100%
mx:HTTPService 
id=feedRequest 
url=/processingServlet
contentType=application/xml
useProxy=false
fault=callFailure(event)
result=callSuccess(event)
method=GET
/mx:HTTPService

in the call success and callFailure functions i m just trying to see 
whther my httprequest is working or not.

mx:Script 
![CDATA[
import mx.rpc.events.ResultEvent;
import mx.rpc.events.FaultEvent;
import mx.controls.Alert;
private function callFailure(event:FaultEvent):void
{
Alert.show(String(event.message));
}
private function callSuccess(event:ResultEvent):void
{
Alert.show(String(event.result));
}
]]
/mx:Script
mx:Button label=Click click=feedRequest.send() /
/mx:Application

I could compile this.

I pasted the resulting swf file into my application root directory 
in tomcat 5.0

i.e i pasted in webapps/testapp/TestApplication.swf

i pasted the servlet class file into webapps/testapp/WEB-INF/classes

i also created a web.xml file

in which i could correctly define my servlet url.

I could call the swf file

http://localhost:8080/testapp/TestApplication.swf
but when i click the button my servlet do not recieve the HttpRequest

I recieve error my callfailure gets called showing Error #2032 
Stream error
Http Request Error error caused by IOErrorEvent

i m sure My servlet url works perfect with normal browser

It does not work even requesting a plain jsp or xml which are in 
same folder as .swf 
i did like url=catalog.jsp
url=catalog.xml

Is it not the way to host a simple webapplication..
I did not use any wrappers
Do i need to follow any other folder structure when deploying??
I also tried using crossdomain.xml
Does it have anything to do with my windows or flash player version?
Does any one have folder structure for deploying flex applications 
in tomcat?
I could see my webserver does not receive request at all.

In what way flash players httpservice is different from normal web 
browsers request?
Where did i go wrong.
Please help.
I m completely stuck not able to move from here..
Appreciate any kind of help.

Thank you
Roopa.




[flexcoders] error 2032 stream error F2 B2 webservices

2006-05-04 Thread Douglas Knudsen



I'm getting this error 2032 stream error that seems to pester some
folks around here. From perusing the archives, seems to be related to
webservice methods having  1 argument. So, I took my webservice
method and made it have one argument, a pipe-delimited list of values
as a workaround for now. Doesn't help at all, I still get the error. 
My other WS call works splendedly, but this one doesn't. In fact, the
results from both of my WS methods are the same format even. whacked.
 The WS mehtod works fine called via other means other than my Flex
app, just the Flex app doesn't like it. I even broke up the two
methods into seperate CFCs, yes I'm using CF for this, and this had no
effect.

Method one: returns a Array of structs with say 10 elements...works fine.
Method two: returns a Array of structs with say 5 elements, a subset
of elements in Method one. Doesn't work. I get this 2032 error

Ay thoughts? Maybe CF is not returning good XML/WSDL or something?

--
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.