Problem with Webservice Introspection Wizard in FB3 beta 2

The wizard finishes, and I have a nice set of AS classes from
the WSDL. However, when I try and use any of the classes, I get
compile errors all over the place.
Apparently, the wizard creates references to custom events in
the main service class like this:
* Dispatches when a call to the operation GetUserInfoEx
completes with success
* and returns some data
* @eventType GetUserInfoExSoapOutResultEvent
[Event(name="GetUserInfoExSoapOut_result",
type="GetUserInfoExSoapOutResultEvent")]
* Dispatches when a call to the operation FindUsers
completes with success
* and returns some data
* @eventType FindUsersSoapOutResultEvent
[Event(name="FindUsersSoapOut_result",
type="FindUsersSoapOutResultEvent")]
But, no supporting classes for the event types are generated.
So, I get errors when the main class tries to do stuff like:
* @see IADUtils#addGetUserInfoEx()
public function
addgetUserInfoExEventListener(listener:Function):void
addEventListener(GetUserInfoExSoapOutResultEvent.GetUserInfoExSoapOut_RESULT,listener);
* @private
private function
_GetUserInfoEx_populate_results(event:ResultEvent):void
var e:GetUserInfoExSoapOutResultEvent = new
GetUserInfoExSoapOutResultEvent();
e.result = event.result as Object;
getUserInfoEx_lastResult = e.result;
dispatchEvent(e);
The
addEventListener call and the
new GetUserInfoExSoapOutResultEvent generate errors because
the compiler doesn't know anything about the custom event types.
Is this a bug in the wizard, or am I supposed to code those
custom event classes myself? And, if I'm supposed to code the
custom events myself, are they just normal result events, or is
there some additional code I don't know about?
There doesn't seem to be any good documentation (flex docs,
tutorials, sample code, etc) on how to use the code generated by
the wizard. Does anyone know of any examples?
TIA,
Randy

Hi Randy,
This seems to be caused by a missing import in that class.
Try adding this line on top of the file (next to the other import
statements) and see if it solves the problem:
import mx.utils.ObjectProxy;
This should be fixed in the next release, but if you can file
a bug and attach the wsdl file so we can reproduce the bug and
confirm it does not happen anymore it would be very helpful.
Thanks,
Cristian

Similar Messages

  • Preloader with webservice (introspection wizard) please help!

    hi guys, im having some trouble with displaying either a preloader, dosent matter if its eiter indefinite or definite.
    This is the code i have for my webservice, and Mxml.
    PageEditor.mxml :
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" width="100%" height="100%"
         initialize="init();">
        <s:layout>
            <s:BasicLayout/>
        </s:layout>
        <fx:Script source="mainPageEditorScript.as" />
        <mx:HDividedBox width="100%" height="100%">
            <mx:DataGrid id="pageList" height="100%" width="200" dataProvider="{modules.PageEditor.pageEditor.pageListData}"
                    itemClick="{modules.PageEditor.pageEditor.getPageInfo(pageList.selectedItem.Key)}">
                <mx:columns>
                    <mx:DataGridColumn dataField="Value" />
                </mx:columns>
            </mx:DataGrid>
            <mx:VBox width="100%" height="100%">
                <mx:Accordion id="theAccordion" width="100%" height="100%">
                </mx:Accordion>
            </mx:VBox>
        </mx:HDividedBox>
    </s:Group>
    inside my pageEditor class i have
    pageEditor.as
    // ActionScript file
    package modules.PageEditor{
        import flash.display.Loader;
        import mainScript.mainList;
        import mx.collections.ArrayCollection;
        import mx.controls.Alert;
        import mx.rpc.events.FaultEvent;
        import mx.rpc.events.ResultEvent;
        import services.pages.*;
    //    import services.main.*;
        [Bindable] public class pageEditor{
            // variables
            public static var pageListData:ArrayCollection;
            public static var pageInfo:Object;
            public static var pageService:Pages = new Pages();
            public static var pageDetails:Pages = new Pages();
            public static var loading:Loader = new Loader();
            public static var isUpdated:Boolean = false;
            public static function init():void{
                pageService.addEventListener(ResultEvent.RESULT, resultReturn);
                pageService.showBusyCursor = true;
                pageService.addEventListener(FaultEvent.FAULT, faultEvent);
                pageService.GetSitePages(mainScript.mainList.siteId);
                //Alert.show("here");
            public static function resultReturn(event:ResultEvent):void{
                pageListData = event.result as ArrayCollection;
                isUpdated = false;
            public static function faultEvent(event:FaultEvent):void{
                Alert.show(event.fault.faultCode);
                Alert.show(event.fault.faultString);
            public static function getPageInfo(id:int):void{
                pageDetails.addEventListener(ResultEvent.RESULT, returnPageDetails);
                pageDetails.addEventListener(FaultEvent.FAULT, faultEvent);
                pageDetails.showBusyCursor = true;
                pageDetails.GetPage(id);
            public static function returnPageDetails(event:ResultEvent):void{
                //pageDetails.showBusyCursor = false;
                pageInfo = event.result;
    I just want a preloader to pop up once the DataGrid with Id : pageList  is clicked.because once the item is clicked, it calls another webservice.
    ive spent over a week trying ot figure this out, but with no avail!!
    please help

    Below is a simple app with a basic component that just flashes some text- hope this helps
    Also the app can be disabled {FlexGlobals.topLevelApplication.enabled=false;} i commented this out in the code as it obviously won't allow you to press buttons
    You could read up on popupmanager if you want to get into modal style window/dialog boxes.
    David.
    The App---
    <?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/halo" width="385" height="400">
         <fx:Script>
              <![CDATA[
                   private var PreLoad:waitLoad = new waitLoad();
                   protected function button1_clickHandler(event:MouseEvent):void
                        myPanel.addElement(PreLoad); <---add the preloader
                        //FlexGlobals.topLevelApplication.enabled=false;
                   protected function button2_clickHandler(event:MouseEvent):void
                        myPanel.removeElementAt(myPanel.getElementIndex(PreLoad)); <-- now remove it
                        //FlexGlobals.topLevelApplication.enabled=true;
              ]]>
         </fx:Script>
         <s:Button label="Start" click="button1_clickHandler(event)" horizontalCenter="0" top="10"/>
         <s:Button label="Stop" horizontalCenter="0" click="button2_clickHandler(event)" bottom="10"/>
         <s:Group id="myPanel" width="208" height="148" horizontalCenter="0" verticalCenter="0">
         </s:Group>     
    </s:Application>
    The Preloader  (waitLoad.mxml)
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/halo" verticalCenter="0" horizontalCenter="0" width="200" height="46"
                   activate="group1_activateHandler(event)">
    <fx:Declarations>
         <s:Animate id="flasher" target="{st}" repeatCount="0" duration="1000" repeatBehavior="reverse">
              <s:SimpleMotionPath property="alpha" valueFrom="0" valueTo="1.0"/>
         </s:Animate>     
    </fx:Declarations>     
    <fx:Script>
         <![CDATA[
              protected function group1_activateHandler(event:Event):void
                flasher.play();
         ]]>
    </fx:Script>     
         <s:SimpleText id="st" text="Waiting..." fontFamily="Arial" fontSize="20" color="#DE1A1A" fontWeight="bold" textAlign="center"
                          width="128" height="28" horizontalCenter="0" verticalCenter="0" alpha="0"/>
    </s:Group>

  • Fx Webservice Introspection wizard bug

    It seems the Fx Webservice Introspection is not interpreting
    the wsdl correctly. By using TCPMonitor I was able to capture my
    soap request from my java spring-ws junit test. The correct
    response is as follows:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="
    http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
    <SOAP-ENV:Body>
    <ns4:ProcessChucksPick3LotteryNumberRequest
    xmlns:ns2="
    http://www.chuckspick3.com/WebserviceClient"
    xmlns:ns3="
    http://www.chuckspick3.com/lotterysystem/common-schemas"
    xmlns:ns4="
    http://www.chuckspick3.com/lotterysystem/schemas">
    <ns2:webServiceClient>
    <ns2:id>0</ns2:id>
    <ns2:customerName>test</ns2:customerName>
    <ns2:customerUserName>test</ns2:customerUserName>
    <ns2:custoemrPw>test</ns2:custoemrPw>
    </ns2:webServiceClient>
    <ns3:chucksPick3LotteryNumber>
    <ns3:number>345</ns3:number>
    <ns3:requestDate>2008-10-29T20:32:37.171-05:00</ns3:requestDate>
    <ns3:drawingType>MidDay</ns3:drawingType>
    </ns3:chucksPick3LotteryNumber>
    </ns4:ProcessChucksPick3LotteryNumberRequest>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Using the code generated from the Fx Webservice Introspection
    wizard I get the following invalid soap request:
    notice that there are no namespaces specified.
    <SOAP-ENV:Envelope>
    <SOAP-ENV:Body>
    <tns:webServiceClient>
    <tns:id>1</tns:id>
    <tns:customerName>test</tns:customerName>
    <tns:customerUserName>test</tns:customerUserName>
    <tns:custoemrPw>test</tns:custoemrPw>
    </tns:webServiceClient>
    <ns0:chucksPick3LotteryNumber>
    <ns0:number>234</ns0:number>
    <ns0:requestDate xsi:nil="true"/>
    <ns0:drawingType>Day</ns0:drawingType>
    <ns0:type>Customer Provided Winning Pick 3 Lottery
    Number</ns0:type>
    </ns0:chucksPick3LotteryNumber>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I think there is a bug in the code generated from the Fx
    Webservice Introspection wizard. You can download or view my wsdl
    by clicking
    here.
    If this is not a bug, can some one please tell me what I am
    doing wrong.
    I hope someone will respond to this post as I really want to
    use flex for webservices; but have not been successful.
    Thanks!

    Hi Randy,
    This seems to be caused by a missing import in that class.
    Try adding this line on top of the file (next to the other import
    statements) and see if it solves the problem:
    import mx.utils.ObjectProxy;
    This should be fixed in the next release, but if you can file
    a bug and attach the wsdl file so we can reproduce the bug and
    confirm it does not happen anymore it would be very helpful.
    Thanks,
    Cristian

  • Problems with WEBSERVICES

    Hello,
    i have some Problems with WebServices.
    When I call my function how makes the request (get_frob), it goes back to the main program and make a print! After that my request starts!
    I want that the request finished first and then make a print!
    I need threats for this???and how does it work?
    My englisch is not so good I´m sorry for that!
    Please help me
    Thanks
    Chris
    def Button_Autorisieren:SwingButton=SwingButton{
        text:"Autorisieren"
        width:100
        translateY:150
        action:function()
            var Authentication:HTTP_Authentication=new HTTP_Authentication();
            Authentication.get_frob();
            java.lang.System.out.println(Authentication.abfrage);
    public class HTTP_Authentication {
        var api_key:String="***********";
        var secret_key:String="***********";
        var stat:String;
        var sig:String;
        var frob:String;
        var method:String;
        var md5_String:String;
        var perms:String;
        var api_sig:String;
        public var abfrage:Boolean;
        public var link:String;
        def md5:MD5=new MD5();
        var parser = PullParser{
            documentType: PullParser.XML;
            onEvent: function(event: Event) {
                    if (event.type == PullParser.START_ELEMENT ) {
                        if(event.qname.name == "rsp" and event.level==0)
                           stat=event.getAttributeValue(QName{name:"stat"});
                        if (stat=="ok")
                         if(event.type==PullParser.END_ELEMENT)
                              if(event.qname.name == "frob")
                                  frob=event.text;
                                  java.lang.System.out.println("Frob: {frob}");
                                   abfrage=true;
        public function get_frob ()
            method="flickr.auth.getFrob";
            md5_String="{secret_key}api_key{api_key}method{method}";
            java.lang.System.out.println(md5_String);
            sig=md5.makeMD5(md5_String);
            java.lang.System.out.println(sig);
            var request = HttpRequest {
                    location: "http://api.flickr.com/services/rest/?method={method}&api_key={api_key}&api_sig={sig}"
                    method: HttpRequest.GET
                    onInput: function(input: java.io.InputStream)
                                    parser.input=input;
                                    parser.parse();
                                    input.close();
                        }.enqueue();
        }

    Hello,
    thank you for your answer. It was my mistake, I discribe the problem very bad.
    When i call the function get_frob(). Netbeans goes in the function and run through the end but nothing happened
    onMouseClicked: function( e: MouseEvent ):Void {
                         test=Authentikation_Frob.get_frob();and in my if clausel there will be a wrong output! After the output my programm go back to the function get_frob() and then make the request and go back to the if clausel. Now everything ist correct. But why does my programm need 2 runs ????thats not correct!!
    Thank you!!
    if (test==true)
                             var Authentikation_Link:HTTP_Authentication_Link=new HTTP_Authentication_Link();
                            link=Authentikation_Link.get_link();
                            var uri = new java.net.URI("{link}");
                             var desktopClazz = java.lang.Class.forName("java.awt.Desktop");
                             var getDesktopMethod = desktopClazz.getMethod("getDesktop");
                             var desktop = getDesktopMethod.invoke(null);
                             var browseMethod = desktopClazz.getMethod("browse", [uri.getClass()] as java.lang.Class[]);
                              browseMethod.invoke(desktop, uri);
                         else
                             fehler_ausgabe.visible=true;
                             fehler_ausgabe.content="Fehler {Authentikation_Frob.frob_fehler} {Authentikation_Frob.frob_hilfe}";
                         }Edited by: Esco24 on Aug 10, 2009 1:02 AM

  • Problems with email on wizard setup

    Hi
    I have recently purchased a blackberry pearl 8110 on O2.
    When I go into the wizard to set up my emails it only gives me two options
    1.  I want to use a work account with Blackberry Enterprise Server
    2.  Skip e-mail set up
    I.e. it doesn't give me the option to enter an e-mail address - could there be a problem with my settings.
    Thanks
    C

    ciara, Greetings, and welcome to the BlackBerry.com Support Forums.
    You'll find that is the most often asked question in this forum. It's been asked and answered thousands of times.
    Do you have a BlackBerry Data Plan enabled on your account with your carrier or mobile provider?
    You must, in order to get the RIM push email setup screen for personal email, and the BlackBerry data services such as the internet browser, Facebook for BlackBerry, BlackBerry Messenger, and much more.
    So, call your carrier and inquire about having the BlackBerry Data Plan added to your account.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Could not find the main class - Problem with Webservice-Access

    Hello Everybody,
    I'm having serious Problems with accessing a WebService (Tomcat-Axis) per executable jar-File.
    I constructed a simple GUI with 3 Textboxes 1 Button and 1 Resultbox.
    I use eclipse so it was no Problem to simple generate the Backgroundclient by Processing the .wsdl-File of the WS.
    Now I do this:
    Head_tServiceLocator serviceLocator = new Head_tServiceLocator();
    Head_t service = serviceLocator.getRPCCall();
    RPCCallSoapBindingStub Head_t = (RPCCallSoapBindingStub) service;and use the Webservice like an Object.
    All this works very well.
    Now the Problem:
    Head_t service = serviceLocator.getRPCCall();this Line has to throw a ServiceException.
    If i add a try-catch Block to Process the Message JAVA tells me after i exported to JAR (with Manifest-stuff and so on) and double Click on the JAR the following :
    Could not find the main Class - Program will exit.
    And if i add a throws Declaration to the Methodheader it tells me:
    Fatal Exception Occured - Program will exit
    But if i Comment out that Line at least the GUI is being displayed (so it DOES find the main-Class). But then of course the Webservice won't be accessed.
    All the JARs needed (axis.jar, commons-discovery.jar and so on) are in the same Directory as the Webservice-Client.jar
    Please Help me.
    Greets,
    Zap

    I am not done any typing mistake while creating the jar file i already followed the suggestion that you have mentioned but still the same error .
    This is my MANIFEST.MF file created under META-INF folder
    Manifest-Version: 1.0
    Class-Path: qtjambi-4.4.3_01.jar qtjambi-win32-msvc2005-4.4.3_01.jar
    Created-By: 1.5.0 (Sun Microsystems Inc.)
    Main-Class: Ui_MainWindow
    When i extracted the app.jar following this i got
    1. META-INF folder inside that MAINFEST.MF file the contents i have already placed above
    2. qtjambi-4.4.3_01.jar
    3. qtjambi-win32-msvc2005-4.4.3_01.jar
    4. Ui_MainWindow.class
    Please tell me whats wrong in that i can also give you the app.jar file please let me know the email id ..

  • Problem with the importing wizard

    Hei,
    I have a dll which I want to import to the Labview project. So, I decided ti use the import wizard, but when parsing the header file, Labview freezes. I am using a couple of structures (3) and a handle. I have also read that the wizard has problems when dealing with complex data. What would be best solution for adding it to the project? To in a way "unbundle" the struct and then create a many simple variables and then parsed to dll.  (This would be a pain)
    How to deal with the handle or will wizard easy understand that?
    I am really looking for a painless solution  
    thanks for the help

    Can you post the header file for the DLL?
    Through a process of trial and error you could determine which functions causes problems with the wizard (comment out half the functions, attempt to import, repeat) and then manually create the LabVIEW VIs for the troublesome ones. If there aren't too many functions, you could do it all by hand, which isn't that hard if you have some understanding of C (and if you don't, you'll undoubtedly have other problems when the wizard doesn't do the right thing).

  • Problem with Webservice - XI - JDBC scenario

    Hi Experts,
    When I have tried to test the Webservice -> XI -> JDBC scenario with the mention address, I am getting the below error.
    <b>Address :</b> http://<Host>:50100/XISOAPAdapter/MessageServlet?channel=:WEB_SERVICE:SOAP_CC&version=3.0&Sender.Service=WEB_SERVICE&Interface=http%3A%2F%2Fatl.com%2Ftar%5EMI_Outbound
    <b>Error:</b>
    <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                             <context>XIAdapter</context>
                             <code>RecoverableException</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.af.ra.ms.api.DeliveryException: Application:EXCEPTION_DURING_EXECUTE:
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:919)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process(ModuleLocalLocalObjectImpl3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:258)
    JDBC Part works fine only problem with the SOAP sender side. Any suggestion please..
    Regards
    Sara
    Message was edited by:
            Sara D

    Hi,
    As per Bhavesh & Krishna's suggestion, I have changed the JDBC Data type. Now I could able to see the SXMB_MONI error too.
    Latest error:
    When I have tried to test the scenario using xmlApy, I am getting the below error.
    <b>RWB error:</b>
    2007-06-21 03:04:24 Success Receiver JDBC adapter: processing started; QoS required: BestEffort
    2007-06-21 03:04:24 Success JDBC adapter receiver channel DB_CC: processing started; party  , service DB_SERVICE
    2007-06-21 03:04:24 Error Unable to execute statement for table or stored procedure. 'Address' (Structure 'STATEMENT') due to java.sql.SQLException: FATAL ERROR document format: structure 'STATEMENT', no key element found
    <b>xmlSpy Error:</b>
                   <context>XIAdapter</context>
                             <code>RecoverableException</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'Address' (structure 'STATEMENT'): java.sql.SQLException: FATAL ERROR document format: structure 'STATEMENT', no key element found
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:919)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process(ModuleLocalLocalObjectImpl3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:258)
    I have mapped the EmpId in the mapping as well as in the DB the EmpId is Primary Key. Could you please tell me,what I am missing here?
    Regards
    Sara
    Message was edited by:
            Sara D

  • Timeout problems with Webservices

    Hi,
    I'm facing problems with the timeout parameter("weblogic.webservice.rpc.timeoutsecs"). It seems that the timeout is not working and i got stuck threads in my Weblogic Queue.
    has anyone benn through a similar situation?
    Thanks in Advance
    Erick Akamine

    System.setProperty("weblogic.webservice.UseWebLogicURLStreamHandler","true");
    // create a call instance
    ((weblogic.webservice.core.rpc.CallImpl) myCallInstance).setProperty("weblogic.webservice.rpc.timeoutsecs", "1");
    //check the parameters names
    ((weblogic.webservice.core.rpc.CallImpl) myCallInstance).getParameterNames();

  • Problem with custom icon on toolbar (iPhone Beta 6 SDK)

    I created two custom icons, using transparency so they are white lines on a transparent background, to add to a toolbar at the bottom of the screen.
    toolbar.barStyle = UIBarStyleDefault;
    UIBarButtonItem *theItem = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"MyImage.png"] style:UIBarButtonItemStylePlain target:self action:@selector(theAction:)] autorelease];
    On the simulator, this shows properly a white icon on the grayish toolbar. On the device itself, it shows a white box the size of the icon. It still works.

    Problem persists in Beta 7. However a workaround (which might have worked in Beta 6, I don't know) is this: use GIF files with transparency, rather than PNG files with transparency. These display properly on both simulator and device.

  • Problems with the Setup Wizard for WRT54GC

    Hi…
    I just bought a WRT54GC router and while trying to install it I had some problems.
    I opened the Setup Wizard on the CD to install the router.
    When I reach step 6 the internet connection is being checked with the following result: “Unable to detect the internet connection. Please check your cable connections”.
    I’ve checked all the cables and everything is okay – I’m also able to access the internet which shows me that all cables are correctly connected.
    So why do I get this message?
    What do I have to do?
    The problem is that I’m not able to continue the Setup Wizard further than step 6.
    Thanks!

    well..if you have an internet connection through the router and the CD setup shows “Unable to detect the internet connection. Please check your cable connections”. I would recommend you to neglect it....discard the CD and configure the router manually
    you can access the router from the wired computer using http://192.168.1.1 .. the default password is admin

  • Weird problem with archive profile wizard

    Hi,
    After using the simple archive profile wizard for ages to create
    jar files, I suddenly can't use it anymore. Every time I try,
    the "Corba profile wizard" runs instead! What's all that about?!
    Any help would, as usual, be much appreciated.
    Thanks, Rich
    null

    Rich,
    I assume you are using JDeveloper beta (build 184).
    I am not sure what is going on, but the problem
    can probably be fixed by examining <jd>\bin\gallery.ini
    Somehow this file has the wrong association.
    Anyhow, I would suggest you upgrade to the
    official 2.0 release if you have not done so already.
    JDeveloper Team
    Rich (guest) wrote:
    : Hi,
    : After using the simple archive profile wizard for ages to
    create
    : jar files, I suddenly can't use it anymore. Every time I try,
    : the "Corba profile wizard" runs instead! What's all that
    about?!
    : Any help would, as usual, be much appreciated.
    : Thanks, Rich
    null

  • Problem with Webservice after upgrading to cf8

    I have a webservice created in ColdFusion 6.1 that worked just fine when being called from MS Access. I upgraded coldfusion to v8, and now the webservice isn't working. Nothing else was changed. The strange thing is I can call the webservice from a flex program, I have used SoapUI, and that worked, I can type the webservice name into IE and get the correct return, but not from MSAccess or Excel.
    Anybody know why this would be? Is there some setting that I forgot to check in the upgrade that would cause this sort of problem.
    One thing I noticed when looking at the packets that were sent back and forth is that when connecting to the webservice from MSAccess, it looks like ColdFusion is trying to log into the web service definition. By that I mean, in the packet that is returned, I can see the HTML of the page in ColdFusion where you log in to view the webservice definition.
    Matt

    We are running windows 2000 server (I know, I know, old as mold, but we're a government agency, what do you expect?) 32 bit. Antoher piece of the pie...
    After looking at the response closer, it looks like and extra line is being placed in there. For example, here is the response I am getting currently:
    <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
      <ns1:GetProp8Response soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://xxxx.xxxx.xxx">
       <GetProp8Return xsi:type="xsd:string">22923</GetProp8Return>
      </ns1:GetProp8Response>
    </soapenv:Body>
    </soapenv:Envelope>
    previously, it was similar to this:
    <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
      <ns1:GetProp8Response soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://xxxxxx.xxxxx.xxx">22923</ns1:GetProp8Response>
    </soapenv:Body>
    </soapenv:Envelope>
    Thanks for taking a look...
    Matt

  • I have a problem with Pages on iCloud share (in Beta).

    Hi,
    I use pages yet my friend, using an old macbook has sent me a .doc (via Skype) which I can view and work with just fine as expected. Yet, when I share this on iCloud in order that we can edit it together ... the link that I test to send her, by placing it into my web browser opens a double-image font that cannot be read.
    (screen shot below, hopefully.. It did not show when I posted this, re-attaching now. If it isn't visble feel free to also trell me how to make it so :-))
    Can anybody please explain why?  Better still, how to correct this :-)
    Many thanks.

    Tom, thanks... yet: if I use a keyboard shortcut, I paste the image - it shows, yet does not show once sent. If I use grab, save the captured selection it tells me:
    There was an error, please check below
    From your ComputerUploaded Images
    Select an Image 
    Maximum file size: 2.0 MB. Also, please note that images larger than 450px wide or 600px tall will be scaled to fit those limits in your content.
    [The content type of this image is not allowed.] 
    though the image has been selected and shown to be so, TIFF image, 631,732 bytes (635 KB on disk)
    anyone else too .. ??
    The actual link: https://www.icloud.com/iw/#pages/BAIqeDLwbQgjFXlOF-OBJS9-2Ravv-_LH3OE/Yvona's_D elta
    (Please be aware that this is a friends work. Though I have the orignal copy and her the original.. I guess taht helpful people like yourselves would not insert random rubbish into it :-))
    Thanks again..

  • Problem with LogicCore clocking wizard

    Hi,
    i got this error during the translate of my design but i can't understand the reason of it:
    ERROR:NgdBuild:455 - logical net 'CLK_OUT2_SIGNAL' has multiple driver(s):
    ERROR:NgdBuild:455 - logical net 'CLK_OUT3_SIGNAL' has multiple driver(s):
    I'm using ISE 14.7 and the IP clocking wizard 3.6, which menages 3 clock signals: two of them are the clock for other IP cores (selectIO interface wizard) and the third drives the clock for a counter and a ROM.
    here is the code of the top level entity:
    entity strutturale_SERDES is
    port(
    clk,
    reset,
    control : in std_logic;
    output : out std_logic_vector (7 downto 0)
    end strutturale_SERDES;
    architecture Behavioral of strutturale_SERDES is
    signal output_ser : std_logic_vector (0 downto 0);
    signal CLK_DIV_OUT_deser_signal : std_logic;
    signal CLK_OUT2_SIGNAL : std_logic;
    signal CLK_OUT3_SIGNAL : std_logic;
    signal CLK_OUT1_SIGNAL : std_logic;
    signal CLKFB_IN_SIGNAL : std_logic;
    component DESER is
    generic
     (-- width of the data for the system
      sys_w       : integer := 1;
      -- width of the data for the device
      dev_w       : integer := 8);
    port
      DATA_IN_FROM_PINS       : in    std_logic_vector(sys_w-1 downto 0);
      DATA_IN_TO_DEVICE       : out   std_logic_vector(dev_w-1 downto 0);
      CLK_IN                  : in    std_logic;                    -- Single ended Fast clock from IOB
      CLK_DIV_OUT             : out   std_logic;                    -- Slow clock output
      IO_RESET                : in    std_logic);                   -- Reset signal for IO circuit
    end component;
    component strutturale_SER
    is port (
    clk_ser,
    clk_signal_gen,
    reset,
    control : in std_logic;
    output : out std_logic_vector (0 downto 0)
    end component;
    --ipCore Clocking Wizard
    component Multiplatore_CLK is 
    port
     (-- Clock in ports
      CLK_IN1           : in     std_logic;
      CLKFB_IN          : in     std_logic;
      -- Clock out ports
      CLK_OUT1          : out    std_logic;
      CLK_OUT2          : out    std_logic;
      CLK_OUT3          : out    std_logic;
      CLKFB_OUT         : out    std_logic;
      -- Status and control signals
      RESET             : in     std_logic
    end component;
    begin
    U1: DESER port map (
    DATA_IN_FROM_PINS => output_ser,
    DATA_IN_TO_DEVICE => output,
    CLK_IN => CLK_OUT3_SIGNAL  ,  --clk for one IP core (selectIO interface wizard)
    CLK_DIV_OUT => CLK_DIV_OUT_deser_signal,
    IO_RESET  => reset
    U2: strutturale_SER  port map (
    clk_ser => CLK_OUT2_SIGNAL, --clk for one IP core (selectIO interface wizard)
    clk_signal_gen =>  CLK_OUT1_SIGNAL , --clk for the counter and the ROM
    reset => reset,
    control => control,
    output => output_ser
     --ipCore Clocking Wizard
    U3: Multiplatore_CLK port map (
     CLK_IN1  => clk,
      -- Clock out ports
      CLK_OUT1=>CLK_OUT1_SIGNAL,
      CLK_OUT2=>CLK_OUT2_SIGNAL,
      CLK_OUT3=>CLK_OUT3_SIGNAL,
      CLKFB_IN=>CLKFB_IN_SIGNAL,
      CLKFB_OUT => CLKFB_IN_SIGNAL,
      RESET=>reset
    end Behavioral;
    I thank you in advance for your sopport.

    No i didn't try an example design.
    I resolved the problem using  the buffers of the kind BUFPLL.
    Thank you

Maybe you are looking for

  • Photosmart C309g printer. how do i install it on a second computer. i have a belkin wireless router

    my printer has stopped working from a second computer. it is a photosmart C309g and i have a belkin wireless router. the main computer is XP and the second one is Windows 7. it use to work before. i have forgotten how i set it up in the first place.

  • Problem with SCA check in

    Hello, I am trying to configure the NWDI. I have configured the SLD and have created Domains and Tracks. I am now trying to check in SCAs through the Transport studio but I dont find any SCAs to check in. I read in some of the posts that we need to m

  • Tables for Project System Component

    Hi, I hve the list of standard DS from Project System component. Currently these DS are not active in our ECC system. Now I need to find the Source table for all these DS. Can any one please provide the table name if you have. I searched in sdn/help.

  • PowerBook Won't Boot Past the Apple and Spinning Flower Screen...

    I've been reading a lot of these forums, but still haven't figured out how to fix it on my laptop. So, I made my own topic. Anyways. My dad gave me this laptop since he got a new one, so it's a hand-me-down which means I don't have this startup disk

  • New mail badge will not go away!

    I've tried every solution I could find on the forums here, but the unread icon will not go away...and the mailbox is empty! It's making me a little crazy, so any help would be appreciated. I don't believe that I have the option of uninstalling/reinst