Import Web Service not working

In the past I have successfully created a lvlib, to get Information from our ERP system (Dynamics NAV) via web service. I have used the LabVIEW import wizard for web services. Now we have exported another page of Dynamics NAV as a web service and I want to write a LabVIEW-Tool for this. But with a valid URL I get always an error
Validation failed. Possible Reasons are:
1. The URL does not exist or the WSDL is bad
2. Authentification is not OK
3. Proxy information is not correct.
I can communicate with a c# application. So, the reason must be in LabVIEW.
I have checked the import wizard again with the URL of my first first lvlib and the wizard gives the same error, but my lvlib is working well.
Regards
Dirk

Hello Dirk, 
Which LabVIEW verison are you using? Depending on it I can propose you several solutions:
Have you take a look at this link? LabVIEW 2010: http://digital.ni.com/public.nsf/websearch/54DA5F6466B622A5862577BB0048E221?OpenDocument
I have this vi to fix your issue, but that was tested for LabVIEW 2010, you can try it with the version you are working with and keep me updated. I will send you a new file if needed. 
Replace the attached VI file to have the fix. <LabVIEW 20xx>\vi.lib\Platform\WebService\Main Panel\Pages\Input WSDL\Main.vi
I hope this will solve your problem. Keep me posted!
Attachments:
Main.vi ‏38 KB

Similar Messages

  • "no serializer is registered..." error with a web service not working

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

  • Web Services Not Working because wwv_flow_collections view is empty

    Hello,
    I followed this example to try and get a web service running in my Application:
    http://apex.oracle.com/i/doc/advnc_rest_web_eg_2.htm
    When I run the page and enter the zip code 43221 they recommend with a radius of 5, I get no results. When debugging and throwing the query into SQL Dev, I have no records in my wwv_flow_collections view. Looking at the tables that comprise the view, wwv_flow_collections$ and wwv_flow_collection_members$, these two tables would join on c.id = m.collection_id alone, but there are additional in-line selects involving the DUAL table that make the query return 0 records and therefore the view is empty. I've never messed with these views/tables, are these auto-populated by APEX? Can they be updated? Right now I cannot get any web services to work because of this. Here is the from clause for the wwv_flow_collections view:
    FROM
    wwv_flow_collections$ c,
    wwv_flow_collection_members$ m
    WHERE
    c.session_id =
    SELECT
    v('SESSION')
    FROM
    dual
    AND c.security_group_id =
    SELECT
    wwv_flow.get_sgid
    FROM
    dual
    AND c.id = m.collection_id
    AND c.flow_id =
    SELECT
    nv('FLOW_ID')
    FROM
    dual
    Can anyone help? Thanks in advance!
    John

    John,
    I have been working this week to set up the exact same thing and got the same empty result set that you have. In this case I believe it has nothing to do with APEX. I downloaded soapUI 4.0.1 which tests web services and used the WSDL described in the APEX Webservices tutorial for http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?wsdl to create the same sample requests. It also returns no results.
    So, I decided to use a different public WSDL and try to get it working. Here are my steps taken below:
    BACKGROUND:
    - I am using APEX 4.0 on an 11gR2 database, with ACLS set up for the APEX schema this app is using.
    - First off, the site I used I just found through google. It is a currency conversion rate webservice. It is explained here: http://www.webservicex.net/CurrencyConvertor.asmx
    - The WSDL is found here: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
    SETTING UP THE WEBSERVICE:
    1. In a new APEX application I went to "*Shared Components*" -> "*Web Service References*" -> "*Create*" to create a new web service reference
    2. Selected manual
    3. Called the webservice CURRENCY_TEST
    4. Set the URL to http://www.webservicex.net/CurrencyConvertor.asmx
    5. Set the Action to http://www.webserviceX.NET/ConversionRate (Action can be found in the WSDL - showing a few lines below)
    <pre class="jive-pre">
    <wsdl:binding name="CurrencyConvertorSoap" type="tns:CurrencyConvertorSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="ConversionRate">
    <soap:operation soapAction="*http://www.webserviceX.NET/ConversionRate*" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    </pre>
    6. WSDL explains that the version is *1.1* in this case. (However, this same WSDL has the same operation for 1.2 so it probably would work)
    7. No Authentication
    8. soapUI 4.0.1 gave me the soap request which in this case is the following:
    <pre class="jive-pre">
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET/">
    <soapenv:Header/>
    <soapenv:Body>
    <web:ConversionRate>
    <web:FromCurrency>#FROM_CURRENCY#</web:FromCurrency>
    <web:ToCurrency>#TO_CURRENCY#</web:ToCurrency>
    </web:ConversionRate>
    </soapenv:Body>
    </soapenv:Envelope>
    </pre>
    9. Stored response in collection CURRENCY_COLLECTION
    10. Saved my web service reference
    11. Test the web service reference (you have to be on the web service references page and instead of the icon view of the report, use the list view. Click on the test icon to test the web service)
    12. On the test page, change #FROM_CURRENCY# to USD (for US dollars) and #TO_CURRENCY# to EUR (Euros)
    13. Click the test button and you should see a valid soap response with a currency rate within the ConversionRateResult tags
    USING THE WEBSERVICE AND GETTING RESULTS:
    1. Went back to the application and hit "*Create Page*" -> "*Form*" -> "*Form and Report on Web Service*"
    2. Selected my CURRENCY_TEST web service reference
    3. Next on the next page
    4. For input parameters, left the defaults to create 2 inputs, From_Currency and To_Currency
    5. Soap Style for this is Document (found in the WSDL as an attribute just after the soapAction attribute in the WSDL snippet above)
    6. Message Format is Literal (Also found above in the wsdl:output for this operation under the use attribute)
    7. XPATH is a bit complicated. In this case put */ConversionRateResponse* (I used the soapUI 4.0.1 to send the request and get back the soap response to see what the response tags would include and which path I'm going to)
    8. Message Namespace is http://www.webserviceX.NET/ (which is also found in the response soap message - I'd really recommend a tool to test this outside of APEX)
    9. For Parameter Names there is only one and it is ConversionRateResult (also found in the response soap message)
    10. Finish and run the report.
    OTHER GOTCHAS:
    So I finally got this to work, but in my case I was querying a remedy webservice and the xml tags I get back are all xmlns:ns0 and all response tags prefaced with ns0:
    In this case I had to after using the wizard go back and edit my query to change xmlns to xmlns:ns0 since the builder only assumes xmlns.
    <pre class="jive-pre">
    select extractValue(value(t),'/*/ns0:Assigned_Group','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assigned_Group"
    , extractValue(value(t),'/*/ns0:Assignee','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assignee"
    , extractValue(value(t),'/*/ns0:Resolution','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Resolution"
    , extractValue(value(t),'/*/ns0:Status','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Status"
    from wwv_flow_collections c,
    table(xmlsequence(extract(c.xmltype001,'//ns0:HelpDesk_Query_ServiceResponse','xmlns:ns0="urn:HPD_IncidentInterface_WS"'))) t
    where c.collection_name = 'INCIDENT_TEST'
    </pre>
    Good Luck!
    Jonathon

  • Web service not working when called remotely

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

  • 7520 All in one web services not working

    I got notified of a new update for the 7520. When I tried to install it, the screen said it was successful but then said "updating....do not turn power off" and it freezes and the update never gets successfully installed and I have no web services. I tried reiinstalling the whole software package, restarted the printer multiple times and the router too and can't seem to find an answer.  Anyone know what to do next?

    bjg1,
    Welcome to the HP Forum.
    Assuming you can get to the point where you can get the software installed, you might be able to get Web Services back using the following workaround.
    Suggested Workaround:
    On the printer, Disable the web services -- that is, remove web services from the printer.
    This may then allow you to then "Enable Web Services".
    There is a consequence to this action:  Your previously selected ePrint custom address will no longer be valid and cannot be reused.  When you go back and log into your HP Connected account you may need to not only "add device" to re-add the printer to the device list of ePrint printers, you will have to select a new custom email address for that printer.
    Where / how is this done?
    Side Bar: The Disable Web services is usually done on the printer, although if the service is actually working, one can switch off EWS from EWS.  
    Disable EWS on the printer, wait a few seconds, and then Enable the service again.
    Switching off EWS does not "break" your HP Connected account, although it does put a crimp in your printer's ePrint setup.  You can still log into the HP Connected account where the printer and the ePrint account is managed.    After EWS is disabled / enabled, you must log into your HP Connected account.
    If you do not find your printer listed under the Devices tab, you can usually "add device" and add your printer right back into the list at this point.
    If you do find your printer, but it won't cooperate, it won't update, you cannot "do" anything with it, go ahead and remove it. 
    If you have to "remove the printer", then Log out of  HP Connected. 
    If you have to "remove the printer", then Walk around your house / office / back yard -- come back.
    Log into HP Connected and use "Add device" to add your printer.
    Update the ePrint email address to something new - add a number, think of something new and clever; it does not matter as long as the name is different.
    Click the Kudos Thumbs-Up!
    It is a nice way to say “Thank You" for the help.
    Although I strive to reflect HP's best practices, I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • Web Services Not Working

    Hello Everyone!
    I have an HP Laserjet M1217nfw printer. Got everything working just fine, but when I try to get web services enabled (through the printer's web interface) I get the following error message when clicking on the "enable" button:
    "Connection Error. Check Internet Connection".
    I found several posts up here, and the fix seemed to entail changing the DNS server settings (in the printer) to Google's DNS numbers, 8.8.8.8 and 8.8.4.4. That did not work.
    I also tried to update the printer's firmware, however I get a message during the update to disable the printer's RFU (remote firmware update). I have found no way to do this, and the update fails when I attempt it.
    Sooooo......
    I'm  looking for anyone who either knows a fix for the web services error message.....or who, at the very least can tell me how to disable RFU on the printer so I can try updating the firmeware.
    Any help on this would be greatly appreciated.

    Hi WildNorth
    Here is a url on how to print the configuration report.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02217343&cc=us&dlc=en&lc=en&jumpid=reg_r1002_us...
    Let me know what it is showing for the firmware date please.
    The newest version is Version20130912.
    Printer on wireless or hardwired network?
    What operating system are you running?
    I will send you a private message with more information to try.
    In the forum beside your handle name just click on the
    envelope to view it.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • CF Web Services Not Working

    We did a clean install of ColdFusion 8 and a new install of
    Windows Server 2003 and IIS 6 and then moved the current site to
    the new server. Since the move we have been unable to access any of
    the previously working CF webservices through either Flex or CF.
    The wsdls do display when entered into the browser
    Flex is returning the following:
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032:
    If I try to add the web service in the CF Administrator I
    get: Error creating web service. Please ensure that you have
    entered a correct Web Service name or URL.
    When running with the cfinvoke tag the following error is
    received:
    13:17:05.005 - Application Exception - in
    D:\cf_web_root\dev\dgreen\wstest\wstest.cfm : line 13
    coldfusion.jsp.CompilationFailedException: Errors reported
    by Java compiler:
    Found 1 system error:
    *** Semantic Error: The input file
    "C:/ColdFusion8/stubs/WS-1559093840/skidshop/invoices/common/cfcs/LOV.java"
    was not found. That file actually does exist
    Any suggestions would be appreciated

    Hi,
    Please check if there is a default proxy in your web.config. If so, try removing it and check.
    <system.net>
    <defaultProxy>
      <proxy usesystemdefault="True" proxyaddress=http://127.0.0.1:8733 bypassonlocal="True" />
    </defaultProxy>
    If you are trying to connect SQL database, you will need to explicitly add a firewall rule with your local IP address
    #Deploy a Secure ASP.NET MVC app with Membership, OAuth, and SQL Database to a Windows Azure Web Site
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    Regards,
    Mekh.

  • One of the Web Service not working

    Hi All,
    I have created a AIF for Posting Goods Receipt for a Purchase Order.
    The form is using 2 web services: 1) for Getting the Purchase Order details, and 2) for posting the Goods Receipt for that PO.
    The form was working absolutely fine for the Customer, i.e. customer was able to fetch the PO details as well as Post the Goods Receipt for that PO.
    Then, based on the UAT comments from the customer, we did some minor changes in the function module correponding to the web service which fetches the PO details. We also did some script changes in the form.
    After the deploying the changes, the Web service corresponding to Post Goods Receipt has stopped working for the Customer, though the other web service(PO Get Details) is still working fine for them. When the Customer clicks the Button on which the Post Goods Receipt web service is called, they get no response at all.
    What is more surprising is that both the web services are still working fine for us(developers).
    Please help.

    Hi Chintan,
    One of the fields on the form was mapped to the SAP field which was of length 16 characters.
    If the user enters more than 16 charcters on the form....iTHe Web Service does nothing
    I restricted the length to 16 on the form and it started working again

  • Web service not working

    Hi all,
             I created a webservice for a function module.
    Note : already there was a group of function modules in the webservice. I have included recently developed function module in the same webservice.
    In soamanager, this function module is existed. but when i test that function module in soamanager, it is throwing an error  saying -
    CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS9F3FEB5B8A0EC491810.Value 01-04-2009 is not a valid date in accord with the XML format for ABAP
    please guide me to solve this issue.
    thanks and regards,
    Murali Krishna T

    Are you passing a date to the web service? Check out the type of the corresponding field, usually in the SOAP messages you have to stick to [ISO 8601|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#isoformats] for date and time formats. This means that your date should be of form yyyy-mm-dd (see also the schema definition for the [date|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#date] type).
    Cheers, harald

  • Error when importing Web Service Model

    Hi,
    I am having trouble importing a Web Service model into my Web Dynpro component.
    I have successfully published my SessionBean method as a Web Service which works correctly when used from the Web AS Web Service Navigator.
    However, my Web Dynpro cannot correctly create a model from the WSDL. The problem seems to be with the last parameter of the method, a two-dimensional array of Strings. When importing the web service model, the following line of code get created in the respective Model class:
    logicalPort.generateMetadata(this.getKeywordsAsArray(), this.srcLang, this.getTgtLangAsArray(), ERROR no prop = parameters
    Obviously there is a problem with the code generation for the last parameter (the two-dimensional array) which results in this "ERROR no prop = parameters" message.
    Does anyone have an idea what I might be doing wrong? Is there a problem with multidimensional arrays in Web Dynpro model classes? I originally wanted to use a HashMap but naturally had to use a simple data type - any other ideas for a workaround?
    Cheers,
    Tim

    Hi,
    First, can you check whether you able to access your web service url in browser?
    or
    you can test your webservice from the NWDI Web service perspective, here you can test your web service is correctly functioning or not before using in your Web Dynpro application.
    This document clearly explains How to test the web service url and what is the correct procedure to consume the web service in SAP portal.
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b07992b3-b5af-2a10-9886-affcbeccc4c9]
    [http://help.sap.com/saphelp_nw70/helpdata/en/f4/1a1041a0f6f16fe10000000a1550b0/content.htm]
    Regards
    Raghu

  • How to use generated code from "Import Web Services" with Cairngorm Framework

    I recently downloaded Flex Builder 3 beta 2 and tried out the
    wizard that lets you import web services. The code that is
    auto-generated makes if fairly straight forward to consume web
    services using the object types defined in the WSDL. No longer does
    the developer need to decode the XML payload! The only problem I am
    having is how does you integrate the auto- generated code with the
    Cairngorm framework? This seems like a huge question for anyone who
    might want to leverage Cairngorm and the auto-generated proxy code
    in the same project (like me).
    Here are the problems that I see so far.
    1) How do you configure the generated service class to work
    with the Cairngorm service locator? The service constructor only
    accepts a “LCDS destination string” which implies that
    you must use Lifecycle data services. Unfortunately, the project I
    am trying to retrofit currently uses a WebService and does not use
    data services. All I really need to do is change the endpoint URL
    (ie from local to a development server). This issue is noted in the
    bug https://bugs.adobe.com/jira/browse/FB-8456. What I think is
    needed is a way to set the endpointURI in the Services.mxml file.
    2) Even if I come up with a hack around #1, I do not receive
    a callback to my IResponder even though I register it immediately
    after the method call. I can register and listener function within
    my business delegate and receive the callback, but my Command
    object, which implements IResponder, does not receive the call back
    even though it is registered. From what I read in the ASDocs it
    should but it doesn’t for me!
    These are the issues I have observed in 3 hours of messing
    with this. I hope this makes sense. I would love to integrate
    auto-generated web service proxies into Cairngorm but I don’t
    see a straight forward way without re-architecting Cairngorm. Has
    any one else run across this issue? If so, do you have any insights
    on how to proceed? Any help is appreciated.

    Since I posted this question, I have abandoned the notion of
    auto-generated web services and embraced the good old FDS concept
    where the RemoteObject meta-tag does all the conversion work for
    me. We are now using the Granite DS package and it is working well
    for us. I would love to consume web services, but it just isn't
    worth the hassle when all you have to do with Granite (and FDS) is
    cast your return objects to the proper object type.
    BTW, since this posting, I have investigated competing Flex
    app frameworks. After my research, I checked out the PureMVC
    framework. Wow!! Cairngorm always left me with an uneasy feeling
    and I guess I am not alone. Apparently, Cliff Hall felt the same
    way. That is why he started the project. I like his approach alot
    more than Cairngorm especially since it includes notifications
    which allow me to broadcast my own app level events independent
    from the AS Event framework. Check out PureMVC. For what it is
    worth, it has my humble endorsement. Cliff was even gracious enough
    to acknowledge the other Adobe Consulting guys for their work. Good
    for you Cliff, I respect that. Check out a better way at
    http://www.puremvc.org/

  • Who create Web service in flex 3? Or import  web service flex 3

    Please import web service flex 3, work code example
    (Alguine quien me colabore mostrando un ejemplo trabajando
    con web services en flex)

    do not use the forum as marketing place for you site. if you want to share the content with SDN users, you have the blog area, wiki, article area.
    raja

  • CAF service: import web services using Remote Location / File System

    Hallo Experts
    I use the NetWeaver DevStudio 7.1 SP5.
    I have a CAF project and in this project I want to import one WebService as external service. I have chosen the option "Remote location/ File System" in the import web service wizard, then I enter the URL in the following step. But at the end of wizard I got the error "WSDL could not be downloaded because Server returned HTTP response code 403 for URL". The web service I've deployed and tested on the server. It runs well. Any Hints?
    Thanks in advance
    Kind Regards
    Ping

    Hallo
    I found out: if I enter one URL "http://xxxx.xx.ch:51000/ExampleService/ExampleBean?wsdl&mode=ws_policy". Afterwards I got the error "http://xxxx.xx.ch:51000/ExampleService/ExampleBean?wsdlmode=ws_policy". & ist not correct displayed. Is this the problem that I got 403 Error... It is a bug in SP5
    Thanks if you can tell me some work-arround.
    Ping

  • Pulling Data from an imported web service into a data grid - Flex 3.0

    Hi all,
    I have created a web service from Oracle using JDeveloper and imported it into my Fex 3 project, and I am trying to populate a data grid with the data from the web service.  I was trying to emulate the example found in my Adobe Flex 3.0 for Dummies book (see http://dougmccune.com/flexfordummies/chapter14/srcview/index.html), and while the code from the book with that data service works fine, I can't get my application to work.  My issue is with the part of code mx:DataGrid dataProvider="(service)"  - I do not know how to specify what to use for the data source to populate the data grid from my imported web service.  Any suggestions or examples would be helpful, as I am a newcomer to Adobe Flex.  My code is as follows:
    <?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"xmlns:webservices="
    generated.webservices.*">
     <mx:Script>
    <![CDATA[
     private function getData():void {service.getPdRec(ageDt.text);
    ]]>
    </mx:Script>
     <webservices:PD_Pct_Web_Service id="service" />
     <mx:VBox>
     <mx:HBox width="100%">
     <mx:TextInput id="ageDt" width="100%" />
     <mx:Button id="submitButton" label="Search" click="getData()" />
     </mx:HBox>
     <mx:DataGrid dataProvider="(service.getPdRec_lastResult
    " rowHeight="
    58" width="100%" height="300">
     <mx:columns>
     <mx:DataGridColumn dataField="creditManager" headerText="Credit Manager" width="40" />
     <mx:DataGridColumn dataField="pdTarget" headerText="PD Target" width="40" />
     <mx:DataGridColumn dataField="totalPd" headerText="Total PD" width="40" />
     <mx:DataGridColumn dataField="pdPct" headerText="PD Percent" width="50" />
     </mx:columns>
     </mx:DataGrid>
     </mx:VBox>
     </mx:Application>
    My web service returns the following when invoked:
    <env:Envelope
      xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:ns0="http://erec_db/PD_Pct_Web_Service.wsdl/types/">
    <env:Body>
      <ns0:getPdRecResponseElement>
       <ns0:result>
        <ns0:creditManager>Cobb</ns0:creditManager>
        <ns0:pdTarget>10</ns0:pdTarget>
        <ns0:totalPd>147.65</ns0:totalPd>
        <ns0:pdPct>26.77</ns0:pdPct>
       </ns0:result>
       <ns0:result>
        <ns0:creditManager>Collova</ns0:creditManager>
        <ns0:pdTarget>10</ns0:pdTarget>
        <ns0:totalPd>27.71</ns0:totalPd>
        <ns0:pdPct>21.67</ns0:pdPct>
       </ns0:result>
       <ns0:result>
        <ns0:creditManager>Lee</ns0:creditManager>
        <ns0:pdTarget>10</ns0:pdTarget>
        <ns0:totalPd>33.61</ns0:totalPd>
        <ns0:pdPct>72.38</ns0:pdPct>
       </ns0:result>
       <ns0:result>
        <ns0:creditManager>Maynard</ns0:creditManager>
        <ns0:pdTarget>10</ns0:pdTarget>
        <ns0:totalPd>74.19</ns0:totalPd>
        <ns0:pdPct>33.69</ns0:pdPct>
       </ns0:result>
       <ns0:result>
        <ns0:creditManager>Ong</ns0:creditManager>
        <ns0:pdTarget>10</ns0:pdTarget>
        <ns0:totalPd>13.26</ns0:totalPd>
        <ns0:pdPct>46.06</ns0:pdPct>
       </ns0:result>
      </ns0:getPdRecResponseElement>
    </env:Body>
    </env:Envelope>

    Use data binding. <mx:DataGrid dataProvider="{service.getPdRec_lastResult}"
    -Radhakrishna

  • Importing Web Service in SAP CPS

    Hi everyone,
    Build version M33.104.
    We are trying to import web services using the WSDL url.
    When i use a URL, that doesn't prompt for userid/password, it is possible to import the job definition.
    When i use a URL, that prompts for userid/password (when access through browser), the import fails at initial parsing.
    I maintained a credential with SOAP protocol and endpoint URL same as the WSDL url.
    Still no luck. Please let me know what am i doing wrong?
    To make sure i'm not missing any per-requisites:
    I do have an empty slot in WebServices.OutboundServer.limitdoes that mean i have to create a process server? is yes how?
    Maintain the credentialI have maintained the credential, but how does the import web services job definition know to use that credential. In other words, how does the credential and Import_Web_Service job definition are linked?
    Thanks
    Nanda

    Hi Nanda,
    The endpoint s/b the hostname, for example https://hosti23csd01.company.com:50001, could you ask the middleware expert what the valid authentication protocols are ? As Gerben said, we need basic authentication. The "endpoint" is only used to count the outbound web services ... it has little to do with the code.
    You can get NTLM/NTLMv2 to work, but that requires external libraries (JCIFS) and it requires you to hack support into the Java code. Means you have import the JCIFS jar file into a library, and write the authentication code yourself in the redwood script job definition.
    You do not need a web services process server, web services are supported via RedwoodScript (the Java-like language).
    Oh, and the error you are getting is because CPS does not support importing WSDL's for which authentication is required, this is the error you are getting.
    Can you download SOAPui and test with that ? If you can get the web service to work in SOAPui, we would need to know the authentication protocol used. Is the remote server running on Windows or UNIX ?
    One other thing, you might be able to configure the web service if you go to https://hosti23csd01.company.com:50001/nwa/ssadmin.
    You can go to https://hosti23csd01.company.com:50001/wsnavigator to test it.
    Regards,
    HP

Maybe you are looking for

  • Music + ical bug

    I have found a recreatable bug that is somewhat annoying. When listening to music I hit the home screen button then the iCal button. When iCal is loading the music stops and iCal crashes. It happens everytime. Does anyone else get this? Thanks!

  • Macbook to PC transfer?

    I would like to connect my macbook to my friends viao to get all his music off of itunes via ethernet cord. Is this possible? If so what must I do to enable the transfer?

  • Export into multiple formats in one single task

    Ever so often I have to export the same files in various Formats, for example one client wants a small JPG in low quality for layout, a full size JPG in 100% Quality and a DNG in case they still have to make corrections before going to print. To this

  • Is the Z30 from verizon a full package or a chastised unic ?

    have been looking at the dark side, Blackberry; like the feel , the OS, Seems a more secure software. have not had either the homegrown or the redheaded stepchild. any body have comments?

  • WINDOWS 7-NEED HP COLORLASERJET 2840 SERIES PCL6 DRIVER-LOT OF $$$ IN 2840

    My 2840 worked with XP but won't print in windows 7.  I tried all the HP fixs and the driver in windows 7 to no avail.  Any help?