How to show argument variable names to webservice client

Hi java expert(S)!
This is sri, i am creating a webservice using sun java studio enterprise 8.1 IDE, my problem is consumer(from .net) say ,parameter names are not clear or visible. say, for example, my webservice method look like
public java.lang.String login(final String clientid, final String password) throws java.rmi.RemoteException {...}
to me but for webservice client String login(String_1, String_2). so how to show argument variables to client
webservice client needs to know argument names for proper usage.
Any body knows how to do this, Any help will be appreciated!!!!!
Thanks & Regards,
SRI.

hI
i have posted my wsdl below
If you go through , you can find that in order to call a method , we have to supply string or int arguments but those names are not shown
for example to call login , you need to supply 2 string arguments but how do you know first one is username and second one is for password.
it shows simply string_1 and string_2 as arguments, instead if it shows login(String username,String password) for caller(webservice client), it will be easy to handle you know.
How to do this????
<definitions name="mysws" targetNamespace="urn:mysws/wsdl">
&#8722;
     <types>
&#8722;
     <schema targetNamespace="urn:mysws/types">
&#8722;
     <complexType name="getData">
&#8722;
     <sequence>
<element name="String_1" type="string" nillable="true"/>
<element name="String_2" type="string" nillable="true"/>
<element name="int_3" type="int"/>
</sequence>
</complexType>
&#8722;
     <complexType name="getDataResponse">
&#8722;
     <sequence>
<element name="result" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="getMoreRows">
&#8722;
     <sequence>
<element name="int_1" type="int"/>
<element name="int_2" type="int"/>
<element name="int_3" type="int"/>
</sequence>
</complexType>
&#8722;
     <complexType name="getMoreRowsResponse">
&#8722;
     <sequence>
<element name="result" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="insertData">
&#8722;
     <sequence>
<element name="String_1" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="insertDataResponse">
&#8722;
     <sequence>
<element name="result" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="login">
&#8722;
     <sequence>
<element name="String_1" type="string" nillable="true"/>
<element name="String_2" type="string" nillable="true"/>
<element name="String_3" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="loginResponse">
&#8722;
     <sequence>
<element name="result" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="logout">
&#8722;
     <sequence>
<element name="String_1" type="string" nillable="true"/>
<element name="String_2" type="string" nillable="true"/>
</sequence>
</complexType>
&#8722;
     <complexType name="logoutResponse">
&#8722;
     <sequence>
<element name="result" type="string" nillable="true"/>
</sequence>
</complexType>
<element name="getData" type="tns:getData"/>
<element name="getDataResponse" type="tns:getDataResponse"/>
<element name="getMoreRows" type="tns:getMoreRows"/>
<element name="getMoreRowsResponse" type="tns:getMoreRowsResponse"/>
<element name="insertData" type="tns:insertData"/>
<element name="insertDataResponse" type="tns:insertDataResponse"/>
<element name="login" type="tns:login"/>
<element name="loginResponse" type="tns:loginResponse"/>
<element name="logout" type="tns:logout"/>
<element name="logoutResponse" type="tns:logoutResponse"/>
</schema>
</types>
&#8722;
     <message name="myswsSEI_getData">
<part name="parameters" element="ns2:getData"/>
</message>
&#8722;
     <message name="myswsSEI_getDataResponse">
<part name="result" element="ns2:getDataResponse"/>
</message>
&#8722;
     <message name="myswsSEI_getMoreRows">
<part name="parameters" element="ns2:getMoreRows"/>
</message>
&#8722;
     <message name="myswsSEI_getMoreRowsResponse">
<part name="result" element="ns2:getMoreRowsResponse"/>
</message>
Regards,
Sri

Similar Messages

  • Added dynamic text; How do I stop variable name from showing?

    I am creating a simple game for kids.  On the first page, I added an "input text" field for their first name.  I called the variable firstname.
    When they move to the next page, I used a "dyanamic text" field so I can call them by name on this page.  It works.  However, When I test the game, on the first page, where the firstname is input, it shows    _level0.firstname          instead of just a blank space for them to input their name.
    I know I fixed this in the past and it was something simple, but I can't remember how to do it.  I'd appreciate anyone's help!
    Thanks.

    Beginning with Flash MX (version 6), you assign the text field an instance name using the Property inspector. Although you can use the variable name method with dynamic text fields for backwards compatibility to Flash 5 and earlier versions, Macromedia doesn't recommend this, because you can't control other text field properties, or apply style sheet settings

  • How to show real file name on file download box when the file is downloaded

    Here is my procedure for downloading from Oracle database to the client, the file is stored in a Blob field, a DAD was defined with no errors, in fact the upload works with no errors. The files are in text format, the field MIME_TYPE has the value 'text/plain' and DAD_CHARSET is ascii.
    PROCEDURE download(p_filename IN VARCHAR2) IS
    BEGIN
    wpg_docload.download_file(p_filename);
    EXCEPTION
    WHEN OTHERS THEN
    htp.p(sqlerrm);
    RETURN;
    END;
    All functions are runing well, in fact it downloads with no errors but the file name that is suggested is the name of the package where the procedure es saved.
    How can the real file name be showed on here? it is the parameter p_filename
    I am using IE 6.0 SP 2, Oracle 10g Enterprise Edition Release 10.1.
    Thanks for help
    Yuri Lopez

    I forgot something, i am using Forms [32 bits] Versión 9.0.4.0.19 and using web.show_document with a call to the procedure in the DB

  • How to define a variable name in ABAP?

    Field name         numer
                             1.000
                             5.000
                             3.000
    How to declare this variable x_numer?
    "select single numer into <b>x_numer</b> from TableName"
    Thanks!

    While declaring, you assign type. You can also assign default value or make it constanrt also.
    Like this:
    DATA: USER LIKE SY-UNAME.
    DATA: text_buffer TYPE string VALUE `Text`,
          count TYPE i VALUE 1,
          price TYPE p DECIMALS 2 VALUE '1.99'.
    Go to Se37 or Se38.
    Type RS* and drop down and you will see bunch of programs and FMs. choose any of them.
    this will display the program.
    In that press f1 and you will get the abap help and you can search by key words.
    Ravi Thothadri

  • Import window shows video thumbnails - How to show just file names ?

    iMovie 10
    OSX 10.10 Yosemite
    Importing video from external USB HD, the import window shows thumbnails, how to configure it to show just file names ?

    This seems to have a lot of info.
    http://homepage.mac.com/thgewecke/mlingos9.html
    I got the same question marks when I used a translator on the net to make a file called hello world.txt and hello world.rtf.
    doug-penningtons-Computer:~/Desktop dougpennington$ ls
    Dictionary.app russian.txt ???????????? ??????.txt
    Yahoo Search.app ???????????? ??????.rtf
    Dictionary
    russian.txt
    Yahoo Search
    привет мир
    привет мир.txt

  • How to show busy cursor  when call webservice using as?

    I want to call webservice using script,but i don't know how
    to show busy cursor.please help me

    Show busy cursor:
    >>>
    CursorManager.setBusyCursor();
    <<<
    and hide it:
    >>>
    CursorManager.removeBusyCursor();
    <<<
    Don't forget to catch all events of the web-service to
    securely remove the busy cursor. Especially, you might wish to
    handle events of the 'results received' and the 'faults appeared'
    logical results.

  • How to show a variable screen when clicking on direct link of report in ,when that report is used as target in RRI alsoRRI

    Hi All,
    I have created RRI between two reports and the type is web template/WAD.
    My requirement is to show the variable screen of target report when clicked on direct link and it should not show the var. screen if it goes from jump/go to.
    while currently I can not see var. screen on both the places and when switching the var. scree. display on in web template , it shows the screen at both the places.
    Please suggest.
    Thanks,
    Anu

    Hi Anu,
    "And when I am using another var. in assignment details which is ready for input (in both the queries), its not helping."
    Did you try using such a variable? What kind of a problem do you face? I am sorry I am still trying to understand your problem. I am just saying that which variable you use is not important for the first query. Only in the second query, add a variable with ready for input (I am not sure why the other doesn't work, I just tried and it gave an error, that's why I suggest this) and in RRI connection make the assignment with this variable. Please try this and let me know the result.

  • How to Search for Variable Name in an Apex Page

    Hi,
    Whenever I am writing code and I need to remove a reference to a variable name, I just to a search and replace on the source.
    With Apex, is there a way to do that on the Apex page definition? I have click on every validation, process, report to comb each region for the variable reference. Thanks.

    Hi Samuel,
    Have a look at the APEX views ( Utilities > APEX Views ).
    You can select most (all?) of the information associated with a page and then search the result set(s) for the variables you are looking for.
    I hope this helps.
    Cheers,
    Patrick Cimolini

  • How to show the legend names on the graph on mouse over ?

    I would like to show the legend names on mouse over (not the x axis or y axis name together ) on Mouse over . Is that possible ?

    Welcome to the Apple Support Communities
    To show the hard disk on the desktop, go to the Finder menu (on the menu bar) > Preferences > General, and mark "Hard disks". Also, you can show external disks, network drives, discs... if you want

  • How to change dinamically variable name?

    Is it possible to change variable name dinamically into loop?
    loop at itab.
    move itab-item to field_x.
    endloop.
    I would copy my itab-item into field_1, field_2......field_x at each loop.
    Thanks
    Alfonso.

    You have to use the field symbol for the field giornoX not for the structure
    DATA: BEGIN OF wa_alv OCCURS 0,
            pernr            LIKE pa0001-pernr,
            persk            LIKE pa0001-persk,
            des_grado_abbrev LIKE zhr_descr_grado-des_grado_abbrev,
            vorna            LIKE pa0002-vorna,
            nachn            LIKE pa0002-nachn,
            giorno1          TYPE char12,
            giorno2          TYPE char12,
            giorno3          TYPE char12,
            giorno4          TYPE char12,
            giorno5          TYPE char12,
            giorno6          TYPE char12,
            giorno7          TYPE char12,
          END OF wa_alv.
    data tb_alv like table of wa_alv.
    field-symbols: <giorno> type any.
    data: name_giorno(13).
    LOOP AT tb_alv ASSIGNING wa_alv
      LOOP AT tb_orario.
       do 7 times.
        concatenate 'wa_alv-giorno'  sy-index into name_giorno.
         assign (name_giorno) to <giorno>.
         giorno  = tb_orario-orario.
        enddo.
        ENDLOOP.
    ENDLOOP.
    bye
    enzo

  • How to get the system name of the client?

    Hi,
    I 've followed this Blog:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/getting%252blogged%252bin%252bportal%252buser%252bdetails%252bin%252bweb%252bdynpro
    getSAPUser() method returns the logged in user name.
    Is it possible to get the System name of the client?
    Thanks,
    RPN

    Hi,
    Following Code returns the System id :
    String sid = System.getProperty("SAPSYSTEMNAME");
                                       if(sid.equals("J2E")){
                                            //Do something                                   }
    Siddharth

  • How to show the variable values in key format in the information tab

    Dear all
      in the information tab of the query, we can see all the filters and the variable value. But we can only see the infoobject <b>text</b> of this variable, how can we do if the user needs to see the <b>key</b> of this variable?

    I've referred to the Web API, and find a way to display some specified variable, but since this is the standard webtemplate and we need to show all the possbible variable used in the query. Anybody has better solution?
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="StaticFilter"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="CAPTION" value="SAP_BW_TEXT?program=SAPLRRSV&amp;key=722"/>
             <param name="GENERATE_LINKS" value=""/>
             <param name="WIDTH" value="330"/>
             <param name="ELEMENT_TYPE_100" value="VARIABLE_KEY" />
             <param name="ELEMENT_NAME_100" value="0P_WBSO"/>
             <param name="ELEMENT_TYPE_101" value="VARIABLE_KEY" />
             <param name="ELEMENT_NAME_101" value="0P_PRJ"/>
             ITEM:            FILTERS
    </object>

  • How to display the variable name in right side of the graph

    Hi All,
    i have defined a scatter chart. my requirement is to show the values of the Z-axis or level axis beside the scatter chart. this is already present for the OBIEE pie chart. can we configure the same for the scatter chart.
    thanks in advance.

    Hi Paul,
    Following customized code displays Full Names on my portal:
    private String GetWelcomeMsg(IPortalComponentRequest request, String welcomeClause)
        IUserContext userContext = request.getUser();
        if (userContext != null)
              String firstName = userContext.getFirstName();
              String lastName = userContext.getLastName();
              String displayName = userContext.getDisplayName();
              String salutation = userContext.getSalutation();
              if (displayName != null)
                   if(salutation != null)
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {displayName, salutation, " "}).toString();
                   else
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {displayName, " ", " "}).toString();
              else if ((firstName != null) && (lastName != null))
                   if(salutation != null)
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {firstName, lastName, salutation}).toString();
                   else
                        return java.text.MessageFormat.format(welcomeClause, new Object[] {firstName, lastName, " "}).toString();
              else
                   return java.text.MessageFormat.format(welcomeClause, new Object[] {userContext.getUniqueName()," ", " "}).toString();          
        return "";
    Regards,
    Sergei

  • How can I use variable name as a prameter value in HOST Command ???

    Hi All,
    How can it possible to use variable value in parameter in HOST command ??
    Following in my code:
    host('rwclient server=reptest report=c:\cust_print.rdf p_1= s_sam_cust_id userid=wh1/wh1@dwh desformat=pdf desty=file desname=c:/temp/'||v_sam_cust_id||'.pdf');
    Regards

    Hello,
    The Syntax of the builtin HOST is :
    SyntaxPROCEDURE HOST
    (system_command_string VARCHAR2);
    PROCEDURE HOST
    (system_command_string VARCHAR2,
    screen_action NUMBER);
    So , you can build the system_command_string as any VARCHAR2
    Example are provided in online help :
    http://www.oracle.com/webapps/online-help/forms/10g/topics/f1_help/builth_m/host.html?tp=true
    Regards

  • How to show the "SIA name" in the CMC screen(s) for administration ( BI 4.1 SP5)

    When logging on to "BI4" (cmc) we have several options.
    First option: the web page for the login.
    Our system has 3 SIA's ( DEV , TEST , PROD ), three Tomcat "web app servers" with respective urls
    DEV is a simple one: everything on one machine.
    (exceptions: databases in Oracle, IFRS / OFRS are NAS mapped to D:/something on the BI4-DEV server)
    TEST is separated:
    tomcat on an application server (url:bi4-web-test) ,
    one "management server" BI4-MAN-TEST for SIA,
    a "processing server" BI4-PRO-TEST for the processing services.
    PROD is much like test, only more processing servers on extra machines
    BUT
    logging on to CMC, at either one of these 3 URLs : http:/<siaservername>/BOE/CMC/ ,
    I still have the option: "Server:" ( BI4-DEV , BI4MAN-TEST, BI4MAN-PROD : three different "manager" or SIA names)
    So starting from BI4-DEV, I can log on to BI4-PROD
    My problem: the URL shown in the browser navbar now does NOT tell me any more at which server I am working. The url only shows where I logged in.
    Is it possible to SHOW the ACTUAL SERVER somewhere - say next to the logged-in user name ?
    Instead having a page header showing:
    ... <preferences> ... Welcome, Administrator
    I imagine it showing:
    ... <preferences> ... Welcome, Administrator ON <SIA>
    Is this at all possible ?
    In Boxi 3.1 we could modify the "header layout" for InfoView. Users would see our company logo, their login name ... but we never did that for boxi 3.1 "CMC"
    Now in BI4.1 , with the much more complicated setup, we want to do that.
    I did not find it in the "Administrators' Guide" .... yet.
    Hans Rens,
    Brussels

    ( long reply)
    Thank you for this First step.
    Though reading through your reply, I understand that my question was not clear.
    On the (Launchpad) LOGIN page, I see the company name. That page thus was “customized”
    On the CMC login page, we didn’t customize it. We judged that “Administrators know what they are doing”
    and that “ICT personnel can live with reading the SAP logo instead of company logo/name/colours”
    BUT
    Once logged in to the CMC, every “internal page” (the menu, the Universes page, the Applications page, the Users and Groups – page … ) have a uniform header saying :
    Welcome: HANREN | Preferences | | Log Off
    (yes, HANREN is the name of the BI User logged on)
    I would like to make it something like :
    Welcome: HANREN | BI4MAN-PROD | Preferences | | Log Off
    Where the red name is “the name of the SIA, a.k.a. “manager server” for the (prod) cluster. (or test cluster – and when nothing is showing, we will know “this is DEV” because we “did not customize that one” )
    WHY ?
    At login, everybody KNOWS where he is logging in to, because you need to supply the SERVER NAME
    But further on, working in two (or more) browser windows / tabs, one needs a way to find “where I am”.
    This goes fine, when logging in to DEV on the DEV URL, then opening a second window and logging in to the TEST URL and on the test sia.
    But SWITCHING from one window to another tab … a small indicator would be very helpful.
    Lucky escape ?
    We did have a problem recently, were two admins were loggin on / off to the different systems, looking for differences to correct something … but nobody wanted to “correct” a system that was working well.
    It was quite frustrating to find out that it was “very easy” to think I was working on system1 (in the url) while actually connected to the system3(sia)
    OK, we saw that in time, before the problem from system3 had been “implemented” on system1, instead of applying the solution (settings of working system1) to the faulty system3.
    But the stress of the error found, the search for solutions “asap” … has to be counted in. If there is a simple way to “know” where one is working, instead of having to “guess” , human mistakes can be brought to a minimum.
    This morning I tested again: it is perfectly possible, to open 3 browser windows on exactlu the same URL, then open 3 DIFFERENT CMS logins : one on prod, another on test, a third one with my colleagues login also on test … and the navigation bar will NOT show who is adding user groups in which system.
    Thank you for the first step hint, though. I’ll add it to our documentation.
    It is a little different in BI 4.x than in our boxi-3.x setup )

Maybe you are looking for

  • Missing Features Issue for custom upgraded solutions

    I have restored SharePoint 2010 database for migration and upgraded all my custom solutions to SharePoint 2013 using visual studio 2013 and deployed it successfully on SP2013 environment, but when I run Test-SPContentDatabase command it is giving fea

  • Signing Applets..Policy File

    Hi All, I have developed a Applet to read from local hard disk file. I have signed it. Regarding policy file i hv sm confusion.wihtout policy file also it is working. Isn't must to use policy files. If it is must how and where i will install it on ot

  • After reload and "one-step-back-funtion" start from the begining of the site.

    Hi guys! I build a Website in Muse. So i wanna reach that if someone reload the browser or go one step back the page automatically starts from the top. I tried to insert a HTML-Code like this $(document).ready(function(){   $(this).scrollTop(0); but

  • 7.1 Quirks in Browsing/Selecting/Zooming in Library

    After installing the new iPhoto update, I can no longer drag and drop selected photos when viewing them individually in the library. I also can't scroll through photos if a photograph is being viewed individually, and if I select the zoom bar and zoo

  • Does the Smart cover stays on the new iPad?

    Does the magnets can stays on the new iPad or are incombatible?