Creating a Webservice for portal Component

Hi experts ,
i have portal component , for which i want to create webservice , i e. wanted to publish it as a  wsdl ,
Im using NWDS 7.01 and here i have already created a portal component of type JSPDynpage , now in nwds after opening Webservice Perspective ,
im not able to create VI and WSD for the component ,as im getting error as Project does not have the right nature. please provide a solution .
Regards
Govardan Raj

Hi,
go thro this thread, that discusses same topic and has explanations.
/thread/36796 [original link is broken]
the following thread may also help you.
Creating a new web service...
regards,
P.Venkat

Similar Messages

  • How to access the webservice in portal component

    hai
         how to access the webservice in portal component.
         anyone knows give the solution
    Rds
    Shanthakumar

    Hai
    Please check this link.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/connectivity&
    Regards

  • How to Call Webservice in Portal Component?

    Hi Experts,
        Currently, I have a URL of WSDL file, how can I consume this webservice in portal component. I know that we can call webservice via webdynpro application/standalone proxy/deployable proxy, but it seems different in portal component.
       Thanks & Best Regards,
       James

    Accessing an External Web Services in Portal
    Accessing an External Web Services in Portal
    http://help.sap.com/saphelp_nw04/helpdata/en/e9/ae1b9a5d2cef4ea4b579f19d902871/content.htm
    Consuming Web Service from ABAP
    Consuming Web Service from ABAP

  • How to create a hint for a component(awt),thanks

    How to create a hint for a component(awt),the component of awt has not the property.

    If you are talking about a tooltip, this is going to be hard.
    You are probably going to have to use a mouseMotionListener to get the event that the mouse is over the component and then a Timer to fire the showTooltip event if the mouse hasn't moved in some amount of time.

  • How to create a webservice for sap transaction?

    Hello All,
                  I developed a custom program and created a transaction for that? Is it possible to create a webservice for this custom transaction  ? If yes,how should we ?  I have seen many documents which all describing to creartion of webservice for an RFC only.
    Please help in this regard...
    Thanks ,
    Ravi

    Hello,
    You cannot create a Web Service for an ABAP program/transaction directly. You have to move the logic into an RFC. Only RFC, BAPI & Business Object can be converted to Web Service using the Wizard.
    Thanks,
    Venu

  • Creat RFC destination for portal

    Hello,
    when i am doing RSPOR_SETUP , i am getting java and abap support package versions are different error message for step 2, i.e creating RFC destination for portal.
    Please send me suggestion regarding this issue.
    regards
    Sreesudha

    is ur BI and Portal SP versions different ?? ....if true ?? make sure they have the same SP
    use this link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00bed70a-7501-2a10-ec9e-9a04485ab477
    for guidance......

  • Development Tool for Portal Component

    Hi all,
    I am preparing the environment required to develop SAP NetWeaver Portal Component. I've downloaded SAP NetWeaver Developer Studio 7.2, however, I can't create a Portal Application as has been instructed in the SAP documentation. There's is no option as "Portal Application" in the new project creation wizard.
    Any help is appreciated.
    Thanks.

    Hi,
    there are many tools for monitoring different stuff on portal in different ways, but as you said you are new i would suggest you to go with manual stuff so that more things can be viewed.
    please check below links for more details:
    http://help.sap.com/saphelp_nwce10/helpdata/en/2e/30e93adccb444b871f3d4e7f905b84/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7b/86eb3f0c49f106e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/5a/84b83b3683094be10000000a11402f/content.htm
    /people/daniel.wroblewski/blog/2007/01/02/mysteries-of-the-portal-activity-report
    /people/daniel.wroblewski/blog/2007/01/17/mysteries-of-the-portal-activity-report-ii
    /people/daniel.wroblewski/blog/2007/01/23/mysteries-of-the-portal-activity-report-iii
    Regards,
    Pavan
    Edited by: Pavan Kumar on Jul 22, 2009 12:38 PM

  • Create a WebService in portal.....

    HII frnds..
    How can we create web service in portal
    I also have a problem that how can i  undeploy  a webservice from web service navigator . I know that we can do this with the help of SDM . Can we undeploy this without using SDM.
    Thanks...

    hi mayuank,
    see the below urls.....
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0cac0dea-0d01-0010-edb4-8c7b068f4677
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ceea45f3-0c01-0010-049c-c2b001f590fb
    yes we can undeploy using sdm
    better for undeployment see belo links
    Modifying Web Service Application After Deployment - 20k -
    http://www.eclipse-plugins.info/eclipse/plugins.jsp?category=Web+Service&firstItem=11&pager.offset=10
    thanks
    karthik
    reward me if usefull

  • Best Practice : Creating Custom Renderer for Standard Component

    I've been reading the docs and a few threads about Custom Renderers. The best practice seems to be to create a Custom Component where you need a Custom Renderer. Is this the case?
    See [this post|http://forums.sun.com/thread.jspa?forumID=427&threadID=520422]
    I've created several Custom Renderers to override the HTML provided by the Standard Components, however I can't see the benefit in also creating a Custom Component when the behaviour of the standard component is just fine.
    Thanks,
    Damian.

    It all depends on what you are trying to accomplish. Generally speaking if all you need is for the user interface output to be changed then a renderer will work just fine. A new component is usually made in order to provide some fundamental change in server side functionality not related to the user interface. - Ponderator

  • Creating A Dialog for a component

    I'm writing a component for which I'd like to pop up an error dialog when a certain error occurs. The dialog is a little too detailed for a JOptionPane to suffice (The list of errors can be quite long so I want to put it into a JScrollPane and as far as I can see I can't do that with JOptionPane) so I'm going to have to create my own dialog.
    The problem is that I'm writing a component and I don't know what the parent frame will be. How can I get hold of this information? Or is there a way to make a modal dialog that doesn't need to have a parent Frame/Dialog?

    Just use a dialog and ask for the parent frame in the constructor. Some thing like that
    public DetailedErrorDialog(Frame frame, String title, boolean modal) {
          super(frame, title, modal);
          try {
          //initComponent();
                     // Do what ever you want to do.
          } catch (Exception ex) {
          ex.printStackTrace();
       }

  • How to create a Webservice for Adobe Form(I need Coding)?

    Hi,
    I need coding for Webservice inorder to define the context structure for Adobe Form.
    In AdobeForm:
    1) I create a dataconnection and while creating it i need to give WSDL Url.
    2) I have created it.
    3) But iam not getting the Context structure in the Dataview.
    For this wht coding i need to write in WSDL File?
    Any Help is Highly aprreciated with Points.
    Very urgent requirement?

    Hi,
    I'm not exactly sure what your problem is.
    A description on how to call web services can be found in my blog:
    /people/juergen.hauser2/blog/2008/02/25/using-web-services-with-sap-interactive-forms-by-adobe-overview-tips
    If you are facing an issue with what is displayed in the data view for the WSDL data connection (i.e you are missing nodes) you could try to use Designer 8.0 instead since it cotains bug fixes in that area.
    Regards,
    Juergen

  • Way to create async webservice for BPEL to interact

    In Orderbooking tutorial, there is a Rapid Distributors async BPEL service. However, if we would like to implement Rapid Distributor in Java WebServie in JDevelop 10g, is it possible to do so?
    Does anyone have experience on creating async Java Web service for BPEL to interact in Oracle JDevelop 10g?

    Blackmirror wrote:
    I need to communicate external .NET webservice through our java client.
    Can someone tell me which is the best way to create client stubs(java based) ?No. And if they could it would be their opinion.
    I am trying to use jaxws based client from netbeans but it refused to create ..said duplication of classes ..its already generated and u need manually costumize wsdl :-( If you have an error, post it or search Google for info on it. Not sure what you're doing wrong and I don't use NetBeans.
    As i dont want to go through this mess ,i want some easy way how can i generate java stubs without doing too much editing in wsdl.Huh? You don't have to editing the WSDL to generate a stub.

  • How to create Task Wizard iView in Portal Component

    Hi All,
    I want to customize the Create Request for Nomination which is in Task Wizard iView (portal content/portal users/standard portal users/com.sap.workflow.iviews/Task Wizard)
    This iView created in Webdynpro application. I want to create this iView in portal component. kindly help me to develop.
    I seen the createTask API for webdynpro in help.sap.
    http://help.sap.com/saphelp_nw70/helpdata/EN/46/94b9b2b321581ce10000000a1553f7/frameset.htm
    anybody know the create Task API for Portal.
    Thanks,
    Thillai.

    Need to do custom develop

  • Error while creating WebService for BAPI

    Hi,
    I am trying to create a webservice for BAPI, i created Virtual interface and Webserice and activated.
    In transaction code WSCONFIG i checked webservice has been released. When i test webservice i am getting following error in browser.
    - <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SOAP processing failure, error id = 112</faultstring>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>
    Could u please tell me whats wrong on this?
    thanks for ur time.
    Murali.

    Does tht mean i need to add the following code
    Line item number.
    item-itm_number = '000010'.
    itemx-itm_number = 'X'.
    Material
    item-material = p_matnr.
    itemx-material = 'X'.
    Plant
    item-plant    = p_plant.
    itemx-plant   = 'X'.
    Quantity
    item-target_qty = p_menge.
    itemx-target_qty = 'X'.
    APPEND item.
    APPEND itemx.
    For second item.
    Line item number.
    item-itm_number = '000020'.
    itemx-itm_number = 'X'.
    Material
    item-material = '600020001'.
    itemx-material = 'X'.
    Plant
    item-plant    = p_plant.
    itemx-plant   = 'X'.
    Quantity
    item-target_qty = p_menge.
    itemx-target_qty = 'X'.
    APPEND item.
    APPEND itemx.
      Fill schedule lines
    lt_schedules_in-itm_number = '000010'.
    lt_schedules_in-sched_line = '0001'.
    lt_schedules_in-req_qty    = p_menge.
    APPEND lt_schedules_in.
      Fill schedule lines
    lt_schedules_in-itm_number = '000020'.
    lt_schedules_in-sched_line = '0002'.
    lt_schedules_in-req_qty    = p_menge.
    APPEND lt_schedules_in.
      Fill schedule line flags
    lt_schedules_inx-itm_number  = '000010'.
    lt_schedules_inx-sched_line  = '0001'.
    lt_schedules_inx-updateflag  = 'X'.
    lt_schedules_inx-req_qty     = 'X'.
    APPEND lt_schedules_inx.
      Fill schedule line flags
    lt_schedules_inx-itm_number  = '000020'.
    lt_schedules_inx-sched_line  = '0002'.
    lt_schedules_inx-updateflag  = 'X'.
    lt_schedules_inx-req_qty     = 'X'.
    APPEND lt_schedules_inx.
    But i guess it is overwritting my frst material..
    Also i m gettin a error 
    For object rv_beleg, number  range interval doesnot exist
    Pls suggest

  • How to access a  web service(.wsdl) from portal component.

    Hi ,
    Is there any document/tutorial available on how to access a webservice from portal component ?
    I have found this linkhttps://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/g-i/how to access a web service.htm...
    but the urls in the link are not working...
    i want  to know the steps to access webs service and sample code if some body has already done that..
    Thanks for the help.
    Lakshmi

    Hi Lakshmi,
    See the links below:
    http://help.sap.com/saphelp_nw04/helpdata/en/f0/581140d72dc442e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/918340d990ce62e10000000a155106/content.htm
    Hope this helps.
    Regards,
    Pooja.

Maybe you are looking for

  • EXPDP Job Monitor

    View Select * from dba_datapump_jobs hangs any possible cause or any other query to check the status of the job ?

  • How can I tell if time machine is backing up my user folder?

    I use time machine, but I'm worried that my user library folder (containing my Mail folders) isn't being backed up. I can't see it when I browse the time machine folders, but then again, I can't see my user library on my dard drive without using the

  • How to create @prompt filter at universe level for my Webi reports

    Dear all, I am using BO XI 3.1 SP3 with SAP BW 7.0. I have created an open[big] query based on a multiprovider for my OLAP universe. OBJECTIVE: to create LOV prompts for Calender year, for my webi reports, which takes 2010 as input then offsets the i

  • IPod Video 30gb - seen in windows, not in updater or iTunes

    Hiya guys, I have recently bought a 30gb iPod. When i connect it to my windows machine - it recognises the iPod in my computer but not in iTunes or iPod updater. I have gone through all the steps suggested on the apple/support section of the website

  • Vendor PAN no.

    Hi all, I want to create one Report in FICO and for each Vendor i want to display PAN,Taxable Amount, Date of TAX. Deducted. I dont know the Tables And fields.. can any one tell me the Fields.. Regards, Sujeet