Hi Alex,
After implementing event type filter, I passed the event cast error and
for now, I am getting an error below line (4) in the second picture below:
When I check ctype, it is : "application/xml"
There has been discussion before
https://github.com/apache/royale-asjs/pull/383#discussion_r249286044 and
I commented that it was working without casting.
The value on watch window :
parameters: "username=pinara"
And rising exception for today.
I am not sure what to do for now. It looks like the object is string but
as I remember the flex version was also working.
I need your advice.
Thanks,
Serkan
5.03.2019 07:27 tarihinde Serkan Taş yazdı:
Sure Alex,
I just want you to see the main idea. I need to make some imports vs.
to make it work.
After all I am going to let you know.
Thanks,
Serkan
4.03.2019 22:17 tarihinde Alex Harui yazdı:
Hi Serkan,
That part looks ok, but I would expect there is more to it to get it
to work from your app. There would probably be changes o
MXRoyaleClasses or mx-royale-manifest.xml and all changes should go
in a Pull Request.
Thanks,
-Alex
*From: *Serkan Taş <[email protected]>
*Reply-To: *"[email protected]" <[email protected]>
*Date: *Monday, March 4, 2019 at 11:10 AM
*To: *"[email protected]" <[email protected]>
*Subject: *Re: Work on Emulation
Here it is;
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License,
Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.apache.org%2Flicenses%2FLICENSE-2.0&data=02%7C01%7Caharui%40adobe.com%7C6ba07f4b703a4737dc3608d6a0d502f8%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636873234074060065&sdata=OfxkkgAvTE6BDJm29jg%2FqhJMbv61IHd%2FxPvRwfFJCwg%3D&reserved=0>
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.net
{
import org.apache.royale.events.EventDispatcher;
public class URLLoader extends org.apache.royale.net.URLLoader
{
override public function dispatchEvent(event:Object):Boolean
{
try
{
if(event.type == "httpStatus")
{
var type:String = event.type;
var status:int = event.value;
var bubbles:Boolean = false;
var cancelable:Boolean = false;
event = new HTTPStatusEvent(type, bubbles,
cancelable, status);
}
return super.dispatchEvent(event);
}
catch (e:Error)
{
if (e.name != "stopImmediatePropagation")
throw e;
}
return false;
}
}
}
4.03.2019 22:05 tarihinde Alex Harui yazdı:
I would like to see you create the class.
Thanks,
-Alex