How to consume WSDL file in VC

Hi
I have created a webservice in XI system and it has generated a WSDL file. I have saved that in my local pC. How do i use this file and craete web service model in VC. In one of the blog i have seen a URL being used, but i do not have a URL with me.
thanks
sankar

Hi Sankara,
You are getting error because you have not given the proper URL for generating the WSDL. It happened with me also because I was using the default URL which was generated by the system itself. Please try to follow the URL syntax given below:
Jsut more explanation about the URL :
http://host:port/XISOAPAdapter/MessageServlet?channel=:BS_Sender:CC_Sender_SOAPCC
Where BS_Sender = your Sender Bussiness service
CC_Sender_SOAPCC = your SOAP communication channel
Some more helpful links:
Consume a Web Service from Visual Composer
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e017128b-0c01-0010-fa85-
Go to Page 7:
Here its given that without creating the system in portal also you can consume the webservice directly in VC.
But before going to these links confirm that your webservice URL is correct.
Regards,
Nutan

Similar Messages

  • How to consume WSDL from SR in PI 7.1

    Hi,
      How to publish WSDL into SR. How to consume WSDL from SR. Can anybody guide me step by step.
    Thanks & Regards,
    Venkat K

    Hi venkat,
    Check out the blog : /people/daniel.graversen/blog/2008/02/27/publish-services-from-pi-71-to-the-service-registry
    also : https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0f3cf81-e6da-2a10-6891-ef321fdc1a6b
    Thanks,
    Pooja Pandey
    Edited by: Pooja Pandey on Jan 27, 2009 10:26 AM

  • How to read WSDL File

    Hi all,
    I am new in web services...just started yesterday.. my client is provinding web services...I just need to send some data to them and retrieve data back...they are basically verifying addresses..if Address is not corrent then they will send the correct one back..I have no clue which method should I call and how to send data to them..below is my work that I have done so far...please help me...
    ///Below is the Client API that I have made...there is a bean file which I have made for Input Data...
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.namespace.QName;
    public class TestClient {
        public static void main(String [] args) {
           try {
             String endpoint = "http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress";
             Service  service = new Service();
             Call     call    = (Call) service.createCall();
            call.setTargetEndpointAddress( new java.net.URL(endpoint) );
            call.setOperationName(new QName("http://m3group101.mnao.net/", "ValidateAddress"));
         call.setUsername("free");
         call.setPassword("account");       
         AddressIn addressIn  = new AddressIn();
            addressIn.Address1 = "6767 Friars Rd";
            addressIn.Address2 = "";
            addressIn.Address3 = "";
            addressIn.Address4 = "";
            addressIn.City = "SAN DIEGO";
            addressIn.StateProv = "CA";
            addressIn.PostalCode = "";
            addressIn.Country = "US";
            String ret = (String) call.invoke(new Object[] {"",""});      ////Here I donno what should I pass
            System.out.println("Sent DATA, got '" + ret + "'");
          } catch (Exception e) {
            System.err.println("Got Error While retrieving data "+e.toString());
    ///My Bean File Looks like this....
    import java.io.*;
    import java.util.*;
    import java.util.ResourceBundle;
    public class AddressIn {
        public String KeyValue;
        public String Address1;
        public String Address2;
        public String Address3;
        public String Address4;
        public String City;
        public String StateProv;
        public String PostalCode;
        public String Country;
        public AddressIn()
             KeyValue   = "";
             Address1   = "";
             Address2   = "";
             Address3   = "";
             Address4   = "";
             City       = "";
             StateProv  = "";
             PostalCode = "";
             Country    = "";
        } // END constructor
    } // END class AddressIn
    import java.io.*;
    import java.util.*;
    import java.util.ResourceBundle;
    public class AddressOut {
        public String KeyValue;
        public String Address1;
        public String Address2;
        public String Address3;
        public String Address4;
        public String City;
        public String StateProv;
        public String PostalCodeBase;
        public String PostalCodeAddOn;
        public String Country;
        public String Status;
        public String StatusCode;
        public String StatusDescription;
        public String Confidence;
        public String RecordType;
        public AddressOut()
             KeyValue   = "";
             Address1   = "";
             Address2   = "";
             Address3   = "";
             Address4   = "";
             City       = "";
             StateProv  = "";
             PostalCodeBase  = "";
             PostalCodeAddOn = "";
             Country    = "";
             Status     = "";
             StatusCode = "";
             StatusDescription = "";
             Confidence = "";
             RecordType = "";
        } // END constructor
    } // END class AddressInPlease see the WSDL File...
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions targetNamespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns:intf="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://com.g1.dcg/services" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd00="http://www.w3.org/2000/10/XMLSchema" xmlns:xsd99="http://www.w3.org/1999/XMLSchema">
    - <wsdl:types>
    - <schema targetNamespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns="http://www.w3.org/2001/XMLSchema">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="ArrayOf_xsd_anyType">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:anyType[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_tns1_ServiceOption">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:ServiceOption[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_tns1_DataRow">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:DataRow[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_xsd_string">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
      </schema>
    - <schema targetNamespace="http://com.g1.dcg/services" xmlns="http://www.w3.org/2001/XMLSchema">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="ServiceOption">
    - <sequence>
      <element name="key" nillable="true" type="xsd:string" />
      <element name="value" nillable="true" type="xsd:string" />
      </sequence>
      </complexType>
    - <complexType name="DataTableBean">
    - <sequence>
      <element name="columnNames" nillable="false" type="impl:ArrayOf_xsd_string" />
      <element name="dataRows" nillable="true" type="impl:ArrayOf_tns1_DataRow" />
      </sequence>
      </complexType>
    - <complexType name="DataRow">
    - <sequence>
      <element name="values" nillable="true" type="impl:ArrayOf_xsd_string" />
      </sequence>
      </complexType>
      </schema>
      </wsdl:types>
    - <wsdl:message name="processResponse">
      <wsdl:part name="arg0" type="tns1:DataTableBean" />
      </wsdl:message>
    - <wsdl:message name="processRequest">
      <wsdl:part name="arg0" type="impl:ArrayOf_tns1_ServiceOption" />
      <wsdl:part name="arg1" type="tns1:DataTableBean" />
      </wsdl:message>
    - <wsdl:portType name="G1Service">
    - <wsdl:operation name="process" parameterOrder="arg0 arg1">
      <wsdl:input message="impl:processRequest" name="processRequest" />
      <wsdl:output message="impl:processResponse" name="processResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="ValidateAddressSoapBinding" type="impl:G1Service">
      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="process">
      <wsdlsoap:operation soapAction="ValidateAddress" />
    - <wsdl:input name="processRequest">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" use="encoded" />
      </wsdl:input>
    - <wsdl:output name="processResponse">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" use="encoded" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="ValidateAddress">
    - <wsdl:port binding="impl:ValidateAddressSoapBinding" name="ValidateAddress">
      <wsdlsoap:address location="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>I am receiving Exception " No Such Operation "
    I am sorry but I don'n know how to read WSDL file...
    thanks
    Vish...
    Message was edited by:
    vishu007

    Start going through the tutorials that come with Axis (you didn't state which version of Axis you're using btw, and there are major differences between them).
    Anyway, the wsdl you list doesn't have an operation called "ValidateAddress". It has only one operation, called "process".
    The call takes 2 arguments, as defined in the input message, and returns one value as defined in the output message.
    Had you used Axis to generate your classes for you that would all have become quite obvious.

  • How to Consume WSDL FROM PeopleSoft to SAP

    How to Consume WSDL FROM PeopleSoft to SAP
    Points will be rewarded
    thank you,
    Regards,
    Jagrut BharatKumar Shukla,

    HI
    Please refer to the following links
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d5d4a6e3-0601-0010-6aa9-ac3a1f747ea5
    http://www.mindtelligent.com/pdf/details.ppt
    http://www.bea.com/content/news_events/white_papers/BEA_WL_Adapters_ds.pdf
    http://www.oracle.com/technology/products/applications/Events/OOW-2005/S3534_Doron_Avizov.pdf
    http://download.microsoft.com/download/8/9/5/89585721-4774-4b5e-856b-c9db5d2980b3/Application%20Integration%20Fact%20Sheet.pdf
    Regards
    Ravish Garg
    <i>
    Reward if useful</i>

  • Can ABAP proxy to consume WSDL file be run as background job for every10min

    Hi all,
    I have a requirement where I need to build an interface which gatheru2019s the purchase order details and send to external third party software in their required format (as an XML file).
    So I should be the first point of contact and should trigger the interface each time a purchase order is generated.
    So I am thinking that I should develop a background job for every 10 minutes which will look for new purchase orders and gathers the information of the purchase orders and send them to external third party software in their required format.
    I have gone through all the SAP forums and e-Learning but still I have confusion in regards to how is it possible technically? Can some one guide me with some information on the same.
    I have a little bit of confusion and want to know few things.
    1)     Should I create a web service or should I consume a web service?
    2)     If I need to consume a web service, then can I write an ABAP proxy to be run in background fro evry 10 minutes? I mean can we run ABAP proxy as a batch job in the background?
    3)     Is there a difference between consuming an XML file and WSDL File?
    Any Help will be highly appreciated.
    Regards,
    Jessica.

    There are two options (as I know) to generate XML file.
    1. Use XML TRANSFORMATION to get the XML string based your TRANSFORMATION. You can input your data and get back the XML string. Download this string to a file
    Test XML generation program is:
    types: begin of ty_data,
           num   type i,
           end   of ty_data.
    DATA: itab TYPE standard table of ty_Data,
          la_data like line of itab,
          xmlstr TYPE string.
    DO 3 TIMES.
      la_data-num = sy-index.
      APPEND la_data TO itab.
    ENDDO.
    CALL TRANSFORMATION ztest_np1
      SOURCE table = itab
      RESULT XML xmlstr.
    CALL FUNCTION 'DISPLAY_XML_STRING'
      EXPORTING xml_string = xmlstr.
    My ZTEST_NP1 transformation. To create a transformation, click on the transformation in the "CALL TRANSFORMATION ztest_np1" statement. Select Simple transformation type.
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
      <tt:root name="table"/>
      <tt:template>
        <table>
          <tt:loop ref=".table">
            <item>
              <tt:value ref="NUM"/>
            </item>
          </tt:loop>
        </table>
      </tt:template>
    </tt:transform>
    XML string is like:
      <?xml version="1.0" encoding="utf-8" ?>
      <table>
      <item>1</item>
      <item>2</item>
      <item>3</item>
      </table>
    To use this option, you have to create a transformation and than use it to generate the XML string.
    Check this SAP Help
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/7d4719ca581441b6841f1054ff1326/frameset.htm
    2. You can concatenate and create an XML string and download that string into a file.
    Regards,
    Naimesh Patel

  • How to consume WSDL

    Hi,
    How can i consume standard SAP provided WSDL in my r3 system.
    example her eis the WSDL file, how can i consume it
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/get_wsdl.xml?packageid=DEE98D07DF9FA9F1B3C7001A64D3F462&id=09748E1D716511DA36BB000F20DAC9EF_WSDL
    In se80 i created Client Proxy for the aboe url, and also created logical port at lpconfig, and wen i test the proxy at se80...its throughing errors like
    1)SOAP:14 Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/          
    2)Error when processing Web service call          
    3)Error when calling SOAP Runtime functions: Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/          
    Regards,
    Venkat
    Edited by: venkat on Mar 5, 2010 6:33 AM

    Hi...
    link should be like this if u want to use webservice navigator "http://www.27seconds.com:add your port/index.html".
    ex: http://idessapdev.ad.infosys.com:8000/index.html.
    please ask your basis team or CCD regarding port details .
    Regards,
    Lokeswari.

  • How to change WSDL file in application when switching environments

    Hi,
    I have a web application that use WSDL as data control. I developed it in DEV environment and want to deploy it in TEST. How can I change the WSDL file, login/password to point to the new environment?
    Thank you,

    Hi,
    Select the DataControl.dcx file and open the Structure Window. Select the WS Data Control entry and choose "Edit Web Service Connection" from the context menu
    Frank
    Edited by: Frank Nimphius on Nov 6, 2010 11:05 PM

  • How to add wsdl file in development environment

    Hi, I am using visual studio 2008. I am trying to add wsdl file into my web application. I have downloaded the wsdl file from CRM on demand and stored it in one folder "oraclewebservice" in C drive. i am trying to add it through "add web reference" in VS2008. I have defined the path as c:/oraclewebservices/account.wsdl but i am getting error as "The document at the url file:///C:/oraclewebservice/account.wsdl was not recognized as a known document type." i have stored the wsdl file in c drive with .wsdl extension. How can i incorporate wsdl file into my VS development environment.
    Please help me to start webservices using visual studio. I am new in webservices so please explain in detail. I would be very thankful for any sugession.

    I just had the same issue. I'm new to Visual Studio C# and CRM OnDemand development, so I wasted a bit of time on this. In my case I downloaded the WSDL file with Internet Explorer, Firefox didn't work so great. I then went back to Visual Studio, clicked Add Web Reference and pasted the file location (I.e. file:///D:/Microsoft/Visual%20Studio%202008/Projects/LoginHistory/Web%20References/Loginhistory/Loginhistory.wsdl ). Worked like a charm.
    Bill

  • Consume WSDL file in EJB Causes the Error while running in NWDI 7.2

    Hi Experts,
    I have WSDL File its working in the Portal.I have checked the WSDL file WS Navigator.
    Importing the WSDL File:
    I have follow these steps:
    1. I have select the EJB Project and import the WSDL File.
    2. Once the WSDL File is import in EJB Project i have right click the WSDL File and select the Create Web Service Client.
    3. The Below Java Class File is created.
        i) Package-info.java
        ii) ObjectFactory.Java
       iii) Request.java
       iv) Response.java
       v) Remote.java
       vi) Service.java
    4. And then  i have create one client.java and Main.java File to execute the WSDL File.
    5. Run the Main.java file and at the time it shows the below error
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sap/engine/interfaces/sca/logtrace/CallEntry$TraceLevel
    at com.sap.engine.services.webservices.espbase.client.bindings.ConfigurationUtil.getTransportBinding(ConfigurationUtil.java:249)
    at com.sap.engine.services.webservices.espbase.client.bindings.ConfigurationUtil.createClientConfiguration(ConfigurationUtil.java:109)
    at com.sap.engine.services.webservices.espbase.client.jaxws.metadata.InterfaceMetadata.createClientConfigurationContext(InterfaceMetadata.java:178)
    at com.sap.engine.services.webservices.espbase.client.jaxws.metadata.InterfaceMetadata.getProxy(InterfaceMetadata.java:70)
    at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.getPort(SAPServiceDelegate.java:258)
    at javax.xml.ws.Service.getPort(Service.java:92)
    at com.sap.tutorial.testwebser1ejb.TestAddService.getTestAddPort(TestAddService.java:38)
    at com.sap.tutorial.testwebser1ejb.TestAddClient.testAdd(TestAddClient.java:12)
    at com.sap.tutorial.testwebser1ejb.MainClass.main(MainClass.java:12)
    Caused by: java.lang.ClassNotFoundException: com.sap.engine.interfaces.sca.logtrace.CallEntry$TraceLevel
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 9 more
    Please reply if there is a problem in Importing and calling the WSDL file.Reply will help me a lot.
    Thanks & Regards,
    SatheshKumar R

    Are you using the same version for both NWDS and your target SAP NetWeaver system?

  • How to add wsdl files and bpel files in new folders automatically

    Hi All,
    In our project, we have a lot of wsdl files and bpel file generated.
    By default, they are all under the folder of SOA Content, like a mess.
    I want to put them in separate folders.
    I can manually change the wsdl location and manually change references to these wsdls, but it will take a lot of extra time to do so.
    Is there a way to achieve this in UI?
    Thanks and Regards!
    Bruce

    Hi Eric,
    Thanks for your reply!
    I can use refector->move to move the wsdl file to newly created folders.
    But unfortunately, JDeveloper won't update the references to the wsdl files.
    I have to update the references manually, and it will take a lot of time if there exists many wsdl files in one project.
    Thanks and Regards!
    Bruce

  • How to write won WSDL file for SOAP adapter ?

    Hi experts
      Can any one expalin me how to write WSDL file  for SOAP adapter ?
      What and all things i need to know ? i have no idea on this....
      I got the business but to WSDL ...i am very new to this
    Adv...thanks
    Rakesh

    HI,
    Please see the below links,
    Consuming XI Web Services using Web Dynpro – Part II-/people/riyaz.sayyad/blog/2006/05/08/consuming-xi-web-services-using-web-dynpro-150-part-ii
    Consuming XI Web Services using Web Dynpro – Part I -/people/riyaz.sayyad/blog/2006/05/07/consuming-xi-web-services-using-web-dynpro-150-part-i
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0d7349b6-0901-0010-ddbe-ec43178a61ff
    /people/sap.user72/blog/2006/01/16/xi-propagation-of-meaningful-error-information-to-soap-client
    /people/kevin.liu/blog/2006/04/12/wsdl-11-binding-extension-for-soap-12
    Regards
    Chilla..

  • Ws_policy in wsdl file. How do i get rid of it?

    >>I'm generating the wsdl file from display wsdl in sender agreement, also tried publish to SR.
    Dont know this might help. Just give a try.  In Integration Directory  tools -> display wsdl
    Dont use proposed url ... give url as follows
    http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel
    If you dont have party then remove that and as follows
    http://host:port/XISOAPAdapter/MessageServlet?channel=:service:channel
    where host - hostname, port example - 50000 , service - sender business system or component, channel - sender soap channel
    click next and enter
    sender communication component, sender interface, namespace.
    finish  and save wsdl.

    Hi.
    That's how we created wsdl files in XI 3.0.
    Tried it in PI 7.11 and wont get the web service to work at all with that metod.
    BR
    Kalle

  • Consume wsdl, find Adapter registered or not

    Hi all,
         Can any body tell how to know, what are the different adapters which are in active state (registered) in sap xi box? If it is not in active state how to make that adapter in active state. ( I am not able to see the single adapter in RWB(component monitoring(all) )
         I have done a scenario using this weblog. https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3592. [original link is broken] [original link is broken] [original link is broken] [original link is broken]  But what my intention is,  I would like to consume wsdl file using the java application( not with web dynpro)  and I want to deploy this application in j2ee engine. (is it possible to deploy this application in some other j2ee engine( not on xi box) ). I think some body help on this topic. Your help is reward able.

    Hi,
    >>>>I am not able to see the single adapter in RWB(component monitoring(all) )
    open link adapter engine and check from there
    if you still don't see make sure the latest BASIS SWC
    was uploaded with the latest SP
    SOAP will only become active once the first message will
    go through it
    >>>>(is it possible to deploy this application in some other j2ee engine( not on xi box) ).
    if you call via SOAP (WS) then it doesn't matter
    where you put your java app
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • How create a wsdl on document style?

    hi everyone,
    I am trying to do a wsdl on javacaps.
    I did my wsdl and it work ok, but I want do it on document style not in RPC style?
    How can I do it?
    thanks

    Hi,
    I tried to expose JCD as a web service. In this case WSDL will be
    created by JCAPS.
    When i exposed JCD as web service a wsdl file was created with style
    as "document".
    Please let me know how you created wsdl file. Have you created using
    Web Service Definiton in JCAPS. [I tried to create using 
    Web Service Definiton but i don't know how to create binding details].
    Regards
    Venkatesh.S

  • Re: How to generate wsdl using JDeveloper11.5...

    Hi ,
    How to generate wsdl file using schema(ie: Drag and drop process).
    please help me.
    Regards,
    venkatesh.

    In Composite editor When you drag "Web Service" service component in editor, it gives option to create new service and create WSDL form XML schema.
    Jayesh
    http://www.yagnasys.com

Maybe you are looking for

  • Reg. Open Order with Status

    HI, can anyone let me know about Open Order with Status normally that we have to create Generic Extractors to extract that data. thanx in advance peter b

  • Iweb replacement

    I've built several sites using iWeb, but Apple's move to iCloud will kill blog comments, so I'm looking elsewhere... any recommendations? I have to be able to build a site with multiple blogs Specifically: On http://www.mouzon.com, I have a blog wher

  • How do I make my ActiveX Control behave like a LabVIEW native control?

    When a user drops my ActiveX control onto a Front Panel and then views the Diagram, I would like him to see a terminal outputting a specific property value instead of the reference number. In short, I don't want him to have to go to the extra step of

  • Best way of using ni-can instrument

    hi guys i m just going to start labview for my can bus project , i have to use ni-can module provided by univ, so i have to start from basics , i have not any sort of idea how to overcome this please tell quick and working way to do alll this . I hav

  • Error in when loading the flat file for hierarchy

    Hi all, I get this error when i do the entire Hierarchy process and try to upload the flat fil in the infopackage. Has anyone faced this kind of error. No Transfer Structure Available SS_DEMOH IO_SRID_HIER (SY-SUBRC=5) Can someone tell me how to proc