Help: Cannot resolve a multiname unambiguous reference.

I get the following error in my code:

Can not resolve a multiname reference unambiguously. mx.controls:Button (from C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.1.0\frameworks\libs\framework.swc(mx.controls:Button)) and spark.components:Button (from C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.1.0\frameworks\libs\spark.swc(spark.components:Button)) are available.    Resource: ArcGIS.mxml    Path: /ArcGIS/src    Location: Unknown    Type: Flex Problem

I'm new to Flex and am trying to learn how to program. I have, however, seem to agree with Murphy as I always have a bug more. This is all just in my code when I added a routing with function of obstacles to enforcement. I narrowed down it to where I think the problem is, but I don't know how to fix it. Where I have narrowed it down to is in bold.

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:esri="http://www.esri.com/2008/ags"
               xmlns:mx="library://ns.adobe.com/flex/mx"
               initialize="initApp()"              
               pageTitle="Austin Peay State University">

    <s:layout>
        <s:VerticalLayout paddingBottom="10"
                          paddingLeft="10"
                          paddingRight="10"
                          paddingTop="10"/>
    </s:layout>   
   
    <fx:Script>
        <![CDATA[
            import com.esri.ags.Graphic;
            import com.esri.ags.events.FindEvent;
            import com.esri.ags.geometry.Extent;
            import com.esri.ags.tasks.supportClasses.FindResult;
            import com.esri.ags.utils.GraphicUtil;           
            import com.esri.ags.geometry.MapPoint;
            import com.esri.ags.layers.TiledMapServiceLayer;
            import com.esri.ags.tools.NavigationTool;
            import com.esri.ags.FeatureSet;
            import com.esri.ags.events.MapMouseEvent;
            import com.esri.ags.events.RouteEvent;
            import com.esri.ags.symbols.CompositeSymbol;
            import com.esri.ags.symbols.TextSymbol;
            import com.esri.ags.tasks.supportClasses.RouteResult;
           
            import mx.events.FlexEvent;               
            import mx.logging.LogEventLevel;
            import mx.collections.ArrayCollection;
            import mx.controls.Alert;
            import mx.rpc.events.FaultEvent;
           
            import spark.events.IndexChangeEvent;
           
            [Bindable]private var stops:FeatureSet = new FeatureSet([]);
            [Bindable]private var barriers:FeatureSet = new FeatureSet([]);           
            [Bindable]private var selectedBtn:Button;           
            [Bindable]private var lastRoute:Graphic;
                       
            private function layerShowHandler(event:FlexEvent):void
            {
                var tiledLayer:TiledMapServiceLayer = event.target as TiledMapServiceLayer;
                myMap.lods = tiledLayer.tileInfo.lods;
            }
           
            private function tbb_changeHandler(event:IndexChangeEvent):void
            {
                switch (tbb.selectedItem)
                {
                    case "Zoom In":
                    {
                        navTool.activate(NavigationTool.ZOOM_IN);
                        break;
                    }
                    case "Zoom Out":
                    {
                        navTool.activate(NavigationTool.ZOOM_OUT);
                        break;
                    }
                    case "Pan":
                    {
                        navTool.activate(NavigationTool.PAN);
                        break;
                    }
                    default:
                    {
                        navTool.deactivate();
                        break;
                    }
                }
            }
           
            private function doFind():void
            {
                findTask.execute(myFindParams);
            }
           
            private function executeCompleteHandler(event:FindEvent):void
            {
                myGraphicsLayer.clear();
               
//                resultSummary.text = "Found " + event.findResults.length + " results.";
                myGraphicsLayer.symbol = sfsFind;
               
                var resultCount:int = event.findResults.length;
               
                if (resultCount == 0)
                {
                    Alert.show("No buildings found. Please change your search.");
                }
                else
                {
                    // add feature as graphic to graphics layer
                    for (var i:int = 0; i < resultCount; i++)
                    {
                        var graphic:Graphic = FindResult(event.findResults[i]).feature;
                        graphic.toolTip = event.findResults[i].foundFieldName + ": " + event.findResults[i].value;
                        myGraphicsLayer.add(graphic);
                    }
                   
                    // zoom to extent of all features
                    var graphicProvider:ArrayCollection = myGraphicsLayer.graphicProvider as ArrayCollection;
                    var graphicsExtent:Extent = GraphicUtil.getGraphicsExtent(graphicProvider.toArray());
                    myMap.extent = graphicsExtent.expand(3.1); // zoom out a little
                }
            }
           
            private function initApp():void
            {
                selectedBtn = addStopsBtn;
            }
           
            private function mapClickHandler(event:MapMouseEvent):void
            {
                if (selectedBtn == addStopsBtn)
                {
                    var stopSymbol:CompositeSymbol = new CompositeSymbol();
                    var circleSym:SimpleMarkerSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 20, 0x000099);
                    var textSym:TextSymbol = new TextSymbol(String(stops.features.length + 1));
                    textSym.textFormat = new TextFormat("Verdana", null, null, true);
                    textSym.color = 0xFFFFFF;
                    stopSymbol.symbols = [ circleSym, textSym ];
                    var stop:Graphic = new Graphic(event.mapPoint, stopSymbol);
                    inputsLayer.add(stop);
                    stops.features.push(stop);
                }
                else
                {
                    var barrier:Graphic = new Graphic(event.mapPoint, barrierSymbol);
                    inputsLayer.add(barrier);
                    barriers.features.push(barrier);
                }
               
                if (stops.features.length > 1)
                {
                    routeTask.solve(routeParams);
                }
            }
           
            private function solveCompleteHandler(event:RouteEvent):void
            {
                var routeResult:RouteResult = event.routeSolveResult.routeResults[0];
                lastRoute = routeResult.route;
                lastRoute.toolTip = routeResult.routeName;
                if (routeResult.route.attributes.Total_Time)
                {
                    lastRoute.toolTip += " in " + Math.round(Number(routeResult.route.attributes.Total_Time)) + " minutes.";
                }
            }
           
            private function faultHandler(event:FaultEvent):void
            {
                Alert.show(event.fault.faultString + "\n\n" + event.fault.faultDetail, "Routing Error " + event.fault.faultCode);
                // remove last stop (or both stops if only two)
                if (stops.features.length <= 2)
                {
                    inputsLayer.clear();
                    stops = new FeatureSet([]);
                }
                else
                {
                    inputsLayer.remove(stops.features.pop());
                }
            }           

        ]]>
    </fx:Script>
   
    <fx:Declarations>   
        <esri:Extent id="initialExtent" xmin="-9724772" ymin="4374071" xmax="-9723613" ymax="4374822">
            <esri:SpatialReference wkid="102100"/>
        </esri:Extent>
        <esri:NavigationTool id="navTool" map="{myMap}"/>
       
        <mx:TraceTarget includeCategory="true"
                        includeLevel="true"
                        includeTime="true"
                        level="{LogEventLevel.DEBUG}"/>
       
        <!-- Symbol for Find Result as Polygon -->
        <esri:SimpleFillSymbol id="sfsFind" alpha="0.7"/>
       
        <!-- Find Task -->
        <esri:FindTask id="findTask"
                       executeComplete="executeCompleteHandler(event)"
                       url="http://peaymapper.apsu.edu/arcgis/rest/services/APSU"/>
       
        <esri:FindParameters id="myFindParams"
                             contains="true"
                             layerIds="[2]"
                             outSpatialReference="{myMap.spatialReference}"
                             returnGeometry="true"
                             searchFields="[BUILDING_N]"
                             searchText="{fText.text}"/>
        <esri:RouteTask id="routeTask"
                        concurrency="last"
                        fault="faultHandler(event)"
                        requestTimeout="30"
                        showBusyCursor="true"
                        solveComplete="solveCompleteHandler(event)"
                        url="http://tasks.arcgisonline.com/ArcGIS/rest/services/NetworkAnalysis/ESRI_Route_NA/NAServer/Route"/>
       
        <esri:RouteParameters id="routeParams"
                              outSpatialReference="{myMap.spatialReference}"
                              pointBarriers="{barriers}"
                              stops="{stops}"/>
       
        <esri:SimpleMarkerSymbol id="barrierSymbol2"
                                 color="0xFF0000"
                                 size="15"
                                 style="x">
            <esri:SimpleLineSymbol width="4"/>
        </esri:SimpleMarkerSymbol>
       
        <esri:PictureMarkerSymbol id="barrierSymbol" source="http://help.arcgis.com/en/webapi/flex/samples/assets/road-closed-32x32.png"/>
       
        <esri:SimpleLineSymbol id="routeSymbol"
                               width="5"
                               alpha="0.6"
                               color="0x000099"/>       

    </fx:Declarations>
   
    <mx:Panel title="Austin Peay State University" width="100%" height="100%">
        <mx:HDividedBox width="100%" height="100%">
            <mx:TabNavigator width="30%" height="100%">
                <s:NavigatorContent label="Controls" width="100%" height="100%">
                    <mx:Accordion x="0" y="0" width="100%" height="100%">
                        <s:NavigatorContent label="Navigation" width="100%" height="100%">
                            <s:ButtonBar id="tbb" change="tbb_changeHandler(event)" x="0" y="20">
                                <s:ArrayList>
                                    <fx:String>Zoom In</fx:String>
                                    <fx:String>Zoom Out</fx:String>
                                    <fx:String>Pan</fx:String>
                                </s:ArrayList>
                            </s:ButtonBar>
                            <s:Button click="navTool.zoomToFullExtent()" label="Full Extent" x="183" y="40"/>   
                            <s:ButtonBar id="bb"
                                         requireSelection="true" x="0" y="0">
                                <s:dataProvider>
                                    <s:ArrayList>
                                        <fx:String>Service</fx:String>
                                        <fx:String>Streets</fx:String>
                                        <fx:String>U.S. Topo</fx:String>
                                        <fx:String>Imagery</fx:String>
                                    </s:ArrayList>
                                </s:dataProvider>
                            </s:ButtonBar>                           
                            <s:Button click="navTool.zoomToPrevExtent()"
                                      enabled="{!navTool.isFirstExtent}"
                                      label="Previous Extent" x="0" y="40"/>
                            <s:Button click="navTool.zoomToNextExtent()"
                                      enabled="{!navTool.isLastExtent}"
                                      label="Next Extent" x="104" y="40"/>
                        </s:NavigatorContent>
                        <s:NavigatorContent label="Routing" width="100%" height="100%">
                            <mx:Button id="addStopsBtn"
                                       click="selectedBtn = addStopsBtn"
                                       label="Add Stops"
                                       selected="{selectedBtn == addStopsBtn}" x="0" y="0"/>
                            <mx:Button id="addBarriersBtn"
                                       click="selectedBtn = addBarriersBtn"
                                       label="Add Barriers"
                                       selected="{selectedBtn == addBarriersBtn}" x="0" y="20"/>
                            <mx:Button label="Clear" x="0" y="40">
                                <mx:click>
                                    <![CDATA[
                                    stops = new FeatureSet([]);
                                    barriers = new FeatureSet([]);
                                    lastRoute = new Graphic;
                                    inputsLayer.clear();
                                    ]]>
                                </mx:click>
                            </mx:Button>

                        </s:NavigatorContent>                       
                    </mx:Accordion>   
                </s:NavigatorContent>
                <s:NavigatorContent label="Find" width="100%" height="100%">
                    <mx:HBox x="0" y="0">   
                        <s:TextInput id="fText"
                            enter="doFind()"
                            maxWidth="400"
                            text="Enter Text..."/>
                        <s:Button click="doFind()" label="Find"/>       
                    </mx:HBox>
                    <mx:DataGrid width="100%" height="40%"
                                 dataProvider="{findTask.executeLastResult}" x="0" y="31">
                        <mx:columns>
                            <mx:DataGridColumn width="70"
                                               dataField="layerId"
                                               headerText="Layer ID"/>
                            <mx:DataGridColumn dataField="layerName" headerText="Layer Name"/>
                            <mx:DataGridColumn dataField="foundFieldName" headerText="Field Name"/>
                            <mx:DataGridColumn dataField="value" headerText="Field Value"/>
                        </mx:columns>
                    </mx:DataGrid>
                </s:NavigatorContent>               
                <s:NavigatorContent label="Legend" width="100%" height="100%">
                </s:NavigatorContent>
            </mx:TabNavigator>
            <mx:VDividedBox width="100%" height="100%">
                <esri:Map id="myMap"
                          extent="{initialExtent}"
                          level="16" height="100%" y="439" width="100%" x="585"
                          mapClick="mapClickHandler(event)"
                          openHandCursorVisible="false">
                    <esri:ArcGISDynamicMapServiceLayer show="layerShowHandler(event)"
                                                     url="http://peaymapper.apsu.edu/arcgis/rest/services/APSU/networkwalking/MapServer"
                                                     visible="{bb.selectedIndex == 0}"/>                   
                    <esri:ArcGISDynamicMapServiceLayer show="layerShowHandler(event)"
                                                     url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"
                                                     visible="{bb.selectedIndex == 1}"/>
                    <esri:ArcGISDynamicMapServiceLayer show="layerShowHandler(event)"
                                                     url="http://server.arcgisonline.com/ArcGIS/rest/services/USA_Topo_Maps/MapServer"
                                                     visible="{bb.selectedIndex == 2}"/>
                    <esri:ArcGISDynamicMapServiceLayer show="layerShowHandler(event)"
                                                     url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer"
                                                     visible="{bb.selectedIndex == 3}"/>
                    <esri:GraphicsLayer id="myGraphicsLayer"/>
                    <esri:GraphicsLayer graphicProvider="{lastRoute}" symbol="{routeSymbol}"/>
                    <esri:GraphicsLayer id="inputsLayer"/>                   
                </esri:Map>
            </mx:VDividedBox>
        </mx:HDividedBox>
    </mx:Panel>
</s:Application>

Can someone help a newbie to flex? xD it would be good if you could help me to understand the problem, how to solve the problem and how to avoid it. I want to repair my programming, Yes, but I would also like to learn.

Thank you!

If you want to be a MX button, the code would look like:

private var selectedBtn:mx.controls.Button

Tags: Flex

Similar Questions

  • Error: Cannot resolve a multiname unambiguous reference. MX. RPC.http.MXML:HTTPService

    I have this error:

    Cannot resolve a multiname unambiguous reference. MX. RPC.http.MXML:HTTPService
    (from C:\Program Files\Adobe\Flex 3\sdks\3.0.0\frameworks\libs\rpc.swc(mx/rpc/http/mxml/HTTPService)) Builder and (from C:\Program Files\Adobe\Flex Build

    I think it's maybe because I have this tag:

    < mx:HTTPService id = 'login_user' result = "checkLogin (event)" method = "POST" url ="' http://localhost/php/plum_tree/loginId.php ' useProxy ="false">"

    in the mxml file * if I take this outside and the click event code that calls checkLogin (event) there is no error.)

    and this tag:

    Import mx.rpc.http.HTTPService;

    in a .as file that is called from my mxml file.

    SEE YOU SOON

    Flex provides two classes of HTTPService in the mx.rpc.http.HTTPService and the other is mx.rpc.http.mxml.HTTPService. mx.rpc.http.mxml.HTTPService is a subclass of mx.rpc.http.HTTPService.
    Discover the language reference Flex for the differences between these two classes.

    That your code uses both HTTPService classes, there is ambiguity.
    There are two solutions to your problem. If you want to use the mx.rpc.http.HTTPService then change your code as below.
    private var gateway: HTTPService = new HTTPService();
    TO
    private var gateway:mx.rpc.http.HTTPService = new mx.rpc.http.HTTPService ();

    or
    Just use mx.rpc.http.mxml.HTTPService in both places.

    I hope this helps.

  • Cannot resolve a reference multiname unambiguously OSMF build from scratch

    Hello

    I'm currently building OSMF from scratch and I followed the guide of OSMF and OSMF building projects - http://osmf.org/dev/osmf/specpdfs/building-osmf.pdf

    I did everything as the guide, but when I try to compile the project, which is the trunk unmodified SVN, I get the following error (see below). I did a little research on Google, but nothing helped. Please help me!

    It's my complete log on compilation-

    E:\OSMF\OSMF SVN\trunk > ant

    BuildFile: E:\OSMF\OSMF SVN\trunk\build.xml

    all the:

    Update:

    Compile.OSMF:

    clean-bin:

    Update:

    [Remove] Delete: E:\OSMF\OSMF SVN\trunk\framework\OSMF\OSMF-build-config.tm

    p.Xml

    [copy] Copying 1 file to E:\OSMF\OSMF SVN\trunk\framework\OSMF

    [compc] Loading E:\OSMF\OSMF SVN\trunk\framework\OSMF\OSM configuration file

    F - build - config.tmp.xml

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as: error: cannot resolve a multiname unambiguous reference. or

    g.OSMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\buildtools

    \sdks\4.5.1\frameworks\libs\osmf.swc (org.osmf.elements.f4mClasses:Base 64Decoder)

    ) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\OSMF\o

    rg\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\B

    ootstrapInfoParser.as: error: cannot resolve a multiname unambiguousl reference

    y. org.osmf.elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\build

    tools\sdks\4.5.1\frameworks\libs\osmf.swc(org. OSMF. Elements.f4mClasses: Base64Dec

    Oder)) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\O

    SMF\org\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as: error: cannot resolve a multiname unambiguous reference. org.o

    SMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\buildtools\sd

    ks\4.5.1\frameworks\libs\osmf.swc (org.osmf.elements.f4mClasses:Base64D ecoder)) a

    ND org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\

    osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\D

    RMAdditionalHeaderParser.as: Error: cannot resolve a multiname unambi reference

    guously. org. OSMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk

    \buildtools\sdks\4.5.1\frameworks\libs\osmf.swc (tired org.osmf.elements.f4mC: bottom)

    e64Decoder)) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\frame

    work\OSMF\org\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as: error: cannot resolve a multiname unambiguous reference. or

    g.OSMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\buildtools

    \sdks\4.5.1\frameworks\libs\osmf.swc (org.osmf.elements.f4mClasses:Base 64Decoder)

    ) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\OSMF\o

    rg\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as: error: cannot resolve a multiname unambiguous reference. or

    g.OSMF. Elements.f4mClasses:DateUtil (from E:\OSMF\OSMF SVN\trunk\buildtools\sdks

    \4.5.1\frameworks\libs\osmf.swc(org. OSMF. Elements.f4mClasses:DateUtil)) and org.

    OSMF.utils:DateUtil (from E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\utils\D

    ateUtil.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\B

    ootstrapInfoParser.as: error: cannot resolve a multiname unambiguousl reference

    y. org.osmf.elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\build

    tools\sdks\4.5.1\frameworks\libs\osmf.swc(org. OSMF. Elements.f4mClasses: Base64Dec

    Oder)) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\O

    SMF\org\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as: error: cannot resolve a multiname unambiguous reference. org.o

    SMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\buildtools\sd

    ks\4.5.1\frameworks\libs\osmf.swc (org.osmf.elements.f4mClasses:Base64D ecoder)) a

    ND org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\

    osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\D

    RMAdditionalHeaderParser.as: Error: cannot resolve a multiname unambi reference

    guously. org. OSMF. Elements.f4mClasses:Base64Decoder (from E:\OSMF\OSMF SVN\trunk

    \buildtools\sdks\4.5.1\frameworks\libs\osmf.swc (tired org.osmf.elements.f4mC: bottom)

    e64Decoder)) and org.osmf.utils:Base64Decoder (from E:\OSMF\OSMF SVN\trunk\frame

    work\OSMF\org\osmf\utils\Base64Decoder.as) are available.

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as (137): col: 26 error: access of undefined property DateUtil.

    [compc]

    [compc] manifest.startTime = DateUtil.parseW3CDT

    F (root. NMSP::StartTime.Text());

    [compc]                                                  ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as (680): col: 18 error: Type was not found or is not a compile-ti

    me constant: Base64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new

    Base64Decoder();

    [compc]                                                 ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    anifestParser.as (680): col: 38 error: call to a method maybe not defined Base64

    Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new

    Base64Decoder();

    [compc]

    ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\B

    ootstrapInfoParser.as (92): col: 17 error: Type was not found or was not a mixtape

    constant time-e: Base64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new Base64De

    Coder();

    [compc]                                         ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\B

    ootstrapInfoParser.as (92): col: 37 error: call to a method may not set Ba

    se64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new Base64De

    Coder();

    [compc]                                                             ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as (67): col: 16 error: Type was not found or is not a c compilation

    adding: Base64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder;

    [compc]                                 ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as (147): col: 19 error: call to a method maybe not defined Base64Dec

    Oder.

    [compc]

    [compc] decoder = new Base64Decoder();

    [compc]                                           ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as (154): col: 19 error: call to a method maybe not defined Base64Dec

    Oder.

    [compc]

    [compc] decoder = new Base64Decoder();

    [compc]                                           ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\M

    ediaParser.as (187): col: 19 error: call to a method maybe not defined Base64Dec

    Oder.

    [compc]

    [compc] decoder = new Base64Decoder();

    [compc]                                           ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\D

    RMAdditionalHeaderParser.as (91): col: 17 error: Type was not found or was not a

    compilation constant: Base64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new Base64De

    Coder();

    [compc]                                         ^

    [compc]

    [compc] E:\OSMF\OSMF SVN\trunk\framework\OSMF\org\osmf\elements\f4mClasses\D

    RMAdditionalHeaderParser.as (91): col: 37 error: call to a possibly undefined met

    HoD Base64Decoder.

    [compc]

    [compc] var decoder: Base64Decoder = new Base64De

    Coder();

    [compc]                                                             ^

    [compc]

    BUILD FAILED

    E:\OSMF\OSMF SVN\trunk\build.xml:15: The following error occurred during executin

    g this line:

    E:\OSMF\OSMF SVN\trunk\build.xml:22: The following error occurred during executin

    g this line:

    E:\OSMF\OSMF SVN\trunk\build.xml:53: The following error occurred during executin

    g this line:

    E:\OSMF\OSMF SVN\trunk\framework\OSMF\build.xml:14: The following error occurred

    When executing this line:

    E:\OSMF\OSMF SVN\trunk\buildtools\utils.xml:107: compc task impossible

    Total duration: 56 seconds

    I see a reference to

    E:\OSMF\OSMF SVN\trunk\buildtools\sdks\4.5.1\frameworks\libs\osmf.swc (org.osmf.elements.f4mClasses:Bas e 64Decoder)

    Please remove the osmf.swc from the sdk 4.5.1 flsx libs - it is an earlier version of what you're trying to build.

  • Cannot resolve DNS-server may be down-Windows Vista

    I'm having an intermittent and repetitive problem on my laptop, which uses Vista Home Premium.

    My internet connection will reduce and out of a few hours every few weeks.  Nothing works, not games, or msn or all browsers, including firefox, internet explorer and google chrome.  When I run "diagnose and repair", it will sometimes say there is no problem, then later say that my DNS server cannot resolve the ISP addresses, and the server may be down, and that the problem cannot be repaired automatically.  It remains down for hours to days in a row.  I have a wireless connection, which is shared with 2 other computers.  The two other ones work very well, to my knowledge.  Any ideas?  I am so frustrated with this.  :(

    Oh and if you leave any ideas (which I appreciate), please keep in mind that I'm computer illiterate... I use especially programs games/internet/Word, and the words tech-type are completely lost to me.  If the details and explanations are greatly appreciated!  Thank you!

    bittyS,
    Thank you for visiting the Microsoft Answers community forum.

    It would be useful to know a few more things.  What type of router you have which is shared by all the computers on your network?  What type of Internet connection you have - is - this cable, DSL, satellite, etc. ?  Who is your Internet service provider?  Other computers never have a problem with connection to the Internet at all?  When your computer loses its Internet connection, have you tried to reboot to see if it will come back and log in?  Have you tried to reboot the router (which is made by disconnecting the power, wait 30 seconds and reconnect).

    I would recommend that you update the driver for your wireless interface card, it seems that it does not provide the connection and this could be a driver problem.  Here's how:
    1. open network connections by clicking the Start button, clicking Control Panel, clicking Network and Internet, click Network and sharing Center then click on manage network connections.
     
    2 right click on the wireless network adapter and then click on configure, then click driver then put to update driver.  Make sure that you have downloaded the latest driver from your manufacturer and loans.

    This information should be helfpful and is easy to understand the following terms:
    Network connection problems
    http://windowshelp.Microsoft.com/Windows/en-us/help/33307acf-0698-41ba-B014-ea0a2eb8d0a81033.mspx#ESEAE

    Let us know if this solves your problem, or if you need additional assistance.
    Thank you
    Gloria
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Model error: cannot resolve macro: RegisterResolvers

    Hi all

    I am using RoboHelp for Word after three years and more - and feel a little rusty. I have tried to import a Word document into my project (and sometimes succeed, if the file is small enough) and then attach a custom template that is based on RoboHelp.dot. Is it possible that the custom template, I used for my project is corrupted and it is causing the problem in all the other projects that I create from scratch later? Note that it is possible to solve this problem by reinstalling the RoboHelp application software...

    Initializing the compiler...
    Generation of WebHelp 5.50 (13.10.606)...

    Model active Script error: (null) [line: 13] (null)
    Model error: cannot resolve macro: RegisterResolvers

    Fatal error: cannot run macro: RegisterResolvers in the build script.
    Model error: cannot resolve macro: WH_HOME_HTM
    Model error: cannot resolve macro: WH_CSH_HTM
    Model error: cannot resolve macro: WH_CSH2_HTM

    WebHelp (WebHelp) was built successfully:
    C:\TEMP\garbage\test\! SSL!\WebHelp\test.htm

    Hi Peter,.

    Thanks for your quick response. It's nice to meet the resident expert! :-)

    I have the full version of RoboHelp Office X (Pro) for .NET, and it was installed with Admin rights. The application, project files and output all resident locally (on the same hard drive,) but on different drives. I need to produce a WebHelp output as a stand-alone help system (for now...).

    Yes, re-installation of the application would be solve the problem, but only until I present again of my custom template. I believe that Your ' e right - my model was the culprit. So I redefined styles in RoboHelp.dot instead and seeing me is no longer the error of the model at compile time. I also followed your advice and set the macro security in Word in the middle. Thank you. I also need to increase the amount of memory available in Word running (to import large files).

    Thank you
    Rachel.

  • The backup has failed. An error has occurred. The following information can help you resolve the error: the request has been aborted. (0x80099704D3)

    Hello, I am running Windows Vista Home Premium and trying to make Windows backup on DVD, I was able to cross 5 DVDs then it asked me to insert the DVD successfully n ° 6 I did and he never finished and I got this error:

    The backup has failed. An error has occurred. The following information can help you resolve the error: the request has been aborted. (0x80099704D3)

    The DVD I have are DVD so I can't rewrite over and over again. Can I somehow he pick up where it left off to complete my backup?

    Help! Thank you

    Lisa

    Hello

    -No, I don't have third-party backup programs installed.
    -J' tried using another disk backup, but it started it count once again as "disk 1" yet I had left off to "drive 6"and I couldn't tell if he has taken over where I left off or starting on even once, I don't want to do because I can't rewrite on my DVD. , because they are disposable.
    Because I needed to achieve this, I advanced and bought more DVD and will continue to backup even if I do not know where she had stopped. I think I can say that it not continue starting above and to the right.
    I think that the problem might have been that DVD #6 was bad, as he had a scratch on her, even if it was new out of the envelope.
    Software AV is not the issue, I am able to do backup, I wanted to just be able to pick up where I left off, as opposed to duty again since the beginning of my documents again. I just wish that Windows backup has been a little easier to use, in particular the fact that it is not "tag" my files to show who we are it is already saved, just like other software, (ex Mozy), which is very useful. And be able to choose what files I need backup rather than being limited to simply choose the 'file type '...
  • Angular 2 http.get () fails with "cannot resolve the host name.

    I am trying to get 2 angular (well, ionic 2 actually, but the call failure is part of the kinetic moment) to shoot some json from the web. My code works fine on iOS or Android (via Cordova), but fails on any call http.get () on 10 of BlackBerry. Initially, I had problems because I did not in the whitelist the URL I was trying to download, but after whitelisting now runs the get call, but always fails. The error message "cannot resolve the host name.

    Does anyone have an idea why angular is unable to resolve an external host name when running on BlackBerry 10?

    Never mind... my bad. I encounter this problem when running my Ionic/angular application on a simulator. For me to get always consistent on many simulators BB10 different IP addresses I've run, rather than to allow VMware Player feeding the DHCP server (because it does no reservations of IP), I run a TinyCore Linux server on the same virtual network as simulators, just so that I can use DHCP on the instance of TinyCore instead Allowing no reserves. Unfortunately, I did not complete the configuration of TinyCore properly so nothing on the virtual network becomes a valid gateway or the DNS server list to access the outside world.

    When I run my application on my Z10 physics, it works fine.

  • My Aero notebook will not be stopped correctly, no more. Can you help me resolve this you problem?

    My Aero notebook will not be stopped correctly more and when I turn it on it said "it was not shut down properly.  Can you help me resolve this you problem?

    It runs on Microsoft Windows 7.
    I got messages saying something on a certificate.
    At the bottom I selected the hardware and the drivers, but I don't know if that's the problem.
    Hello
     

    1. you receive an error message/code? If Yes, what is the exact full error message?
    2 have you made changes on the computer before this problem?
    3 does take more time to shut down the computer?
     

    Follow the steps.
     

    Method 1
    To help resolve the error and other messages, you can start Windows by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.
    http://support.Microsoft.com/kb/929135
    Note: Follow step 7 to reset the computer to start as usual after the boot process.
     

    Method 2
    Run the fix since the articles and if it helps.
    There is a delay when you stop, restart or log off a computer that is running Windows 7 or Windows Server 2008 R2
    http://support.Microsoft.com/kb/975777
    You can't do a computer that runs Windows 7 stops or sleep
    http://support.Microsoft.com/kb/977307
     
    Run a virus with Microsoft Safety scanner scan and check if the computer is infected.
    Method 3: Microsoft Security Scanner free is a downloadable security tool that allows analysis at the application and helps remove viruses, spyware and other malicious software. It works with your current antivirus software.
    http://www.Microsoft.com/security/scanner/en-us/default.aspx
    Note: The Microsoft Safety Scanner ends 10 days after being downloaded. To restart a scan with the latest definitions of anti-malware, download and run the Microsoft Safety Scanner again.
    Important: when running Scan disk hard if bad sectors are found on the hard drive when parsing tent repair this sector if all available on which data may be lost.
    You can also download & run Microsoft Security Essentials on your computer.
    See the link: http://windows.microsoft.com/en-US/windows/products/security-essentials
     
    Response with more information to help you.
  • The event log online help cannot be displayed because the default browser could not be started. Class not registered

    Hello. I live in Brazil, Rio de Janeiro and already installed W8 Pro original Microsoft license.

    When I need to use the event online Help Viewer, a reception this message - the event log online help cannot be displayed because the default browser could not be started.  Class not registered.
    Help, please.
    Thank you
    Carlos.

    Hi Carlos,

    Thanks for posting your query in the Microsoft Community Forums.

    After the description of the question, I understand that you are not able to access the online help for Event Viewer.

    1. do you receive an error message when you try to open the online help for Event Viewer?
    2. who is the default browser on your computer?

    Method 1:


    "The event log online help" her will bring you to the following Web page:

    http://www.Microsoft.com/technet/support/ee/ee_basic.aspx

    I suggest you try to access the above mentioned Web page to see if it works.

    Method 2:

    You can see the article mentioned below for how to set Internet Explorer as default browser.

    Make Internet Explorer your default browser

    http://Windows.Microsoft.com/en-us/Internet-Explorer/make-IE-default-browser#IE=IE-10

    It will be useful. For any other corresponding Windows help, do not hesitate to contact us and we will be happy to help you

  • TTIMDB connection problems: cannot resolve a non optional application descriptor property [DSN]

    Hello

    We currently have the plugin TTIMDB 11 g deployed in our instance of EM10g without a problem and you want to migrate to 12 c.  Us have deployed/installed the 12.1.0.2.0 plugin in our instance of EM12c and it deployed to the agent of the 12cR3 on our dev TTIMDB server.

    When you add the target TTIMDB in the same way that it is deployed in 10g, fine tested connecting to the DB, however the target shows down with the following errors...

    1. supervised > all measures, we get this... "The TimesTen database is declining: [name of the source/db data] is not loaded '

    2. under the target Configuration > Monithat test us the connection and if Configuration connection test when fTSRI Configure the plugin has worked it is now failing... "
    Response; Cannot resolve a non optional application descriptor property [DSN] (DSN).


    Any thoughts on what may cause these errors?


    Thank you

    Steve



    Hi Steve,.

    We are talking about the same thing. When I check to see if the TimesTen database is loaded into memory, I mean make sure that the database is running.

    By default, a TimesTen database is loaded into memory (start) during the first connection to the database. When the last connection to database stops, it will automatically unload the database of memory (close).

    As it is recommended to change this database startup behavior by manually changing the setting of strategy of the RAM .

    That is right I've proposed a ttIsql to connect to the database during the EM test. This will ensure that the target database is in place and running, so EM can connect to it.

    If you can stay connected to the database target using ttIsql and EM reports again that the database is down, then Yes, there is another problem.

    I suggest recreating the target and try again.

    Simon

  • ORA-ORA/16724-16783: cannot resolve the discrepancy

    Primary database: cluster 2 node rac, 11.2.0.2 RDBMS and GI
    Standby Database: single instance 11.2.0.2
    OPERATING SYSTEM: AIX 7.1

    Hello, I'm in the middle of implementing a data protection system and see a 16783 and a 16724. The system is told that it cannot resolve a gap. I made this request to search for sequences of archives that have been necessary: select * from v$ archive_gap. missing 2 stock footage. I restored both of them to the main system. 1 sequence has been recovered automatically by the system of data protection, the other has not been the case. I manually copied the archive log which was not recovered automatically in the rescue system. When I run the select * from v$ archive_gap now, no row is returned. All archive logs files that are currently in the directory Archives of primary system were copied on the standby system.

    Please let me know if anyone has an idea where the problem may be.

    Thank you

    Hello again;

    Active replication can be an option, the main concern is the load will be placed on the network and source host during this process.

    In theory, you can set the "channel of RATE setting" in RMAN to control this:

    http://docs.Oracle.com/CD/E11882_01/backup.112/e10642/rcmtunin.htm#BABDCEHG

    Best regards

    mseberg

  • Oracle Help cannot be generated...

    I get the message error "Oracle Help cannot be generated because the project already contains a file with the name specified as the start page. Please enter a unique name for the start page. [OK] »

    Help of the Oracle - the Oracle Help dialog box Options does not have control to specify a start page, so I don't know how to comply. The closest thing I see is a select button to choose a default theme.

    What Miss me?

    RoboHelp 8.0.2.208

    More information:

    I've recreated the aid project, but when I tried to create the Oracle help, this single-source layout was not available. (I want that I noticed that before I spent most of the day on this effort).

    Then I realized that, perhaps, helping Oracle has been removed the product from the original project was created in 2002, but the selection help Oracle was postponed because he was part of the project. Can someone confirm if this is the case? And if so, what was it deletes it?

    Another possibility is that the version of the Java SDK on my computer (jdk1.5.0_07) is not compatible with RH8. Maybe an older version of the JDK would work better. Can someone confirm or disprove this idea?

  • Need help, cannot set references to Photoshop.Application in VBA

    Hello

    I've used CS5 in the past and have had a VBA program works well (running in Access 2010) which went very well, open Photoshop 32-bit and controlled photoshop CS5 normally, allowing me to manipulate photos, read metadata, etc.  (It was my understanding that at least for CS5, programs including VBA script necessary to run the 32-bit version of Photoshop, not the 64-bit version).

    About 6 months ago, I installed CS6 and VBA program continued to work perfectly, as it always opens the 32-bit version. (I had to be sure that I was not running 64-bit Photoshop when I started the VBA program).  CS5 was still installed but not used.

    I just uninstall CS5, leaving CS6 installed.  For some reason, he left the program VBA disturbed in that the references (that you set in the window of the VBA code with tools > References) no longer seem to be valid.  I can't set a new reference to Photoshop.Application, and the program became unusable.  In other words, the "references" list is more typotheque Adobe Photoshop CS6 or Adobe Photoshop CS6 Object Library.  I've traveled to the C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit) \TypeLibrary.tlb file to add this reference manually.  The programs does not yet compile (for example, appRef As New Photoshop.Application Dim causes an error "User Defined Type not defined").  I get the same failure to compile if I search for and install a reference to the 32-bit version, C:\Program Files (x 86) \Adobe\Adobe Photoshop CS6\TypeLibrary.tlb.  In the past, I also had a reference to the 'Adobe Photoshop CS6 Object Library".  I tried manually to C:\Program Files (x 86) \Adobe\Adobe Photoshop CS6\Photoshop.exe or the 64-bit version of Photoshop.exe, but these files are not accepted and I do not otherwise know the location of the file from the object library.

    I so need help from someone who knows how to solve this problem in the transition of CS5 at CS6 to use VBA.

    Thank you

    EGibbon

    There are global keys which crushed with every version of Photoshop. Photoshop.Application gets for example set for each installation of Photoshop. When you have uninstalled CS5 these keys got deleted.

    You can install CS6 again? You don't need to uninstall. Just install again if it will let you.

    I have a script that wil set them, but I don't really like to use it on other machines of people as it messes with the registry and I don't want to make it worse for you.

  • Need help to resolve the error - below the SQL statement to execute cannot be

    Below is my CO as, which creates a callable statement.

    try {}
    OAApplicationModule oaapplicationmodule = (webBean) pageContext.getApplicationModule;
    OADBTransactionImpl t = (OADBTransactionImpl) oaapplicationmodule.getOADBTransaction ();
    OracleCallableStatement proc = (OracleCallableStatement) t.createCallableStatement (lquery,-1);
    proc. Execute();
    t.Commit ();


    }
    catch (SQLException sqlexception)
    {
    throw OAException.wrapperException (sqlexception);
    }




    After the execution of the page, get the below error... (Please find below stack error)

    I have referred the development guide but did not get something useful.

    Please give me clues about the same.

    Raghu cordially

    -- Error Stack ---------------------------------------------------------

    Error page


    Details of the exception.

    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: Houston-27123: SQL error in the preparation of the call statement. Statement: null
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2637)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    in OA. jspService(OA.jsp:40)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    to EDU.oswego.cs.dl.util.concurrent.PooledExecutor$ Worker.run (PooledExecutor.java:803)
    at java.lang.Thread.run(Thread.java:534)
    # # 0 in detail
    java.sql.SQLException: the SQL statement to execute cannot be empty or null
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
    at oracle.jdbc.driver.OracleConnection.privatePrepareCall(OracleConnection.java:1138)
    at oracle.jdbc.driver.OracleConnection.prepareCall(OracleConnection.java:1054)
    at oracle.jbo.server.DBTransactionImpl.createCallableStatement(DBTransactionImpl.java:3033)
    at cisco.oracle.apps.xxchr.element.server.webui.XXCHRElementSetSearchCO.processFormRequest(XXCHRElementSetSearchCO.java:343)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    in OA. jspService(OA.jsp:40)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    to EDU.oswego.cs.dl.util.concurrent.PooledExecutor$ Worker.run (PooledExecutor.java:803)
    at java.lang.Thread.run(Thread.java:534)
    java.sql.SQLException: the SQL statement to execute cannot be empty or null
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
    at oracle.jdbc.driver.OracleConnection.privatePrepareCall(OracleConnection.java:1138)
    at oracle.jdbc.driver.OracleConnection.prepareCall(OracleConnection.java:1054)
    at oracle.jbo.server.DBTransactionImpl.createCallableStatement(DBTransactionImpl.java:3033)
    at cisco.oracle.apps.xxchr.element.server.webui.XXCHRElementSetSearchCO.processFormRequest(XXCHRElementSetSearchCO.java:343)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    in OA. jspService(OA.jsp:40)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    to EDU.oswego.cs.dl.util.concurrent.PooledExecutor$ Worker.run (PooledExecutor.java:803)
    at java.lang.Thread.run(Thread.java:534)

    Published by: Rambeau on Oct 14, 2010 02:58

    check the code stuck by me again

    Connection Conn = pageContext.getApplicationModule (webBean) .getOADBTransaction () .getJdbcConnection ();

    Connection conn = oaapplicationmodule.getOADBTransaction().getJdbcConnection(); //Right one
    

    Thank you
    -Anil

  • Need help, cannot connect to http sites, https only...

    BLUF: I can connect only to HTTPS Web sites, http gives me 'unable to connect to the server' or "no route to host" errors.

    While I was out of town, the woman finished downloading something on his MBP that cause a lot of pop-up ads any time during the use of the internet.  I ran Malwarebytes Anti-Malware and it found and removed a bunch of infected files.  All this while the computer was on OS X 10.9.x. Since that time, on any browser (firefox, safari, chrome) we can only connect to the https pages.  For example, http://www.google.com = no go "impossible to connect to the server...". ", while https://www.googlec.com = good, but unfortunately most of the links is http, so it is useless.

    I spent most of the last days 2 pouring on the forums, and troubleshooting to resolve this question... what I did:

    Reset my router (without success, all the remains connected to it is good (everything else is also Android/windows))

    Reset my modem (even had my ISP reset everything they could on their end too)

    Back to zero/reinstalled all browsers,

    erased the PRAM using the option + command + p + r at startup.

    verified that no Proxy box is checked in the advanced network settings

    tried to change the DNS, manual, auto, opendns, 8.8.8.8/8.8.4.4, using my ISP DNS googles, nothing changes.

    uninstalled all that was installed last week (not a lot, but now I don't know what it was).

    disabled the browser all extensions/plug-ins.

    IPv6 disabled/re-enabled (set to auto),

    What works:

    Safe mode, internet is full to the top.

    While in safe mode, I was able to connect to the app store (could not in a regular connection or guest user) and upgrade to OS X 10.11.5, but even the installation that does not solve all missing / corrupted files, I always have the same question.

    I thought for sure the new OS would have fixed it, but now I'm really stumped.

    Is there a way to reset completely all network settings? Could get blocked port 80 (http)? How can I tell?

    Any help would be appreciated,

    v/r

    Sean

    (a husband who knows enough about computers to really break, ha)

    First, never use any type of software "anti-virus" or "anti-malware" on a Mac. That's how cause you problems, not how you solve them.

    1. the present proceedings is a diagnostic test. It doesn't change anything for the better or worse and therefore, by itself, will not solve the problem. But with the help of the results of the tests, the solution may take a few minutes, instead of hours or days.

    The test works on OS X 10.8 ("Mountain Lion") and later versions. I do not recommend running it on older versions of Mac OS X. It will do no harm, but it will not do not much good.

    Do not be put off by the complexity of these instructions. The procedure is easy to do right, but it is also easy to do wrong, so I had very detailed instructions. You make the tasks more complicated with the computer all the time.

    2. If you do not already have a current backup, please back up all the data before doing anything else. The backup is needed on the general principle, not because of what anyone in the test procedure. Backup is always a must, and when you encounter any kind of problems with the computer, you can be more than the usual loss of data, if you follow these instructions or risk not.

    There are ways to back up a computer that is not fully functional. Ask if you need advice.

    3 here is instructions to run a UNIX shell script, a type of program. As I wrote above, it doesn't change anything. It does not send or receive data over the network. There is no to generate a report on the State of the computer human readable. This report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents for me or someone else.

    You should ask yourself if you can believe me, and if it is safe to run a program at the request of a foreign national. In general, no, he's not sure, and I encourage it.

    In this case, however, there are ways for you to decide if the program is safe without having to trust me. First of all, you can read it. Unlike an application that download you and click to start, it is transparent, anyone familiar with the code can check what it does.

    You may not be able to understand the script yourself. But variations of it have been posted on this site several times over a period of years. One of the million registered users to have read the script and set off the alarm if it was dangerous. Then I wouldn't be here now, and you would not be reading this message. See, e.g., this discussion.

    However, if you cannot satisfy yourself that these instructions are safe, do not follow them. Ask other solutions.

    4. here is a general summary of what you need to do, if you decide to go forward:

    ☞ Copy text from a particular web page (not this one) to the Clipboard.

    ☞ Paste into the window to another application.

    ☞ Wait for the test to run. It usually takes a few minutes.

    ☞ Stick the results, which will be copied automatically, in a response on this page.

    These are not specific instructions; just a glimpse. The details are in parts 7 and 8 of this comment. The sequence is: copy, paste, wait and paste it again. You don't need to copy a second time.

    5. try to test in conditions that replicate the problem, to the extent possible. For example, if the computer is slow intermittently, run the test during a downturn.

    You may have started up in safe mode. If the system is now in safe mode and works pretty well in normal mode to test run, restart as usual before running it. If you can test only in safe mode, this.

    6. If you have more than one user and a user is affected by the problem, and the user is not an administrator, and then run the test twice: once under the affected user and one administrator. The results can be different. The user that is created automatically on a new computer, when you start it for the first time is an administrator. If you are unable to log in as an administrator, verify that the user concerned. More personal Mac have only one user, and in this case this section does not apply. Don't log in as root.

    7 load the linked web page (the site "Pastebin") in Safari. Press the combination of keys command + A to select all the text, then copy it to the Clipboard by pressing command-C.

    8. start the Terminal application integrated in one of the following ways:

    ☞ Enter the first letters of his name ("Terminal") in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    Click anywhere in the Terminal window to activate it. Paste from the Clipboard into the window by pressing Command + V, then press return. The text that you pasted should disappear immediately.

    9. If you logged in as an administrator, you will be prompted for your login password. Nothing displayed when you type. You won't see the usual points instead of the characters typed. Make sure that caps lock is turned off. Type carefully, and then press return. You can get a warning to be careful. If you make three unsuccessful attempts to enter the password, the test is still running, but it will produce less information. If you do not know the password, or if you prefer not to enter, just press back three times at the password prompt. Yet once again, the script will run.

    If the test takes much longer that usual to run because the computer is very slow, you can be prompted for your password a second time. The permission you grant by entering it will expire automatically after five minutes.

    If you are not logged as an administrator, you will be prompted for a password. The test will run. It just will not do anything that requires administrator privileges.

    10. the test may take a few minutes to run, depending on the number of files you have and the speed of the computer. A computer that is abnormally slow may take more time to run the test. During execution, a series of lines is displayed in the Terminal window like this:

        Test started
            Part 1 of 4 done at: … sec        …        Part 4 of 4 done at: … sec
        The test results are on the Clipboard.
        Please close this window.

    The intervals between the parties will not be exactly the same, but they give an approximate indication of progress.

    Wait for the final message "Please close this window" appear - again, usually within a few minutes. If you don't see this message in about 30 minutes, the test probably won't be completed within a reasonable time. In this case, press the Ctrl + C key combination or the point command to stop it. Then go to the next step. You will have incomplete results, but still something.

    In order to get results, the test should be allowed to perform or be stopped manually as shown above. If you close the window of the Terminal, while the test is still running, the partial results will not be saved.

    11. when the test is completed, or if you manually stopped, leaving the Terminal. The results have been saved to the Clipboard automatically. They do not appear in the Terminal window. Please do not copy from there. All you have to do is start a response to this comment and then paste it again by pressing Command-V.

    At the top of the results, there will be a line that begins with the words «Start time.» If you do not see that, but rather to see a mass of gibberish, you wait for the message "close this window". Please wait and try again.

    If personal information, such as your name or e-mail address, appear in the results, make anonymous before posting. Usually it will be not necessary.

    12. in the validation of the results, you see an error message on the web page: "you have included content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the software which manages this website. Thanks for posting the results of the tests on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

    13. When you are finished with the test, it is gone. There is nothing to uninstall or clean.

    14. This is a public forum and others can give you advice based on the results of the test. They speak for themselves, not for me. The test itself is harmless, but all that you can not be. For others who choose to run it, I do not recommend that you view the results of test on this Web site unless I ask.

    15. the related UNIX shell script is a notice of copyright. ASC readers can copy for their personal use. The whole nor any part can be redistributed.

Maybe you are looking for

  • Im going to buy Lenovo Ideapad Z510

    Hello guys, Im going to buy Z510 I7, 8G, computer laptop 1 TB and I have a question about the battery 4 cells if can I replace it with 6, 8, 12 cell battery or not? Lenovo thanks

  • Laptop 15 R-063tu: black screen occurs for a few seconds when the charger is connconnected

    Mr President, there are a lot of problems occurred after the upgrade to windows 10 but I have a lot of them except that, when plugged into the charger for my laptop on the screen goes black for a few seconds(3-4) and even when I plugged. He was faile

  • product key is missing.

    My computer crashed because something has been erased on a dll file. So I had a disc to download windows vista again. He says that my hard disk drive is damaged and I can't get in this hard drive to get my old key code. Which is vista. I have 8 days

  • Driver card CODE 31 and unable to update the video.

    Original title: why I'm unable to update my video driver I just added a new driver of "Adding of MATERIAL LEGACY" Intel(r) G35 Express Chipset Family (Microsoft Corporation - WDDM 1.1) but it does not work and it is showing a yellow mark "Code 31" Pl

  • Cisco second leap SCV Bug - workaround other solutions possible

    Can we change the NTP server to a non-existent IP address or block access to the NTP server to work around the Bug below. Upgrade or a planned restart seems not feasible. Please suggest Update the zone data to include adding that second leap introduc