Is it possible to create own soap envolpe and body ?

Hi,
I developed a web service and deployed it on Web Logic server and Glassfish server.
But its soap envelope and soap body is different.
Glassfish Request :
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Header/>
    <S:Body>
        <ns2:getFunctionXML xmlns:ns2="http://webservices.onwardinfosys.com/">
             <functionName>inotification_pkg_ver4.notifications_count</functionName>
          <parameters>IOS_USER</parameters>
          <appUserName>string</appUserName>     
          <appUserPass>string</appUserPass>
          <deviceCode>string</deviceCode>
        </ns2:getFunctionXML>
    </S:Body>
</S:Envelope>
Weblogic Request :
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Header />
    <env:Body>
    <getFunctionXML xmlns="http://webservices.onwardinfosys.com/">
      <!--Optional:-->
      <functionName xmlns="">INOTIFICATION_PKG_VER4.NOTIFICATIONS_COUNT</functionName>
      <!--Zero or more repetitions:-->
      <parameters xmlns="">IOS_USER</parameters>
      <!--Optional:-->
      <appUserName xmlns="">string</appUserName>
      <!--Optional:-->
      <appUserPass xmlns="">string</appUserPass>
      <!--Optional:-->
      <deviceCode xmlns="">string</deviceCode>
    </getFunctionXML>
  </env:Body>
  </env:Envelope>Is it possible to have only one soap envelope and body even if I am deploying web service to different servers ?
Regards,
Ajay Sharma

Ajay Sharma wrote:
Is it possible to have only one soap envelope and body even if I am deploying web service to different servers ?Sure, it is just XML and XML is just text; you are free to just generate your own stuff in stead of using the webservices stack provided by your appserver. But you don't want to do that because what you have is just fine.

Similar Messages

  • Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?

    Hi All,
    I am facing issues in creating  adhoc network in Windows 8.1. After searching in internet, I found that adhoc works with 
    netsh commands.
    1. I have tried neths commands and able to get it work on windows 8.1, 
     but I want to do it through the WLAN APIs ie. WlanConnect ,
    2. I am able to initiate the adhoc network(on Windows 8.1) by using WlanConnect API and other device are also able to connect to the Windows8.1 initiated adhoc  network  but the DHCP is not working.
    -> clients are not able to get the IP address.
    Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?
    Thanks
    akhil

    Hi,
    Did you mean to write a program to implement that creating adhoc via UI? This should be development issue.
    But this is Windows 8.1 client forum and there is no professional on develop.
    To help you better, I suggest you submit a new case on MSDN forum to help to check your code as they will be more professional on your issue:
    This is the MSDN forum link.
    http://social.msdn.microsoft.com/Forums/ 
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.  Thank you for your understanding.
    Kate Li
    TechNet Community Support

  • Is it possible to create a PDF form and send to a group of teachers and have it returned to different email recipeints

    Is it possible to create a PDF form for teachers and have it submitted by email to 3 different principals??

    Yes. As the target URL of your submit button enter something like this:
    mailto:[email protected],[email protected],[email protected]

  • SOAP Header and Body

    Hi All
    I am having a small requirement where my normal java program has to invoke a SOAP client and that will communicate the SOAP server by sending two xml files.
    first xml contains the attributes/properties of the content and
    second xml contains the the actaul content.
    here i have to send the attributes in the SOAP header and content as the SOAP body.
    How can i achive this. I am very new to SOAP protocal.
    please suggest me some links/documents and some guide lines to make this a success.

    Hi All
    I am having a small requirement where my normal java program has to invoke a SOAP client and that will communicate the SOAP server by sending two xml files.
    first xml contains the attributes/properties of the content and
    second xml contains the the actaul content.
    here i have to send the attributes in the SOAP header and content as the SOAP body.
    How can i achive this. I am very new to SOAP protocal.
    please suggest me some links/documents and some guide lines to make this a success.

  • Possible to create new ASM instance and "import" existing diskgroup?

    This is my worst nightmare. Two days before a server was about to be shut down, it crashed on me, corrupting the filesystem where Oracle was installed. Setup was an HP-UX 11.11 server running Oracle 10g with ASM storage on a disk array. Both instances were in the filesystem that got corrupted, and amazingly, we don't have a backup, so I'm not able to restore the instance configs and restart the database. Presumably, my data is still sitting there on the disks that belong to the ASM diskgroup, but I don't know how to get at it. I started by creating a new ASM instance, but I can't figure out if there's a way to create a diskgroup out of those 16 disks without wiping out what's on them.
    V$ASM_DISK shows all the disks as MEMBERs, with the CREATE_DATE that they were originally created, so I know at least the headers are intact. So is there any way I can manually recreate that diskgroup in my new instance so it will mount the disks and let me at the data?
    I realize that not having backups is the height of stupidity, but that boat has sailed. My company also chose not to pay for Oracle Support this year, so I'm kind of on my own. If anybody can at least point me in the right direction or tell me that it's a lost cause, I'd appreciate it.

    Well, a little progress. I was able to finally mount the disks in my new ASM instance, and using asmcmd, I can actually see my datafiles sitting there. So now I'm thinking I should try manually creating a new database instance pointing to the spfile that's in there and try starting that. I'm also going to try using RMAN and the XMLDB FTP trick to copy those datafiles somewhere else so I know I can play with them.

  • Is it possible to Create dynamic outbound plug and it's navigation link?

    Hi,
    i am trying to create an outbound plug in runtime dynamically, is it possible?
    I have found out how to create the outbound plug in wdDoModifyView: "<b>view.getViewInfo().createOutboundPlug()</b>"
    but the problem is how do i set the plug name, and how do i create it's navigation link to bind him to an inbound plug in another view.
    Thanks,
    Carmit

    Hi Carmit,
    the following code snippet creates a link between a newly created outbound plug (outbound plug name is not really necessary) and an already existing inbound plug:
    /* targetViewInfo is the IWDAbstractViewInfo of navigation target
       srcViewInfo is the IWDAbstractViewInfo of navigation source
       Find inbound plug, must exist */
    IWDInboundPlugInfo targetPlug = targetViewInfo.findInInboundPlugs(inboundPlugName);
    /* Create outbound plug with "automatic" name */
    IWDOutboundPlugInfo srcPlug = srcViewInfo.createOutboundPlug();
    /* Create link from out to in */
    IWDNavigationTargetReferenceInfo targetReferenceInfo =
      srcViewUsage.createNavigationTarget(srcPlug.getName(), targetViewUsage, targetPlug.getName());
    /* Fire srcPlug somewhere...*/
    Hope that helps.
    Regards
    Stefan

  • Is it possible to create a SD project and then replace the video later with HD?

    There are a few reason why I want to do this. One is to speed up editing in CS3 and the other is to produce both DVD and BVD discs as the final product.
    My idea was to create a SD project, complete the edit and export the SD master for the DVD. Next I wanted to off-line all the files and then batch capture the video again as HD. In an experiment I found that I needed an HD project so I copied the SD project into an HD project. However, I was not very successful -the captured HD had to be rendered and was not seen as the right format.
    Can you tell me if the idea is daft or if there is a correct way of doing this in CS3?
    Thanks, Tim

    I tried my HD project in CS4 recently. The HD was fine, as expected. I then exported to MPEG-DVD in the media encoder to make the SD version. When I tried this last year in CS3 the SD verion was not very good (understatement). However, the SD version I made from CS4 was very good quailty. Either CS4 has improved greatly or I am now using it properly. So no more HD/SD projects for me. I will edit in HD and export to SD when I have finished.
    Tim

  • Is it possible to create a custom  "archive and install" netinstall image

    10.5.8 Server & 10.5.6 v1 server admin tools.....
    I understand you can customize netinstall images with the Automator actions in System Image Utility but I don't seem to find a Automator action I can apply to my custom netinstall image that will perform an archive and install.
    Is this possible? Any help much appreciated!
    Message was edited by: ptg

    There is no way to do an archive and install through System Image Utility.

  • Is it possible to create Webservice for Classes and BOL Objects?

    hi all ,
    i am new to  sap crm please help me out.
    thanks and regards,
    Ahmad

    Hi Narayana,
    Use BDC's for better maintainance of relationship. which worked fine for me.
    thanks,
    vasu.

  • How to create own Web Items for Web Application Designer

    Hi all,
    is it possible to create own Web Items for the Bex Web Application Designer? Each Web Item has a Master Web Item and a class that is responsible for rendering data. I need a solution to get the Web Item's data - i.e. the content of a table (if Web Item = table). So my approach would be to create an own (Standard) Web Item with an own class. For example I would like to change the table's Web Item parameter <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/> to an own class...
    Is this possible?
    Or ist there any possibility to get the Web Item's data by an interface?
    Any support is welcome...thanks in advance!
    Best regards,
    Dominik

    if you want to create your own webitem check out the link given by other sdner.
    if you want to be able to execute BW query using abap you can check out the following weblog.
    /people/durairaj.athavanraja/blog/2005/12/05/execute-bw-query-using-abap-part-iii
    Regards
    Raja

  • Creating own datatypes/handles

    Hello!
    I have a C library which has differents functions that expect various handles (uint32) as parameters. Calling these functions from within LabVIEW is not a problem. What I want to do is make these handles avaible to the outside, accessible through a SubVI connector, somehow comparable to the "Tasks" in DAQmx functions. I can without problem give them as uint32, however this way different types of handles can easily get mixed up as they all appear as blue lines and look like some integers and are not typechecked at all.
    Is there a possibility to create own datatypes in LabVIEW that basically can be translated to a simple uint32 in order to pass them to a DLL but to avoid mixing up different types of handles outside of the SubVI. It would be comparable to some C "typedef" with additional typechecking when they are passed to a SubVI. This would simplify the use of the VIs I am creating siginificantly as errors with mixed up handles are very hard to spot and cause major run-time errors. Additionally it would be very helpful if it was able to create its own coloring/design for the lines and connectors to make the block diagram look cleaner.
    I am using LabVIEW 8.5.1.  
    Best regards! 

    Two ideas come to mind.
    Type cast your U32 as an datalog reference. That will only give you the option for a green wire. But its traditional and has been around for a long time.
    LVOOP lets you define the appearence of the wires used by a class. So wrapping your dll inside a privat method in its class will give you custom wires.
    Ben
    Message Edited by Ben on 03-12-2009 01:07 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Wire_Colors.PNG ‏26 KB

  • Question: How to create a SOAP service?

    I am working on a POC for evaluation of Aqualogic Service Bus 2.5. I am facing a difficulty in the following aspects.
    1. I have a client on my system which reads a data service from DSP and gives a custom object in return.
    2. There is a client on another system which has to use the returned custom object through a remote procedure call to my function.
    3. I dont want to create a web service just for this purpose.
    4. So I want that the object will be communicated to the other client in the form of a SOAP message and generate a response SOAP message which my first client will receive
    I believe that Aqualogic Service Bus configuration of SOAP service will help me out in this case but i am not finding a way of doing this. I have been able to successfully communicate with web services configured in ALSB.
    I went throught the document
    http://e-docs.bea.com/alsb/docs20/consolehelp/businessServices.html
    But it doesnt have the information of how to go about creating a soap service and configuring it in ALSB and then consuming it in a step by step manner. Please give me some techniques to achieve this.

    First, try using the documentation here instead.
    http://e-docs.bea.com/alsb/docs25/consolehelp/index.html
    I did something similar with SOAP xml.
    1) I had to create a wsdl file based on the incoming xml and
    2) import it into ALSB (admin console). Creating the wsdl was the most difficult part for me.
    3) Then you can create a proxy service (admin console) that uses the wsdl, and it'll allow accessing the proxy service as a web service.

  • Is it possible to create a Functional module dynamically?

    Hello All,
    Does any one know whether is it possible to create a FM dynamically and write some code in it?
    Regards,
    Lisa.

    Hi,
    Yes it is possible.
    Use this FM to create a function module on the fly programatically.
    RS_FUNCTIONMODULE_INSERT.
    Here is an example
    Here an example how to call it:
    call function 'RS_FUNCTIONMODULE_INSERT'                                                   
      exporting                                                                               
    funcname                      = '/TEST40P/FB_TEST_EVE99'                               
        function_pool                 = 'CRAS1'                                                
    *   INTERFACE_GLOBAL              = ' '                                                    
    *   REMOTE_CALL                   = ' '                                                    
        short_text                    = 'TEST Anlage FB'                                       
       suppress_corr_check           = ' '                -----------------> means with transport popup                                                 
       update_task                   = '1'                                                     
    *   corrnum                       = 'B20K8A0V3F'                                           
       namespace                     = '/TEST40P/'                                             
    *   suppress_language_check       = 'X'                                                    
    *   AUTHORITY_CHECK               = 'X'                                                    
    *    save_active                   = ' '                                                   
        new_source                    = it_report[]                                            
    * IMPORTING                                                                               
    *   FUNCTION_INCLUDE              =                                                        
    *   CORRNUM_E                     =                                                        
    tables                                                                               
    import_parameter              = if_import                                               
       export_parameter              = if_export                                               
       tables_parameter              = if_tables                                               
       changing_parameter            = if_change                                               
       exception_list                = if_except                                               
       parameter_docu                = if_docu_tab                                             
    *   SOURCE                        =                                                        
    exceptions                                                                               
    double_task                   = 1                                                       
       error_message                 = 2                                                       
       function_already_exists       = 3                                                       
       invalid_function_pool         = 4                                                       
       invalid_name                  = 5                                                       
       too_many_functions            = 6                                                       
       no_modify_permission          = 7                                                       
       no_show_permission            = 8                                                       
       enqueue_system_failure        = 9                                                       
       canceled_in_corr              = 10                                                      
       others                        = 11.
    Regards,
    Sesh

  • NEWBIE Question:  Is it possible to create a "Branding Iron" effect?

    Hello!
    I would like to make an effect of a branding iron burning our logo onto a surface. Not knowing too much about Motion (I'm more of an FCP guy) I'd like to see if I can do this. Any help is appreciated.
    Thanks!
    Andy

    It's complicated but, yes, it's possible.
    Creating the smoke/steam and adding some sizzle/grunge/decay to the edges of the logo are not difficult in Motion. They just take lots of experimentation (or lots of help from Sheffield).
    The tough part is creating the branding iron itself since Motion has no 3D capabilities. Adding a red hot glow to the iron object should be easy if you understand creative masking.
    Try to deconstruct the effect you're looking for, consider the degree of realism or stylization you're willing to accept and then try to figure out how many different layers or pieces you'll need to pull it off.
    It's not something I'd attempt in Motion but, umm, to be frank, I'd rather eat barbed wire than try ANYTHING in Motion that I can do in After Effects.
    bogiesan

  • Edit User Profile How do I enalble user lo loggin to their own profile page and edit it?

    Hi
    I am having some problems....... any help would be nice
    I am using DWCS3 and ADDT toolbox extension wamp and phpmyadmin
    I am trying to create a site for people to be able to post a profile with a picture and info and display it in a dynamic table.
    I can create the form, a database and display the data on another page in a dynamic table all ok..... kind of.
    I can create a user registration system with ADDT.
    I can redirect them after registration to a post profile page, which has a form to upload details. I can then display those details on a user info page.
    I would like to allow logged in users to be able to click on a link to their own profile page , which would show the same form that was filled out in the post profile page, but would be already populated with their previously entered information. I would like users to be able to edit the content of the form and update the information in the database and automatically delete delete any previously entered information ( only in the fields that have been edited)
    How do I go about doing this?.... step by step?
    I want to allow logged in user to view their own profile not every bodies.... how do I do that?
    I have read on another post that to do something similar to this I should filter my database information using a session varialble MM_username that I think is created automatically after user logs in .... but I don;t know how to do this.... I really don;t understand is this the way I link my user to a page that only displays their info ? or is there another way?
    I would also like to allow only people who have posted a profile to be able to edit profile ...... do I do that by
    1. new user registers and is redirected to login page
    2. user logs in and is redirected to an index page that has a post profile button and a edit profile button but only the POST button is active ( and links to a form to post info ) and the edit profile button is linked to a " You must post a profile first" page ( with a link back)
    3 so user posts profile and is directed to an index page which has an edit profile button which is now linked to an edit profile page
    Does that sound correct?
    Any suggestions in getting all this to work would be much appreciated

    Hi Yomi,
    I have created the users page which submits to a members page and tell the user to edit biodata, profession, and hobbies. but on clicking I am really confused on how the id will be transfered from the members page to update biodata and the user updates the form which will show past records. this should also apply to the profession and hobbies
    If I understand this right, you might want to consider providing a complete "userdata" section which comes with a Dynamic List and a Dynamic Form to have users add & update their data plus (via the Dynamic List) track all past records
    Lastly is it possible I create recordset at will and the id will be passed thru since kt-login-id behaves sololy
    I really can´t recommend this "pass user_id as URL variable" approach in this case, as URL variables are displayed in the browser´s address bar -- and this is absolutely insecure, because anyone could simply change the displayed "user_id" value, reload the form and hence edit data which belongs to a different user.
    The only secure method is indeed to use ADDT´s session variable kt_login_id
    Fatal error: Call to undefined function: var_export()
    Not sure, but maybe some "includes" files haven´t been generated
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

Maybe you are looking for

  • Segmenting the data in the table

    Hello, I need to create the segmentation on a table. Below is the original data in the table. Begmeasure       EndMeasure       DetMethod         Testpressure 0                          7703                   Acceptable          1006 7703            

  • Error while taking the backup to disk.

    Hi all, I am facing one  problem while taking the backup to disk. After copying few files to disk it got terminated and hereunder the log , BR0001I *****_____________________________________________ BR0201I Compressing /oracle/OPD/sapdata2/sr3_6/sr3.

  • Java.rmi.ServerException: RuntimeException

    Hi All, i had an issue related to sockets.Please see the code below where am getting the following exception, java.rmi.ServerException: RuntimeException; nested exception is: java.lang.RuntimeException: java.io.EOFException what my concern is while d

  • IgnoreRecordsetName not working in Sender JMS channel- PI 7.1

    Hello All, In Sender JMS content conversion I have used xml.ignoreRecordsetName=true                                                                                    ignoreRecordsetName=TRUE But still I am getting "Recordset" in the XML due to whic

  • Which files to exclude from Antivirus scanning

    We have several Oracle 9i installations. We have McAfee Antivirus client on our servers. Which oracle files/folders should I be excluding from on access antivirus scans? Is there a document on this anywhere? Thanks in advance.