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

Similar Messages

  • 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

  • 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>

  • Webservice introspection/ code generation

    Hi,
    there have been some references on the wiki about the
    webservice introspection support in flex buildre beta M3. This is a
    function of visual studio that is a real lifesaver. WS
    introspection (M3 really) was first scheduled for late july/begin
    august, but now it is postponed to october. Is there any way to
    test this functionality sooner? Are there nightly builds of the
    builder like there are of the SDK?
    Regards,
    Leen Toelen

    I am glad to hear that this is in development (or at least in
    discussion). I agree with Leen -- it can be a real life saver.
    I made a request for this feature here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=651&threadid=1292371

  • Wizard bug - conditional validation

    Hello,
    We require validation on a wizard to prevent the user from navigating from a particular page to the next page unless they have checked a checkbox. The underlying column is not mandatory because the user may not have to visit this particular page depending on the answers he gave on previous pages.
    The only place we have found to put the validation is the "nextActionListener" of the singleStepButtonBar. However, there seems to be a bug in the generator because we cannot override the WizardPageContent template at the ItemRegion level. We only want the validation to fire if the user is in this particular page, so modifying the template at the Group level is not appropriate. As a result we have to make a post-generation change. Can anyone suggest another way of achieving this?
    thanks,
    Michael

    Steven,
    Sorry to be still bugging you about this but I'm still having problems getting it working OK. The first problem was that the error message was being added to the page 4 times (presumably one for each step). I see in the checkFocusRowIndex method of the WizardProcessModel does a check to see if the page has changed so figured I may have to do something similar. As a work around I check the FacesContext to see if any error messages have been added already and don't add it again. That much worked but I now have the problem that the error message is being displayed on the second wizard page as well. Here is my getNextAction()
        public String getNextAction()
           String nextAction = super.getNextAction();
           FacesMessage.Severity sev =  FacesContext.getCurrentInstance().getMaximumSeverity();     
           if (JsfUtils.getFacesContext().getViewRoot().getViewId().equals("/pages/GHDScreeningStart.jspx")
               && nextAction.equals("WizardGHDScreeningSubjectDetails")) {
               // Getting ready to move to second page.  Need to check that on
               // the current page, both checkboxes are ticked
                boolean inclusionCriteria = ((Boolean)JsfUtils.getExpressionValue
                        ("#{bindings.GHDScreeningInclusionCriteriaMet.inputValue}"))
                        .booleanValue();                  
                boolean exclusionCriteria = ((Boolean)JsfUtils.getExpressionValue
                        ("#{bindings.GHDScreeningExclusionCrirteriaNotMet.inputValue}"))
                        .booleanValue();
                if (!(inclusionCriteria && exclusionCriteria)) {
                    if (sev == null) {
                      JsfUtils.getInstance().addError("SCREEN_WIZARD_CHECKBOX_FAILURE");
                    // Stay on same page
                    return null;
           return nextAction;
        }I'd really appreciate some more help/guidance here !
    Cheers,
    Brent

  • ViewLink wizard bug

    Trying to create a view link based on a many-to-many association where the destination entity is also the destination in another association.
    After selecting the association on the Source Attributes step, the Destination Attributes step does not automatically reflect the selected association. I have to explicitly select the association again. Now, on the View Link SQL step, the query does not include the Intersection Entity object, just a direct join between the source and destination entity objects.
    When there is no ambigutiy on the Destination Attributes step, i.e. there is only one association to select (the one that was selected on the Source Attributes tab), the Link SQL step correctly reflects the Intersection Entity object in the Query Clause preview.
    Is this a bug in version 9.0.2.8.2 (BC4J 9.0.2.7.99)
    Also, are there BC4J patches that will be delivered separately from a new version of JDeveloper?
    Thanks.

    Trying to create a view link based on a many-to-many association where the destination entity is also the destination in another association.
    After selecting the association on the Source Attributes step, the Destination Attributes step does not automatically reflect the selected association. I have to explicitly select the association again. Now, on the View Link SQL step, the query does not include the Intersection Entity object, just a direct join between the source and destination entity objects.
    When there is no ambigutiy on the Destination Attributes step, i.e. there is only one association to select (the one that was selected on the Source Attributes tab), the Link SQL step correctly reflects the Intersection Entity object in the Query Clause preview.
    Is this a bug in version 9.0.2.8.2 (BC4J 9.0.2.7.99)Sounds like it from your description. The wizard should automatically fill in the intersection info if you picked the many-to-many association end to pariticipate in the ViewLink.

  • Unable to create WebService using Wizard

    XML experts,
    I am following the 'How to...Send XML Data to BW' guide.  In Step 26, for BW 3.5, I start to create WebService using SE37 and use the Wizard.  I go thru all the steps as follows:
    Virtual Inteface:  Myservice
    Short Description:  Myservice
    Endpoint Type:  Function Module
    Check  Name Mapping box
    Function Module:  /BI0/QI6ASENDXMLDATATOBW_RFC
    Name:  Myservice
    Short Description:  Myservice
    Profile:  Basic Authorization: SOAP Pro
    If you select Complete, the following objects are created in the Object Navigator:
    The virtual interface Mydemo
    The Web service Mydemo
    The address of the Web service is default_host/sap/bc/srt/rfc/sap/Mydemo
    In addition, the Web service definition is released for the SOAP runtime.
    To find the address of the Web service, use the transaction WSCONFIG, which supports you when you publish a Web service in the UDDI.
    WHEN I PRESS COMPLETE, I get a message 'Object can only be created in SAP Package'.  I SELECT OK and get the CREATE OBJECT DIRECTORY ENTRY popup for entering package info for transport.
    <b>Question:  Is this normal?  I tried local object ($tmp) and ZBIW, but it does not take it.  Says, test object cannot be created in foreign namespaces.  What do I need to do to bypass this?</b>
    Thanks a lot!!

    Hi
    <a href="/people/baris.buyuktanir2/blog/2007/02/12/how-to-create-dynamic-configurable-web-services-easily-with-netweaver-development-components-part-i 1</a>
    <a href="/people/baris.buyuktanir2/blog/2007/02/12/how-to-create-dynamic-configurable-web-services-easily-with-netweaver-development-components-part-ii 2</a>
    Regards
    Abhijith Ys

  • EJB WIzard Bugs

    There seem to be several bugs in the EJB wizard:
    1. If I change various fields to not be primary keys, sometimes this does not affect the generated PK class consistently (I have seen a couple of cases where the old or older versions of the constructor are present with fields that used to be primary keys still there).
    2. When I change method names, the "Create Sample Java Client" still uses the old names (or the field names, same thing) for accessors instead of the new method names.
    3. When using the "Create CMP from table" -- why does it ignore data types? Why not ask what are the primary keys?
    Finally, the documentation on running using the internal OC4j OAS should tell users to start the server first by doing a run on the ejb object before trying to run the generated test program (or any other client).
    Best,
    Joe McDaniel

    I've the SAME problems and no luck changing our regional settings
    We read it before, in that "French" case, but no luck to us
    Out regional setting is Spanish, nothing works better if we use English
    And why embedded OC4J doesn't create tables for entities in EJB3? It does if we use EJB2.1, but those wizards doesn't works

  • N73 Setting Wizard Bug

    i have the latest version of the software version (4.) on the N73 vanilla one.........
    have just notice that there is a bug in the Setting Wizard software when i choose Operator it will detect the operator then it will close down without creat the Access Point that's odd one but if i choose to Cinfigure E.mails in the Setting Wizard it will creat the Access Point but it doesn't have the the old list it has just the gmail i guess and other............. does anybody have the same poroblem too.
    Thanks.

    Hey even I've that exact same problem!
    the moment I installed new firmware in that process it already gave me all the required Settings for my SAUDI ARABIA mobile operator, mobily. And I deleted those settings and tried getting them from the Settings Wizard.. just closes without creating
    Anyways for now you can request the settings online and get it on your N73
    http://europe.nokia.com/link?cid=PLAIN_TEXT_228512
    Nokia 5800 XpressMusic (11) [Product ID: 0559416]
    V 21.0.025 (date: 02-04-2009)
    network: mobily (etihad etisalat)

  • URGENT:Report Wizard Bug or incomplete feature ?

    Hello,
    3.0.7.6.2 NT/SP6, 8.1.6.2 Aix
    I am at a loss to explain this bug, 'cause it is so stupid (excuse my language). Valid Report package, report worked well, with good performance i.e no problems. Made a change to the query (removed one join) and saved the report. Now, my template has reset to the defualt report template, the buttons on the parameter form have disappeared. Also, when I click on edit report link, the report wizard changes the name to the current date. I don't have the faintest idea why this happened. No error messages, nothing.
    I retrieved the previous version, checked the html code added in the adv. formatting. Still nothing.
    Any tips (apart from if it aint broke, don't fix it) ?
    Thanks
    Sanjay

    Sunil,
    it is in 3.0.7.6.2, SQL Report.It happens intemittently, which is why it is difficult to analyze the problem. Some other factors could be a large number of versions of the componenent, large blocks of pl/sql code and length of sql query is long (but below the limit for the textarea). However, I don't see why this would prevent the show_params from executing correctly. Will a null value for a bind variable name cause this behaviour ?
    Sanjay

  • Chart Wizard Bugs

    1. If I set ONE of the chart series data label to "none" or
    "value" sometimes it affects ALL chart series. It seems like it's
    an all or nothing deal.
    2. In the advanced mode in Query Builder, there is an option
    to set the "variable containing query object". This does not work.
    I have tried to set this several times and clicked Save, only to go
    back and its reset back to "CFReportDataQuery".
    3. Under the Lines and Markers tab in the chart wizard, there
    is an option to set the maximum Y axis value. Setting this has no
    effect. The chart still does what it wants.
    I find *very little* support for the chart wizard. I know
    this is a new thing and I'm hoping in the next update these issues
    will be fixed. But in the mean time, has anyone else found a way
    around this besides creating the chart manually?

    Hi Ingo,
    Pls. see my responses below.
    1) How can I achieve, that the chart only shows one key figure? I would like to choose either the first or the second one.
    Answer:In the properties of the chart you have a list of "Series" option, you can set the Series 1 or Series 2 as Hidden.Hence u can achieve to show only one key figure.
    2) What is the meaning in the chart wizard (Step 2) of "Select a Data Source". Then I can count up or down - what's the sense?
    Answer:I didnt get this.can you please elaborate this a bit more.
    hope it helps,
    regards,
    Parth.

  • ATG Webservice Creation Wizard Limits Complex return type

    Hi All,
    Can you please let me know is there any way we can expose component method as webservice which returns complex type.
    Options we have
    1) Wrap the complex type object as string
    2) REST Webservice (JSON response)
    Do we have any other options.
    Thanks & Regards,
    Kanagaraj

    Have you set a default response of such type of ATG Web-Service?
    Sometimes even when you give the incorrect request, a default response is thrown back from the Web-Service.
    Let me know if this is the case?

  • Create JSP Wizard Bug

    JDeveloper 11g does not provide a Create JSP wizard, with a provision to add tag libraries to a JSP page, as JDeveloper 10g does. If tag libraries
    are required, the tag libraries have to be added after creating the jsp page and also the tag library JAR files have to be copied to the WEB-INF/lib directory.

    A project containing JSPs and servlets is a web project. But, the create application wizard does not have the provision to add tag libraries.
    Create application with File>New. Categories>Applications and Items>Generic Application. Specify Application Name in Create Generic Application and Next.
    In Name your Generic project select JSP and Servlets Project technologies. But, tag libraries are not provided.
    Even if the Web Project template is selected, the project does not include the tag library JAR files in the WEB-INF/lib directory. Also if a JSP is added to a Web Project,
    the JSP does not contain the tag library directives.
    The following features are requested to be added:
    1. When a project is created with the Web Project template the WEB-INF/lib directory should contain the tag library JAR files, which are required to run the web application in a server other than the integrated WebLogic server.
    2. When a JSP is added to a Web Project template project the JSP should contain the tag library directives for the tag libraries in the Web Project. Even if the Add Jsp Page option is selected while creating the Web Project, the tag library directives are not added to the JSP page.
    3. The tag libraries should also be available for other project technologies such as JSP and Servlets and JSP for Business Components that may include tag libraries.
    Edited by: dvohra on Nov 12, 2008 1:34 PM

  • JDeveloper 3.1 addin wizard bug

    We've written own WIZARD (ADDIN) to JDEVELOPER. So, in version 3.0 is everything OK, but in version 3.1 offer in menu for running WIZARD is not displayed. Where may be problem?
    Thanks

    There were some minor changes in the Addin API between 3.0 and 3.1.
    The most obvious changes was to context menu items.
    For details, see the updated samples which are part of the CustomAddins located on the JDeveloper page of OTN.
    See for example, file: DumpNode.java.
    In particular, the method contextMenuCreation needs to re-create the context menu item each time.
    Fragment pasted below.
    I hope this helps,
    -John
    public void contextMenuCreation(MenuCategory menuCategory, Context p1) {
    // Remove Menu item unconditionally
    menuMgr.removeMenuItem( ctxMenuItem );
    if ( menuCategory == navCtxMenuCat ) {
    ctxMenuItem = menuMgr.createMenuItem( getMenuLabel(),
    "Context" + getMenuLabel(),
    new DumpNodeHandler( this ));
    menuMgr.insertMenuItem(ctxMenuItem, menuCategory, 0);
    null

  • WSDL Proxy Wizard and Slashes in Binding/Port Name of SAP Webservice

    Hi there,
    i have problems to get the Java Webservice Proxy Wizard liking the SAP WSDL File:
    Here is a small excerpt of it:
    <wsdl:service name="/SIE/TS_PL03_GIDService">
         <wsdl:port name="/SIE/TS_PL03_GIDSoapBinding" binding="tns:/SIE/TS_PL03_GIDSoapBinding">
    <soap:address location="../sap/bc/srt/rfc/SIE/TS_PL03_GID/version3?sap-client=025"/>
    </wsdl:port>
    </wsdl:service>
    The Editor is also underlining these Names.
    I've googled a bit in order to find out if there is a W3C restriction for having forward slashes in service Names but i've not found some so far.
    any help is appreciated, Alex

    Hi Thomas,
    With the newer version of NCo (> 2.0) there is no wizard. You would have to drag and drop the RFC/BAPI from the server explorer window of visual studio.
    First open the solution explorer, click on the SAP icon. Specify the credentials. And then from the list of RFC/BAPI drag and drop on SAP connector proxy page(design view). You can also specify the filter to restrict the listing of RFC/BAPI.
    Regards.

Maybe you are looking for

  • Media Foundation dll

    I need to write a dll in c++ that will be accessed by a c# application. The dll will be a player class using WMF. I am using Visual Studios 2013. My question is what kind of dll to create. My app is not a windows store app. Should I create a Universa

  • My pages stopped scrolling with cursor keys after upgrading to 5.0, the cursor moves WITHIN html documents and "jumps" from frame to frame and character to character within the frame.

    Recently, I noticed that google search pages stopped scrolling. There is an "right arrow" at the beginning of each link. When I press the cursor "up/down" arrow on the keyboard, the cursor jumps from link to link. Also, while on any html webpage, the

  • Distributed transactions and connection pooling

    Hi, We have a problem with the enlistment of connections in distributed transactions. The following very simple C# program does not work correctly (a simple form with one button and a class hosted in COM+). If you put a breakpoint on "cnOraTx.Close()

  • Macbook Wireless Driver Corrupted

    Hi, I've got a problem with my macbook's wireless driver. The driver was corrupted back a few months ago. For some reason it started working again after a while so I didn't follow up with the problem. I just updated my OS to 10.4.11 and the driver di

  • Problems capturing Video

    I attach my camcorder ( Canon VIXIA HV40 ) and click on the Cature HDV . Screen opens up and my camera is found and I can start and stop it through the appropriate controls. The program begins to capture my movie but I cannot see the movie on the com