WebService bad element / not resolvable

Hi,
I am trying to connect to a web service I have built with
Java. When I send my web service request from Flex, I get the
following error:
[WSDLError faultString="Element
http://geovista.psu.edu/campus:generateListImage
not resolvable" faultCode="WSDL.BadElement" faultDetail="null"]
at mx.rpc.soap::WSDLParser/
http://www.adobe.com/2006/flex/mx/internal::parseMessage()
at mx.rpc.soap::WSDLOperation/parseMessages()
at mx.rpc.soap::Operation/
http://www.adobe.com/2006/flex/mx/internal::invokePendingCall()
at mx.rpc.soap::Operation/
http://www.adobe.com/2006/flex/mx/internal::invokeAllPending()
at mx.rpc.soap::WebService/::unEnqueueCalls()
at mx.rpc.soap::WebService/
http://www.adobe.com/2006/flex/mx/internal::wsdlHandler()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.rpc.soap::WSDLParser/dispatchEvent()
at mx.rpc.soap::WSDLParser/::parseCompleted()
I have read that this may be because Flex does not support
import statements in the wsdl file. I am wondering if this is true
or if I should be looking at another reason why my web service
request is not working? If this is true, does anyone know of a
workaround?
Thanks,
Scott

Hello, everyone.
(First, I'm sorry my poor English....
Recentry, I saw the same situation.
In my case, this error happends when the target WebService is
based on
.NET, using SQL Server & SQLXML3.0.
I've been provided my WebServices based on these technology,
and had no problem when I used
Flex1.5 and Flex2.0.
After updating my Flex Builder to
2.0.1, this error happends.
(I tried to test the same applications compiled by Flex
Builder2.0 and Flex Builder 2.0.1, then, only the later one has the
problem.)
I find that only the "First" send is failed and any data is
not send to the server.
But the later send requests are not failed.
So that I handle this problem with retrying when exception is
happened.
Like this:
<mx:Webservice id="ws" .../>
try {
ws.send();
} catch (e:Error) {
// retry!
ws.send();
I wonder why this trouble comes after using Flex Builder
2.0.1 and why another webservice are not failed....
It seems this is caused from WSDL format but the WSDL is
auto-generated by SQLXML, so I have no way to change the WSDL.
Anyway, I manage to work my application like above.
I hope this post is any help for you......

Similar Messages

  • WebService Response not resolvable

    When my webservice run send(), it returns the following error
    [WSDLError faultString="Element
    http://tempuri.org/dcli.xsd:dgInfoWrapper
    not resolvable" faultCode="WSDL.BadElement" faultDetail="null"]
    But dgInfoWrapper is the response element. Why
    myWebService.send() requires the response element.
    <element name="dgInfoWrapper">

    <complexType>

    <sequence>
    <element name="vecDgInfo" type="dcli:dgInfoOutArray"
    minOccurs="1" maxOccurs="1" nillable="false"/>
    <element name="result" type="dcli:cmdResult" minOccurs="1"
    maxOccurs="1"/>
    </sequence>
    </complexType>
    </element>
    operation name="getHostsByDg">
    <documentation>Service definition of function
    dcli__getHostsByDg</documentation>
    <input message="tns:getHostsByDg"/>
    <output message="tns:dgInfoWrapper"/>
    </operation>
    Thanks in advance for any help.

    Hi,
    To begin troubleshooting, you may check any monthly applications' running like update or anti-virus.
    Thanks,
    Gordon

  • Bad public user name or password. ORA-12154: TNS:could not resolve the conn

    I tried by all means to resolve the issue, but still i am not able to configure P6 professional to my existing database.
    I am always getting error " *Bad public user name or password. ORA-12154: TNS:could not resolve the connect identifier specified*".
    I am able to connect to database using pubuser or privuser via CMD.
    I also tried through Net Configuration Assistance but no success.
    Plz help me in this issue.

    resolved

  • Could not resolve mx:DataGrid to a component implementation

    I'm very new at this. Building a mobile app. Running the latest Flex/FlashBuilder (4.6). When I compile I get this error: "could not resolve <mx:DataGrid> to a component implementation". Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- dpcontrols/DataGridPassData.mxml -->
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        title="Jobs List">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.*;
                                  private var DGArray:Array = [
                                            {Lease:'Bagby Heirs', Well:'1', Location:'Quitman', Customer:'Fair Oil Company', ScheduleDate:'2/23/2012', ServiceDate:'5/16/2012'},
                                            {Lease:'ITU', Well:'301', Location:'Ingram Trinity', Customer:'Southwest Operating, Inc.', ScheduleDate:'3/19/2012', ServiceDate:'4/25/2012'},
                                            {Lease:'ITU', Well:'81', Location:'ITU', Customer:'Southwest Operating, Inc.', ScheduleDate:'3/19/2012', ServiceDate:'4/25/2012'},
                                            {Lease:'Tolliver A', Well:'5', Location:'Turner Town', Customer:'SEDI', ScheduleDate:'4/16/2012', ServiceDate:'5/11/2012'},
                                            {Lease:'W R Cady', Well:'1', Location:'Coffield', Customer:'Green River Resource', ScheduleDate:'5/9/2012', ServiceDate:'4/10/2012'},
                                            {Lease:'Royal National Bar', Well:'2', Location:'Coffield', Customer:'Green River Resource', ScheduleDate:'5/9/2012', ServiceDate:'4/10/2012'},
                                            {Lease:'Pan American L', Well:'1', Location:'Chandler', Customer:'East Texas Oil & Gas', ScheduleDate:'5/14/2012', ServiceDate:'6/8/2012'},
                                            {Lease:'Paluxy B Sand', Well:'5', Location:'West Tyler', Customer:'Culver & Cain', ScheduleDate:'6/1/2012', ServiceDate:'5/25/2012'},
                                            {Lease:'Wh Pittman Hei', Well:'2', Location:'Quitman', Customer:'Southwest Operating, Inc.', ScheduleDate:'7/10/2012', ServiceDate:'6/18/2012'},
                                            {Lease:'Vivian Pruitt', Well:'1', Location:'Crow - Hwy 80M', Customer:'Buffco Productions, Inc.', ScheduleDate:'8/7/2012', ServiceDate:'8/29/2012'}
                                  [Bindable]
                                  public var initDG:ArrayList;
                                  //Initialize initDG ArrayList variable from the Array.
                                  //If you use this technique to process an HTTPService,
                                  //WebService, or RemoteObject result, use an ArrayCollection
                                  //rather than an ArrayList.
                                  public function initData():void {
                                            initDG=new ArrayList(DGArray);
                        ]]>
              </fx:Script>
              <!--s:states>
              <s:State name="loginState"/>
              <s:State name="State1"/>
              </s:states-->
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
                          <fx:Component className="AlertMsgDay">
                                  <s:SkinnablePopUpContainer x="70" y="300">
                                            <s:TitleWindow title="Filtering" close="close()">
                                                      <s:VGroup horizontalAlign="center" paddingTop="8" paddingBottom="8" paddingLeft="8" paddingRight="8" gap="5" width="100%">
                                                                <s:Label text="This button will filter jobs to show only TODAY."/>
                                                                <s:Button label="OK" click="close()"/>
                                                      </s:VGroup>
                                            </s:TitleWindow>
                                  </s:SkinnablePopUpContainer>
                        </fx:Component>
                        <fx:Component className="AlertMsgWeek">
                                  <s:SkinnablePopUpContainer x="70" y="300">
                                            <s:TitleWindow title="Filtering" close="close()">
                                                      <s:VGroup horizontalAlign="center" paddingTop="8" paddingBottom="8" paddingLeft="8" paddingRight="8" gap="5" width="100%">
                                                                <s:Label text="This button will filter jobs to show only THIS WEEK."/>
                                                                <s:Button label="OK" click="close()"/>
                                                      </s:VGroup>
                                            </s:TitleWindow>
                                  </s:SkinnablePopUpContainer>
                        </fx:Component>
              </fx:Declarations>
              <s:BorderContainer x="10"  y="111" borderColor="#808080" cornerRadius="5" borderWeight="2" width="98%" height="369">
                        <s:Scroller width="100%" height="363" verticalScrollPolicy="on">
                                  <s:Group width="100%" height="100%">
                                            <mx:DataGrid id="myGrid" width="900" height="350" dataProvider="{initDG}" >  <<<< THE ERROR IS HERE
                                                      <mx:columns>
                                                                <mx:DataGridColumn dataField="Lease" />
                                                                <mx:DataGridColumn dataField="Well" />
                                                                <mx:DataGridColumn dataField="Location" />
                                                                <mx:DataGridColumn dataField="Customer" />
                                                                <mx:DataGridColumn dataField="ScheduleDate" headerText="Schedule Date" />
                                                                <mx:DataGridColumn dataField="ServiceDate" headerText="Service Date" />
                                                      </mx:columns>
                                            </mx:DataGrid>
                                  </s:Group>
                        </s:Scroller>
              </s:BorderContainer>
              <s:Label x="10" y="10" width="96" height="53" fontSize="24" text="Sort by:"
                                   verticalAlign="middle"/>
              <s:Button id="btn_show_today" x="104" y="11" width="105" height="53" label="Today"
                                    fontSize="13" fontWeight="bold" click="(new AlertMsgDay()).open(this, false);"/>
              <s:Button id="btn_show_week" x="216" y="11" width="105" height="53" label="Week"
                                    fontSize="13" fontWeight="bold" click="(new AlertMsgWeek()).open(this, false);"/>
              <s:Button x="348" y="10" width="184" height="53" label="Edit this Job" fontSize="18" click="navigator.pushView(views.JobFormView);"/>
    </s:View>

    I'm very new at this. Building a mobile app. Running the latest Flex/FlashBuilder (4.6). When I compile I get this error: "could not resolve <mx:DataGrid> to a component implementation". Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- dpcontrols/DataGridPassData.mxml -->
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        title="Jobs List">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.*;
                                  private var DGArray:Array = [
                                            {Lease:'Bagby Heirs', Well:'1', Location:'Quitman', Customer:'Fair Oil Company', ScheduleDate:'2/23/2012', ServiceDate:'5/16/2012'},
                                            {Lease:'ITU', Well:'301', Location:'Ingram Trinity', Customer:'Southwest Operating, Inc.', ScheduleDate:'3/19/2012', ServiceDate:'4/25/2012'},
                                            {Lease:'ITU', Well:'81', Location:'ITU', Customer:'Southwest Operating, Inc.', ScheduleDate:'3/19/2012', ServiceDate:'4/25/2012'},
                                            {Lease:'Tolliver A', Well:'5', Location:'Turner Town', Customer:'SEDI', ScheduleDate:'4/16/2012', ServiceDate:'5/11/2012'},
                                            {Lease:'W R Cady', Well:'1', Location:'Coffield', Customer:'Green River Resource', ScheduleDate:'5/9/2012', ServiceDate:'4/10/2012'},
                                            {Lease:'Royal National Bar', Well:'2', Location:'Coffield', Customer:'Green River Resource', ScheduleDate:'5/9/2012', ServiceDate:'4/10/2012'},
                                            {Lease:'Pan American L', Well:'1', Location:'Chandler', Customer:'East Texas Oil & Gas', ScheduleDate:'5/14/2012', ServiceDate:'6/8/2012'},
                                            {Lease:'Paluxy B Sand', Well:'5', Location:'West Tyler', Customer:'Culver & Cain', ScheduleDate:'6/1/2012', ServiceDate:'5/25/2012'},
                                            {Lease:'Wh Pittman Hei', Well:'2', Location:'Quitman', Customer:'Southwest Operating, Inc.', ScheduleDate:'7/10/2012', ServiceDate:'6/18/2012'},
                                            {Lease:'Vivian Pruitt', Well:'1', Location:'Crow - Hwy 80M', Customer:'Buffco Productions, Inc.', ScheduleDate:'8/7/2012', ServiceDate:'8/29/2012'}
                                  [Bindable]
                                  public var initDG:ArrayList;
                                  //Initialize initDG ArrayList variable from the Array.
                                  //If you use this technique to process an HTTPService,
                                  //WebService, or RemoteObject result, use an ArrayCollection
                                  //rather than an ArrayList.
                                  public function initData():void {
                                            initDG=new ArrayList(DGArray);
                        ]]>
              </fx:Script>
              <!--s:states>
              <s:State name="loginState"/>
              <s:State name="State1"/>
              </s:states-->
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
                          <fx:Component className="AlertMsgDay">
                                  <s:SkinnablePopUpContainer x="70" y="300">
                                            <s:TitleWindow title="Filtering" close="close()">
                                                      <s:VGroup horizontalAlign="center" paddingTop="8" paddingBottom="8" paddingLeft="8" paddingRight="8" gap="5" width="100%">
                                                                <s:Label text="This button will filter jobs to show only TODAY."/>
                                                                <s:Button label="OK" click="close()"/>
                                                      </s:VGroup>
                                            </s:TitleWindow>
                                  </s:SkinnablePopUpContainer>
                        </fx:Component>
                        <fx:Component className="AlertMsgWeek">
                                  <s:SkinnablePopUpContainer x="70" y="300">
                                            <s:TitleWindow title="Filtering" close="close()">
                                                      <s:VGroup horizontalAlign="center" paddingTop="8" paddingBottom="8" paddingLeft="8" paddingRight="8" gap="5" width="100%">
                                                                <s:Label text="This button will filter jobs to show only THIS WEEK."/>
                                                                <s:Button label="OK" click="close()"/>
                                                      </s:VGroup>
                                            </s:TitleWindow>
                                  </s:SkinnablePopUpContainer>
                        </fx:Component>
              </fx:Declarations>
              <s:BorderContainer x="10"  y="111" borderColor="#808080" cornerRadius="5" borderWeight="2" width="98%" height="369">
                        <s:Scroller width="100%" height="363" verticalScrollPolicy="on">
                                  <s:Group width="100%" height="100%">
                                            <mx:DataGrid id="myGrid" width="900" height="350" dataProvider="{initDG}" >  <<<< THE ERROR IS HERE
                                                      <mx:columns>
                                                                <mx:DataGridColumn dataField="Lease" />
                                                                <mx:DataGridColumn dataField="Well" />
                                                                <mx:DataGridColumn dataField="Location" />
                                                                <mx:DataGridColumn dataField="Customer" />
                                                                <mx:DataGridColumn dataField="ScheduleDate" headerText="Schedule Date" />
                                                                <mx:DataGridColumn dataField="ServiceDate" headerText="Service Date" />
                                                      </mx:columns>
                                            </mx:DataGrid>
                                  </s:Group>
                        </s:Scroller>
              </s:BorderContainer>
              <s:Label x="10" y="10" width="96" height="53" fontSize="24" text="Sort by:"
                                   verticalAlign="middle"/>
              <s:Button id="btn_show_today" x="104" y="11" width="105" height="53" label="Today"
                                    fontSize="13" fontWeight="bold" click="(new AlertMsgDay()).open(this, false);"/>
              <s:Button id="btn_show_week" x="216" y="11" width="105" height="53" label="Week"
                                    fontSize="13" fontWeight="bold" click="(new AlertMsgWeek()).open(this, false);"/>
              <s:Button x="348" y="10" width="184" height="53" label="Edit this Job" fontSize="18" click="navigator.pushView(views.JobFormView);"/>
    </s:View>

  • Yes i keep ashing the same question i keep getting the same answer and it is not resolving the problem

    YES I KEEP ASKING THE SAME QUESTION I KEEP GETTING THE SAME ANSWER AND IT IS NOT RESOLVING THE PROBLEM AND CHAT KEEPS SENDING ME BACK TO THE FORUMS THEY SAY THEIR EXPERTS WILL BE ABLE TO RESOLVE THE PROBLEM BUT IT IS NOT RESOLVED YET I KEEP GETTING THE SAME ANSWER FROM FORUM EXPERTS WELL THAT IS NOT WORKING I NEED A SOLUTION THAT WILL WORK I PAID FOR THIS AND I WANT TO USE IT BUT I CANNOT
    TRYING TO ACTIVATE A trial version of photoshop elements 7.0 disc worked till in the middle got an erroe fur and animalskin file missing checked dvd and it had a scratch so 3 times i downloaded a trial version of photoshop elements 7.0 from adobe.com but when try to activate get invalid serial number the website said have your serial number ready to activate which i do because i am getting it right from the dvd case it is registered i am signed in and chat just keeps telling me it is too old try the forums which i have many times with no resolution but they mark it as assumed resolved premeir elements 7.0 from the same dvd case is on why can't i activate trial version of photoshop elements 7.0 my computer crashed and i had to restore then i am now trying to put the programs
    maybe i can buy or exchange the dvd of photoshop elements 7.0 without because my serial number is good so i maybe just need a new disc being this disc is scratched i've got 40 to 50 hours into this 1 trial version of photoshop elements 7.0 more than i have in the whole computer restore and all the other programs i have restored have windows xp service pack 3 or 3.5 and net framework 4.0 and all the important and required updates i also have an open case which i am getting no where either case #213952591 which i responded to within 4 days as not resolved but i am still getting no help activating this trial version of photoshop elements 7.0
    24 Views
    Tags:

    YES I KEEP ASKING THE SAME QUESTION I KEEP GETTING THE SAME ANSWER AND IT IS NOT RESOLVING THE PROBLEM AND CHAT KEEPS SENDING ME BACK TO THE FORUMS THEY SAY THEIR EXPERTS WILL BE ABLE TO RESOLVE THE PROBLEM BUT IT IS NOT RESOLVED YET I KEEP GETTING THE SAME ANSWER FROM FORUM EXPERTS WELL THAT IS NOT WORKING I NEED A SOLUTION THAT WILL WORK I PAID FOR THIS AND I WANT TO USE IT BUT I CANNOT
    TRYING TO ACTIVATE A trial version of photoshop elements 7.0 disc worked till in the middle got an erroe fur and animalskin file missing checked dvd and it had a scratch so 3 times i downloaded a trial version of photoshop elements 7.0 from adobe.com but when try to activate get invalid serial number the website said have your serial number ready to activate which i do because i am getting it right from the dvd case it is registered i am signed in and chat just keeps telling me it is too old try the forums which i have many times with no resolution but they mark it as assumed resolved premeir elements 7.0 from the same dvd case is on why can't i activate trial version of photoshop elements 7.0 my computer crashed and i had to restore then i am now trying to put the programs
    maybe i can buy or exchange the dvd of photoshop elements 7.0 without because my serial number is good so i maybe just need a new disc being this disc is scratched i've got 40 to 50 hours into this 1 trial version of photoshop elements 7.0 more than i have in the whole computer restore and all the other programs i have restored have windows xp service pack 3 or 3.5 and net framework 4.0 and all the important and required updates i also have an open case which i am getting no where either case #213952591 which i responded to within 4 days as not resolved but i am still getting no help activating this trial version of photoshop elements 7.0
    24 Views
    Tags:

  • WBS Elements not getting created in ECC Project System from CRM 7.0

    Dear all,
    We are trying to integrate SAP CRM 7.0 with SAP ECC-PS module. The objective is to bring in the marketing plan and elements data from the CRM system, and to create the corresponding WBS in project system. We have done most of the configuration as recommended by SAP in both the systems, and we see that the BDOCS are getting generated and sent to the ECC system. The following steps have been successfully completed:
    1.       Set up the RFC connections between the two systems
    2.       Selected the connection type as Middleware in CRM system.
    3.       Installed the cProject Add on in CRM box.
    4.       Created a project scenario (with project and network profiles) in the PS system and assigned the same in the CRM system.
    5.       The Project Scenario in PS config has the same name as the Project Type in CRM config.
    6.       Created and released the campaign ids being created in the CRM system.
    As already mentioned, we can see that the BDOCS are coming to the ECC system and are getting stored in BDOC_TRACK table. However the issue is that the corresponding WBS elements are not getting generated in the ECC system. Is there anything that that we are missing in the ECC box which would trigger the WBS element creation?
    Request you all to share your inputs which would be immensely beneficial for us in achieving this integration.
    Thanks and Kind Regards,
    Aditya Shrivastava

    Hello Aditya,
    We too are facing this issue.. if you have resolved the issue could you please let us know the solution ?
    Some inputs related to our system,
    We have upgrade from CRM 4.0 to CRM 7.0 SP07 and R/3 backend system is on 4.7 SP27, earlier we have completed the upgrade on sandbox without any issues which was upgrade to CRM 7.0 SP04 but with SP07 we are facing the problem of WBS Element not getting created in R/3.
    Your help is highly appreciated.
    Thanks & Regards,
    Sumukh Kapoor.

  • Could not resolve fx:Script (or fx: Declarations to a component implementation

    Hi,
    I am trying to compile a file into swf using mxmlc in command line.  When it is a very simple mxml, compile is successful. But when the file  contaion the fx name space, I get a compile error like: could not  resolve COMPONENT_NAME to a component implementation.
    I have to be able to do this, without the help of Flash Builder  because I am working on a project where I will need to generate swf  files from mxml files  which we generate the code of.
    I tried it with SDK version 4.0.0.,  version 4.1.0 build 16076 and 4.5.0. build 20967. And I also tried it in 3 different computers. Note: Our notebooks has Windows 7 OS - locale:Turkish.
     I read that this error is specific to some locales like Turkish here: http://forums.adobe.com/message/892431#892431, . But I couldnt find the solution.
    Any suggestions?
    The simple code I am trying to compile is(which is generated by Flash Builder 4 and can be compiled there):
    <?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:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    </s:Application>

    Could you please file a bug at http://bugs.adobe.com/jira with sample code that fails to compile on a Turkish system, so that we can track this problem and fix it in a future release?
    Gordon Smith
    Adobe Flex SDK Team

  • Element not found when duplicating "Basic EFS" template

    I've been trying to duplicate the Basic EFS template as either a Windows 2003 or 2008
    template and everytime I use the new template via GPO to encrypt (EFS) any files/folder, I keep getting the "Element Not Found" error.  I've looked all over event logs and can not find any errors that will point me in the right direction to
    troubleshoot this issue.  I noticed it will only work if I use the Basic EFS template.  I've Google and have found several forum posts that states to duplicate the Basic EFS template as a Windows 2003 template to fix this problem, but I'm still getting
    the same error.  Any help is appreciated.  
    Thank you.

    Does it also fail if you start from a fresh user profile (no previous attempts to encrypt or enrol for certificates using any template)? This is to rule out any effects of caching anything, such thumbprints of EFS certificates used before
    in the registry.
    I would in particular repeat a test with a fresh profile and a W2K3 template after AD replication and GPO refresh has been done - I still think the most likely explanation is still that the client actually tried to use a W2K8 template which
    was still cached.
    After you created the W2K3 template - did you make any changes to the CSP / cryptography after you had copied Basic EFS? Which provider do you use - I guess it should be Enhanced or Strong provider?
    Otherwise, I would probably compare all Object Access events for Basic EFS and for the other templates, and look for things like failed attempts to access key files. If there is nothing promising there, rather use
    Process Monitor (Sysinternals) to compare "good" and "bad" encryption.
    I admit that these tools are quite overwhelming and require some practice but I think I have exhausted all other ideas.
    Elke

  • Error: Could not resolve s:SolidColor to a component implementation

    So I have a library project and in that project I have a CustomDataGridBackgroundSkin file which is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx"
                 minWidth="25" minHeight="25">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <!-- layer 4: fill highlight -->
        <s:Rect left="0" right="0" top="0" height="100%" >
            <s:fill>
                <spark:SolidColor color="0x968f89" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:SparkSkin>
    I am simply trying to get an ant task to compile this library to SWC, but I am getting a " Error: Could not resolve <s:SolidColor> to a component implementation" error during compile.  The only way to fix it is to add these lines of code (bold).
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx"
                xmlns:spark="mx.graphics.*"
                 minWidth="25" minHeight="25">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <!-- layer 4: fill highlight -->
        <s:Rect left="0" right="0" top="0" height="100%" >
            <s:fill>
                <spark:SolidColor color="0x968f89" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:SparkSkin>
    I can also get this error to go away if I put this line in my build.xml file: "<include-sources dir="${src.dir}" includes="*"/>"
    But then I get this error => "[compc] Error: Unsupported file type: C:\dev_projects\features\flex4version\web\OneVoice\src\components.xml"
    components.xml is my manifest file.
    Anyone know what the issue is?  Why would I need the xmlns:spark="mx.graphics.*" namespace when I have xmlns:s="library://ns.adobe.com/flex/spark"?

    Curious. Which version of the Flex SDK are you using?
    Does this work if you try in a brand new project using Flex 4.1 or Flex Hero?
    <?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:mx="library://ns.adobe.com/flex/mx">
        <s:controlBarContent>
            <s:Button label="goto s1" click="currentState = 's1';" />
            <s:Button label="goto s2" click="currentState = 's2';" />
            <s:Button id="sdkVer" initialize="sdkVer.label = mx_internal::VERSION;" click="System.setClipboard(sdkVer.label);" />
        </s:controlBarContent>
        <s:states>
            <s:State name="s1" />
            <s:State name="s2" />
        </s:states>
        <s:Rect left="30" right="20" top="20" bottom="30" >
            <s:fill>
                <s:SolidColor color="0x968f89" color.s2="haloOrange" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:Application>
    Peter

  • Could not resolve mx:horizontalAxisRenderers to a component implementation

    Hi,
        When I  running the following code
    mx:horizontalAxisRenderers>
                <comp:ScrollableAxisRenderer id="scrollAxisRenderer" axis="{t_value}" tickPlacement="none"   placement="bottom"
                        labelGap="3"  maxVisibleColumns="8"   />
            </mx:horizontalAxisRenderers>
                             in my application I get the below error
    Severity and Description    Path    Resource    Location    Creation Time    Id
    Could not resolve <mx:horizontalAxisRenderers> to a component implementation.
    Any help on this please do mail
    Regards
    Kalavati Singh
    [email protected]

    Kalavati,
    I replied to this under the thread name "Component Implementation problem" where yuo posted the same question. In case you missed that, my answer was:
    horizontalAxisRenderers is a property of CartesianChart (and hence of course any descendants). In the example under the AxisRenderer class in the Adobe docs it shows how <mx:horizontalAxisRenderers> is used as an array container for the actual renderer itself
    <mx:AxisRenderer axis="{haxis}" canDropLabels="true"/>
    In terms of designing an MXML file you can only legally add the <mx:horizontalAxisRenderers> element within a chart of some kind. Personally I find it easier to think of the class structure by thinking about how to do it in ActionScript. Here you would create your actual renderer object of type AxisRenderer, then create an ordinary Array and push the new AxisRenderer into it, then set the horizontalAxisRenderersproperty of your chart to opint to the Array. So horizontalAxisRenderers is "secretly" just an array, not anything with real functionality.
    Richard

  • Could not resolve s:ViewNavigatorApplication to a component implementation

    Hi,
    I am getting this error while building my Flex mobile project using ant build. It compiles preopely through flash Builder but gives the error : "Could not resolve <s:ViewNavigatorApplication> to a component implementation" when compiling with ant. I am using the config file airmobile-config.mxml . Here is my build script mcmlc task is below:
    <mxmlc file="${Src.dir}/${Application.name}.mxml" incremental="false" actionscript-file-encoding="UTF-8"
                 output="${Deploy.dir}/${Application.name}.swf" debug="${Debug.Boolean}" keep-generated-actionscript="false">
                 <load-config filename="${FLEX_HOME}/frameworks/airmobile-config.xml" />
                 <compiler.source-path path-element="${Src.dir}" />
              <source-path path-element="${externalLib.dir}/libraries/CommonMobile/src"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/mobile" includes="mobilecomponents.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/air" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/automation" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/mx" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/player" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/locale/en_US" append="true"/>
              <library-path dir="${externalLib.dir}/libraries/external/robotlegs/1.4.0/bin" includes="robotlegs-framework-v1.4.0.swc" append="true"/>
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs" includes="fds.swc" append="true"/>  
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs/air" includes="airfds.swc" append="true"/>
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs" includes="fiber.swc" append="true"/>
              <library-path dir="${externalLib.dir}/libraries/CustomMobilelib/bin" includes="CommonMobile.swc" append="true"/>         
             </mxmlc>

    Thanks for the reply. I tried changing to the airmobile-config.xml but then I got the same error with a different componenet.
    Error: Could not resolve <r:QContainer> to a component implementation. <r:QContainer id="d">
    Could this related to a missing SWC from my build path do you think?

  • Could not resolve s:ViewNavigatorApplication to a component  implementation firstView="views.MyApp

    Hi,
    Am getting an error message Could not resolve <s:ViewNavigatorApplication> to a component  implementation firstView="views.MyAppHomeView"> Am trying the following mxml code.
    [exec] Loading configuration file C:\Program Files\Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-1.0.1\frameworks\air-config.xml    
    [exec] C:\MyApp\src\MyPBApp.mxml(7): Error: Could not resolve <s:ViewNavigatorApplication> to a component implementation.    
    [exec] firstView="views.MyAppHomeView">
    Here's my MyApp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:ViewNavigatorApplication
         xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
         firstView="views.MyAppHomeView">
         <fx:Style source="MyApp.css"/>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    </s:ViewNavigatorApplication>
    and, here's the compile target of my build file
    <target name="compile">
             <!-- Run the AIR compiler to compile the application, including the PlayBook SDK AIR config -->
                       <exec executable="${playbook-sdk}/bin/amxmlc.bat" dir="${src.dir}">
                            <arg value="-load-config"/>
                            <arg value="${playbook-sdk}/frameworks/air-config.xml"/>
                        <arg value="-swf-version=10"/>
                            <arg value="-source-path+=${src.dir}"/>
                            <arg value="-compiler.library-path+=${playbook-sdk}/frameworks/libs"/>
                            <arg value="-compiler.library-path+=${lib.dir}"/>
                            <arg value="-compiler.debug=false"/>
                            <arg value="-output"/>
                            <arg value="${build-dir}/${app-swf}"/>
                            <arg value="${src.dir}/${app-name}.mxml"/>
                       </exec>
        </target>
    Any ideas why it cannot find that componenet?

    Thanks for the reply. I tried changing to the airmobile-config.xml but then I got the same error with a different componenet.
    Error: Could not resolve <r:QContainer> to a component implementation. <r:QContainer id="d">
    Could this related to a missing SWC from my build path do you think?

  • XML-24521 Element not completed in oracle bpel - BPEL Test Case

    Hi All
    I created a baseline test for my bpel process which reads an image from one server and does ftp to another server. But this baseline test invalidates and giving
    following 2 errors
    Error(40,35): <Line 40, Column 35>: XML-24521: (Error) Element not completed: 'result'
    Error(41,52): <Line 41, Column 52>: XML-24521: (Error) Element not completed: 'clpRmsImageResponseElement'
    These two errors are complaining about the following two tags on the xml source of the baseline.xml
    *</ns0:result>*
    *</ns0:clpRmsImageResponseElement>*
    The xml source of baseline.xml is as follows.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELTest processName="MIBP_RMSImageTransfer"
    xmlns="http://xmlns.oracle.com/bpel/instancedriver">
    <initiate operation="initiate">
    <inboundMessage>
    <part name="payload">
    <content>
    <ns1:MIBP_RMSImageTransferProcessRequest xmlns:ns1="http://xmlns.monash.edu.au/its/MIBP_RMSImageTransfer">
    <ns1:Students>
    <ns1:Student_ID>10085998</ns1:Student_ID>
    </ns1:Students>
    </ns1:MIBP_RMSImageTransferProcessRequest>
    </content>
    </part>
    </inboundMessage>
    </initiate>
    <activityDriver name="getPersonImageFromWS" firstIteration="1"
    lastIteration="1">
    <emulate>
    <inboundMessage>
    <part name="parameters">
    <content>
    <ns0:clpRmsImageResponseElement xmlns:ns0="http://iascustom/CallistaPersonImageWS.wsdl/types/">
    <ns0:result>
    <ns0:pfaultobjOut xsi:type="ns0:FaulttypeUser"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns0:faultcode>0</ns0:faultcode>
    <ns0:faultdetail xsi:nil="1"/>
    <ns0:faultsummary xsi:nil="1"/>
    </ns0:pfaultobjOut>
    <ns0:pimgobjOut xsi:type="ns0:RmsimageresponseUser"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns0:personimage>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</ns0:personimage>
    <ns0:imagedt>2009-04-01T11:09:30.000+10:00</ns0:imagedt>
    <ns0:personid>10085998</ns0:personid>
    </ns0:pimgobjOut>
    </ns0:result>
    </ns0:clpRmsImageResponseElement>
    </content>
    </part>
    </inboundMessage>
    </emulate>
    </activityDriver>
    <activityDriver name="personImageToBasil2" firstIteration="1"
    lastIteration="1">
    <emulate/>
    </activityDriver>
    <activityDriver name="personImageToBasil1" firstIteration="1"
    lastIteration="1">
    <emulate/>
    </activityDriver>
    <activityDriver name="callbackClient" firstIteration="1" lastIteration="1">
    <emulate/>
    </activityDriver>
    </BPELTest>
    Please help me to resolve this.
    Thanks
    Jamith

    Hi All
    I created a baseline test for my bpel process which reads an image from one server and does ftp to another server. But this baseline test invalidates and giving
    following 2 errors
    Error(40,35): <Line 40, Column 35>: XML-24521: (Error) Element not completed: 'result'
    Error(41,52): <Line 41, Column 52>: XML-24521: (Error) Element not completed: 'clpRmsImageResponseElement'
    These two errors are complaining about the following two tags on the xml source of the baseline.xml
    *</ns0:result>*
    *</ns0:clpRmsImageResponseElement>*
    The xml source of baseline.xml is as follows.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELTest processName="MIBP_RMSImageTransfer"
    xmlns="http://xmlns.oracle.com/bpel/instancedriver">
    <initiate operation="initiate">
    <inboundMessage>
    <part name="payload">
    <content>
    <ns1:MIBP_RMSImageTransferProcessRequest xmlns:ns1="http://xmlns.monash.edu.au/its/MIBP_RMSImageTransfer">
    <ns1:Students>
    <ns1:Student_ID>10085998</ns1:Student_ID>
    </ns1:Students>
    </ns1:MIBP_RMSImageTransferProcessRequest>
    </content>
    </part>
    </inboundMessage>
    </initiate>
    <activityDriver name="getPersonImageFromWS" firstIteration="1"
    lastIteration="1">
    <emulate>
    <inboundMessage>
    <part name="parameters">
    <content>
    <ns0:clpRmsImageResponseElement xmlns:ns0="http://iascustom/CallistaPersonImageWS.wsdl/types/">
    <ns0:result>
    <ns0:pfaultobjOut xsi:type="ns0:FaulttypeUser"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns0:faultcode>0</ns0:faultcode>
    <ns0:faultdetail xsi:nil="1"/>
    <ns0:faultsummary xsi:nil="1"/>
    </ns0:pfaultobjOut>
    <ns0:pimgobjOut xsi:type="ns0:RmsimageresponseUser"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns0:personimage>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</ns0:personimage>
    <ns0:imagedt>2009-04-01T11:09:30.000+10:00</ns0:imagedt>
    <ns0:personid>10085998</ns0:personid>
    </ns0:pimgobjOut>
    </ns0:result>
    </ns0:clpRmsImageResponseElement>
    </content>
    </part>
    </inboundMessage>
    </emulate>
    </activityDriver>
    <activityDriver name="personImageToBasil2" firstIteration="1"
    lastIteration="1">
    <emulate/>
    </activityDriver>
    <activityDriver name="personImageToBasil1" firstIteration="1"
    lastIteration="1">
    <emulate/>
    </activityDriver>
    <activityDriver name="callbackClient" firstIteration="1" lastIteration="1">
    <emulate/>
    </activityDriver>
    </BPELTest>
    Please help me to resolve this.
    Thanks
    Jamith

  • Hi...Please help...Getting ORA 12154 TNS Listener could not resolve...

    Hi,
    I have just loaded Oracle 10g Rel 2 in Win 2003 Enterprise Edition.
    But when I try to connect to sqlplus, I am getting ORA -12154 : TNS: Listener could not resolve the connect identified specified.
    I have registered the database, the listener and tnsnames have been set correctly.
    I have also set the Oracle Home environment variable.
    Still getting the error.
    Any help will be highly appreciated.
    Thanks,

    I agree
    ORA-12145: (does not exist in the standard manuals)
    ORA-12154: TNS:could not resolve the connect identifier specified
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    ORA-12541: TNS:no listener
    It is pretty easy to fat-finger these 4 message numbers. As a result, when a person has the actual and complete error message and an error number for a different message, it is usually not a bad idea to use the actual message. (Based on transposing only 3 digits compared to typing over 50 characters correctly.)
    In this case the OP has really bollixed things: Subject implies a true 12154, text in the thread is an actual 12514 but mentions 12154.
    As a result, there are several potentially correct answers, depending on the interpretation of the question.
    - sb92075 gave the correct answer based on the number
    - I gave the correct answer based on the message in the thread
    - Anurag and Ed gave the correct answer based on 'the question is not formed correctly'
    Edited by: Hans Forbrich on Jan 24, 2010 7:13 AM
    (BTW - ORA-12415 and ORA-12451 are the other permutations ... described http://download.oracle.com/docs/cd/B19306_01/server.102/b14219/e12400.htm#sthref3357)

  • Method invokeMethod(java.lang.String, org.w3c.dom.Element) not found

    I am calling a Web Service that returns an XML-file. The XML-file should be passed to a method that puts the xml into a table in my database.
    I will upload the 3 files that are being used for this.
    When I rebuild my files I get the following error in CustomerCO.java:
    Error(78,38): method invokeMethod(java.lang.String, org.w3c.dom.Element) not found in interface oracle.apps.fnd.framework.OAApplicationModule
    Line 78 reads as follows:
    String Status = (String)am.invokeMethod("initSaveXml", wsXml);
    Any suggestions?
    PS: I am a newbie to java and framework :-(
    Here are my files:
    CustomerCO.java:
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package xxcu.oracle.apps.ar.customer.server.webui;
    import java.io.Serializable;
    import java.lang.Exception;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import org.w3c.dom.Element;
    import xxcu.oracle.apps.ar.customer.ws.LindorffWS;
    * Controller for ...
    public class CustomerCO extends OAControllerImpl implements Serializable
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    * 2009.07.09, Roy Feirud, lagt til for å utføre spørring
    if (pageContext.getParameter("Search") != null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    //Setter søkekriteriene til LindorffWS
    String Name = pageContext.getParameter("SearchName");
    String Address = pageContext.getParameter("SearchAddress");
    String Zip = pageContext.getParameter("SearchZipCode");
    String City = pageContext.getParameter("SearchCity");
    String Born = pageContext.getParameter("SearchBorn");
    String Phone = pageContext.getParameter("SearchPhoneNo");
    Serializable[] param = { Name, Address, Zip, City, Born, Phone };
    //Bygger søkestrengen
    String SearchString = (String)am.invokeMethod("initBuildString", param );
    //Initialiserer LindorffWS
    LindorffWS WsConnection = new LindorffWS();
    try
    //Kaller Web Sevice fra Lindorff
    Element wsXml = (Element)WsConnection.XmlFulltextOperator(SearchString);
    String Status = (String)am.invokeMethod("initSaveXml", wsXml);
    catch(Exception WsExp)
    // WsConnection = new LindorffWS();
    System.out.println("Kall til LindorffWS feilet!");
    am.invokeMethod("initQueryCustomer");
    CustomerAMImpl.java:
    package xxcu.oracle.apps.ar.customer.server;
    import java.io.Serializable;
    import java.sql.CallableStatement;
    import java.sql.SQLException;
    import java.sql.Types;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    import oracle.apps.fnd.framework.server.OAExceptionUtils;
    import org.w3c.dom.Element;
    // --- File generated by Oracle Business Components for Java.
    public class CustomerAMImpl extends OAApplicationModuleImpl implements Serializable
    * This is the default constructor (do not remove)
    public CustomerAMImpl()
    * Sample main for debugging Business Components code using the tester.
    public static void main(String[] args)
    launchTester("xxcu.oracle.apps.ar.customer.server", "CustomerAMLocal");
    * Container's getter for CustomerVO1
    public CustomerVOImpl getCustomerVO1()
    return (CustomerVOImpl)findViewObject("CustomerVO1");
    * 2009.07.09, Roy Feirud, Lagt til for å utføre spørring.
    public void initQueryCustomer()
    CustomerVOImpl vo = getCustomerVO1();
    if (vo!=null)
    vo.initQuery();
    * 2009.08.31, Roy Feirud, Lagt til for å bygge opp input til WebService hos Lindorff.
    public String initBuildString(String Name
    ,String Address
    ,String Zip
    ,String City
    ,String Born
    ,String Phone)
    String ws_string = null;
    CallableStatement cs = null;
    try
    String sql= "BEGIN ISS_WS_LINDORFF_PKG.BUILD_STRING (?,?,?,?,?,?,?); END;";
    OADBTransaction txn = getOADBTransaction();
    cs = txn.createCallableStatement(sql,1);
    cs.setString(1,Name);
    cs.setString(2,Address);
    cs.setString(3,Zip);
    cs.setString(4,City);
    cs.setString(5,Born);
    cs.setString(6,Phone);
    cs.registerOutParameter(7,Types.VARCHAR);
    cs.execute();
    OAExceptionUtils.checkErrors (txn);
    ws_string = cs.getString(7);
    cs.close();
    catch (SQLException sqle)
    String Prosedyre = "ISS_WS_LINDORFF_PKG.BUILD_STRING";
    String Errmsg = sqle.toString();
    MessageToken[] tokens = {new MessageToken("PROSEDYRE", Prosedyre), new MessageToken("ERRMSG", Errmsg)};
    throw new OAException("ISS", "ISS_PLSQL_ERROR",tokens,OAException.ERROR, null);
    return ws_string;
    public String initSaveXml(Element WsXml)
    String Status = "Error";
    CallableStatement cs = null;
    try
    String sql= "BEGIN ISS_XML2TABLE_PKG.ISS_AR_CUSTOMERS_TMP (?,?); END;";
    OADBTransaction txn = getOADBTransaction();
    cs = txn.createCallableStatement(sql,1);
    cs.setObject(1,WsXml);
    cs.registerOutParameter(2,Types.VARCHAR);
    cs.execute();
    OAExceptionUtils.checkErrors (txn);
    Status = cs.getString(2);
    cs.close();
    catch (SQLException sqle)
    String Prosedyre = "ISS_XML2TABLE_PKG.ISS_AR_CUSTOMERS_TMP";
    String Errmsg = sqle.toString();
    MessageToken[] tokens = {new MessageToken("PROSEDYRE", Prosedyre), new MessageToken("ERRMSG", Errmsg)};
    throw new OAException("ISS", "ISS_PLSQL_ERROR",tokens,OAException.ERROR, null);
    return Status;
    LindorffWS.java:
    package xxcu.oracle.apps.ar.customer.ws;
    import oracle.soap.transport.http.OracleSOAPHTTPConnection;
    //import org.apache.soap.encoding.soapenc.BeanSerializer;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    //import org.apache.soap.util.xml.QName;
    import java.util.Vector;
    import org.w3c.dom.Element;
    import java.net.URL;
    import org.apache.soap.Body;
    import org.apache.soap.Envelope;
    import org.apache.soap.messaging.Message;
    import oracle.jdeveloper.webservices.runtime.WrappedDocLiteralStub;
    * Generated by the Oracle9i JDeveloper Web Services Stub/Skeleton Generator.
    * Date Created: Fri Jul 10 10:37:21 CEST 2009
    * WSDL URL: http://services.lindorffmatch.com/Search/Search.asmx?WSDL
    public class LindorffWS extends WrappedDocLiteralStub
    public LindorffWS()
    m_httpConnection = new OracleSOAPHTTPConnection();
    public String endpoint = "http://services.lindorffmatch.com/Search/Search.asmx";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    private SOAPMappingRegistry m_smr = null;
    public Element XmlFulltextOperator(String xmlString) throws Exception
    URL endpointURL = new URL(endpoint);
    Envelope requestEnv = new Envelope();
    Body requestBody = new Body();
    Vector requestBodyEntries = new Vector();
    String wrappingName = "XmlFulltextOperator";
    String targetNamespace = "http://services.lindorffmatch.com/search";
    Vector requestData = new Vector();
    requestData.add(new Object[] {"xmlString", xmlString});
    requestBodyEntries.addElement(toElement(wrappingName, targetNamespace, requestData));
    requestBody.setBodyEntries(requestBodyEntries);
    requestEnv.setBody(requestBody);
    Message msg = new Message();
    msg.setSOAPTransport(m_httpConnection);
    msg.send(endpointURL, "http://services.lindorffmatch.com/search/XmlFulltextOperator", requestEnv);
    Envelope responseEnv = msg.receiveEnvelope();
    Body responseBody = responseEnv.getBody();
    Vector responseData = responseBody.getBodyEntries();
    return (Element)fromElement((Element)responseData.elementAt(0), org.w3c.dom.Element.class);
    _______________________________________________________________________________________________________________________________

    Hi,
    Create an Interface to your application Module then from interface call your method,
    refer http://www.oraclearea51.com/oracle-technical-articles/oa-framework/oa-framework-beginners-guide/213-how-to-call-am-methods-from-controller-without-using-invokemethod.html for creating Interface for AM and calling it in controller.
    Regards,
    Reetesh Sharma

Maybe you are looking for

  • Is it my hard disk?

    hey guys. ive got a problem. last night, my 1st gen macbook kind of hung while i was unzipping a 170mb zip file. the process got stuck with no progress and while the rest of the stuff was working, that process could not be cancelled, window could not

  • Timeline Changes don't apply

    Recently I've come across an issue I've never seen before. I drop a clip into a video track, trim it, change opacity fades and render - works fine. Then I tweak the opacity, filters etc., but the render bar doesn't turn orange and my changes won't pr

  • Serious service failure in zip code 70119 / 70122 at the New Orleans Jazz Fest Weekend 1

    I experienced total service failure in zip code 70119 & 70122 at the New Orleans Jazz Fest.  No send / receive of data, voice or text.  I use an iPhone 5s running the latest OS.  I had better service during all hurricanes, except Katrina, of course. 

  • Auto update problem in 1.5?

    -In 1.4.2, when we put a new jar on the web server, the next time we logged into an application using webstart, it would show the progress bar as it loaded the application. -In 1.5, the only way we can get the progress bar to show is if we delete tem

  • The mail user returns saying unknown user.

    I am trying to add a mail user to iplanet messaging server 5.1, I am able to configure that user from my mail client (outlook) but when i send mail to that user, it returns saying unknown user. I can see that user in LDAP data base.