SoFunction
Updated on 2025-04-02

Flex gets ip and pcname sample code through java background


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="/mxml/2009"
xmlns:s="library:///flex/spark"
xmlns:mx="library:///flex/mx" xmlns:supportClasses=".*" minWidth="955" minHeight="600" creationComplete="init()">
<fx:Script>
<![CDATA[
import ;
import ;
import ;
public function init():void
{
();
();
}
public function IPandPcname_faultHandler(event:FaultEvent):void
{
(());
}
public function getCompuName_Handler(event:ResultEvent):void
{
(());
}
public function getIp_Handler(event:ResultEvent):void
{
(());
}
]]>
</fx:Script>
<s:layout>
<supportClasses:AttachmentLayout/>
</s:layout>
<fx:Declarations>
<!-- Put non-visual elements (such as services, value objects) here -->
<mx:RemoteObject destination="systemConfAction" fault="IPandPcname_faultHandler(event)">
<mx:method name="getCompuName" result="getCompuName_Handler(event)" />
<mx:method name="getIp" result="getIp_Handler(event)" />
</mx:RemoteObject>
</fx:Declarations>
</s:Application>