It's official: server behaviors to be removed from DW

Adobe has finally confirmed what I suspected would happen: server behaviors will be removed from the next version of Dreamweaver. They will still be available to install as an extension, but will no longer be part of the core program.
http://blogs.adobe.com/dreamweaver/2013/04/nextgendreamweaver.html
There is no information regarding plans to develop a replacement for the server behaviors in a future version. I genuinely have no idea whether a replacement for the server behaviors is on the cards.

Actually, after looking into this computer I think maybe I would be best to take it to an Apple repair center.  I don't want to break something.  I thought maybe if it was just an easy small battery install, I could do it.  I don't see where another battery can go.

Similar Messages

  • Clueless NEWBIE DEVELOPER, NEEDS ASSIST with Insert Record Server Behavior

    Experienced DW designer learning CFMX7. I cannot seem to get
    beyond this error message when using the Insert Record server
    behavior to write data from a form into the database. Using MS
    Access 2002, CFMX7's internal server, DW 6.0. Please note that I am
    learning development for the first time and am using tutorials. I
    was able to connect at one point but now I cannot.
    See error message below:
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    Error Executing Database Query.
    Syntax error in INSERT INTO statement.
    Resources:
    Enable Robust Exception Information to provide greater detail
    about the source of errors. In the Administrator, click Debugging
    & Logging > Debugging Settings, and select the Robust
    Exception Information option.
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.1.4322)
    Remote Address 127.0.0.1
    Referrer
    http://localhost:8500/moosek/TMPu724j3nl2j.cfm
    Date/Time 07-Aug-06 07:23 PM
    Text
    Text

    MongoSlade,
    I had this exact same problem with a CFMX 7 datasource that
    was set up as Microsoft Access with Unicode. It turns out that
    "Password" is a reserved word in the Unicode driver. Or somewhere.
    I got around it by putting square brackets, i.e., [ ] around the
    column name, like this:
    update MyTable
    set [Password] = '#form.Password#'
    where UserID = '#form.UserID#'
    That solved the problem nicely. I hope this solution will
    work for you as well.

  • What could cause a server to be removed from the farm other than running PSConfig and removing it?

    Hi,
    We had a strange issue today.  One of our two production WFE servers in our SP2010 farm had become disconnected from the farm. I noticed it because I had created a new site collection within an existing web site last week but it was only available on
    one WFE. I didn't think for one second that the server had already been removed from the farm but I had decided I would remove it and re-add it to see if that would fix the issue.  When I ran PSConfig to remove it I found the following:
    I checked the log:
    Entering function WelcomeForm.TryToLoadTheFarm
    Found a task by the name of initialize in the task collection
    Entering function Farm.Farm
    Leaving function Farm.Farm
    Entering function Farm.TryIsJoinedToFarm
      Entering function get CommandCollection.this[string key]
        Entering function CommandCollectionBase.Get
          Found value in collection for key initialize
        Leaving function CommandCollectionBase.Get
        Found command initialize in collection
      Leaving function get CommandCollection.this[string key]
      Entering function Command.this[string key]
        Entering function CommandCollectionBase.Get
          Found value in collection for key B2B_UPGRADE
        Leaving function CommandCollectionBase.Get
        Found parameter B2B_UPGRADE in collection
      Leaving function Command.this[string key]
      Clearing cached Farm objects to reload
      Entering function Farm.Clear
        Entering function CentralAdminServiceInstance.Reset
        Leaving function CentralAdminServiceInstance.Reset
      Leaving function Farm.Clear
      My cached Farm object is null, so will load it
      Calling SPFarm.Local and SPServer.Local to get the local farm objects
      SPFarm.Local returned a local farm
      SPFarm.Local retuned a farm, but SPServer.Local returned null.  Failed to connect to the farm, except in B2B Upgrade.
      Entering function Farm.Clear
        Entering function CentralAdminServiceInstance.Reset
        Leaving function CentralAdminServiceInstance.Reset
      Leaving function Farm.Clear
    Leaving function Farm.TryIsJoinedToFarm
    Failed to successfully try to see if this server is joined to the server farm.  
    The operation will continue so that you can force a disconnect from a server farm that cannot be contacted
    Resource id to be retrieved is FarmIsJoinedFailureWhileUsingUICanOnlyDisconnect for language English (United States)
    Resource retrieved id FarmIsJoinedFailureWhileUsingUICanOnlyDisconnect is Failed to detect if this server is joined to a server farm.
    Possible reasons for this failure could be that you no longer have the appropriate permissions to the server farm, the database server hosting the server farm is unresponsive,
    the configuration database is inaccessible or this server has been removed from the server farm.
    To diagnose this problem further, review the extended error information located at {0}.
    If this problem persists, choose to disconnect from the server farm. After disconnecting, run the wizard again to create or connect to an existing server farm.
    Anyone know what this line means?
    SPFarm.Local retuned a farm, but SPServer.Local returned null.  Failed to connect to the farm, except in B2B Upgrade.
    Permissions were unchanged from before and I was running PSConfig elevated with the SharePoint admin account. So with this information along with the fact that the new site collection was not available on this server I concluded that it had been removed
    somehow.
    Has anyone seen this happen before?  As it is a production server I'm going to have to explain this to the customer.
    Thanks! 

    Hi Fridge,
    In Sharepoint central admin,Manage servers in Farm,Does this show this WFE Server still?
    Check if any ports(32843,32844) has been closed on the WFE server which got disconnected as these ports are used to communicate between WFE servers
    Check if this is helpful
    http://blogs.msdn.com/b/uksharepoint/archive/2013/01/21/sharepoint-2013-ports-proxies-and-protocols-an-overview-of-farm-communications.aspx

  • Update record server behavior preventing passage of form parameter in php

    I have a multi-page survey set up in php. I am trying to pass a form variable to the next page, but the 'update record' server behavior is preventing me from passing the variable to the next page. I have tried including the variable as a parameter in the url, but this is not working either. Please help.

    Can you not pass it onto the next page using a SESSION?
    As an example say you want to pass the information from a form field with the name 'company' to another page.
    At the top of the page that the form is submitted to you start a SESSION - <?php session_start(); ?> - then you collect the information from the form as normal BUT using a SESSION variable - $_SESSION['company']
    The resulting php code might look like below:
    <?php
    session_start();
    $_SESSION['company'] = $POST['company'];
    ?>
    Then you can pass the SESSION variable on to as many page as you like:
    So for instance the next page in the chain needs <?php session_start(); ?> at the top again to initiate a SESSION.
    Then the resulting code may look like below. The information from the form field 'company' is being passed from page to page.
    <?php session_start(); ?>
    <?php
    if(isset($_SESSION['company'])) {
    echo $_SESSION['company'];
    else {
    echo "Company name is not set";
    ?>

  • Why Dreamweaver CC delete Databases, Bindings and Server Behaviors (PHP/MySQL)

    I installed Dreamweaver CC on my laptop and notice that Dreamweaver CC has no Binding, Server Behaviors and Database.
    A lot of my project get done by these feature (Binding, Server Behaviors and Database.), mostly for the website mock up for my clients.
    Why Dreamweaver these features? We need these feature back...
    For the liquid layout I don't like it, I prefer to use bootstrap then Dreamweaver feature.
    Dreamweaver CC just change Dreamweaver into CSS editor comparing to previous version.

    I'm not a spokesperson for Adobe.  I just use the products.
    DW CC extensions use .zxp files.  Formerly, CS extensions used .mxp files.  It's imperative that you use the correct Extension Manager version for your version of  DW.
    CS5 = CS5 extension manager
    CS5.5 = CS5.5 extension manager
    CS6 = CS6 extension manager
    CC = CC extension manager and so on...
    http://www.dmxzone.com/go/21842/enable-server-behaviors-and-data-bindings-panel-support-fo r-dreamweaver-cc/
    There have been exhaustive discussions in this forum about the deprecated server-behaviors and Adobe's decision to remove them from CC -- presumably to discourage people from using them anymore. If you want to continue using SBs, do so at your own risk since Adobe no longer officially supports or endorses them.  And if you can't get the extension from DMZone above to load in CC, your fallback is to use CS6.
    Nancy O.

  • ADDT Server Behaviors not all available in CS6

    Hello,
    I used CS3 for years with the ADDT and was very happy with it.  I was given a career change and got away from programming.  I then upgraded to CS6 Master Collection and the ADDT for DW does not install and all the server behaviors I have come to enjoy are not all in CS6.
    What can I do?  Downgrading to CS3 is not an option.  do I now have to repay for these server behaviors in another extension?

    ADDT has been dead for quite a while.   The deprecated server behaviors in DW won't work with PHP 5.5+ so relying on them for current or future projects is futile.   Adobe removed them from DW CC for a reason.
    Steer clear of CS6's Behaviors Panel and learn to manually code with MySQLi (improved) or PDO.
    http://code.tutsplus.com/tutorials/pdo-vs-mysqli-which-should-you-use--net-24059
    Alternatively, Web Assist sells a commercial extension for DW that uses MySQLi Behaviors.
    $149.99 USD to replace the deprecated Server Behaviors panels.
    MySQLi Server Behaviors | Dreamweaver extension | WebAssist
    Nancy O.

  • Previously deleted messages are re-downloaded, not removed from server??

    I have a POP email account that I access from my iMac using Mail. I regularly delete mail from my inbox in Mail, so there are only a few hundred messages in the inbox. But the other day I logged onto my mail account via the web and discovered thousands of my previously deleted messages still in my inbox on the server. I opened Mail Preferences and discovered that the checkbox "Remove mail from Server ... when I move it from my inbox" was not checked, so I checked that box. However, I figured that would only cause future messages that are removed form my inbox to be removed from the server, but would not do anything about the thousands of previously deleted messages that were still on the server. So I also clicked the button labeled "Remove Now". I figured that would cause Mail to tell the server to remove all the old messages on the server that had previously been removed from the local Mail inbox.
    The next day I discovered that thousands of old messages I had already deleted (many of them long ago) had mysteriously reappeared in my Mail inbox. And of course, checking the account via the web, I discovered they were still on the server too. What did I do wrong? I thought Mail would tell the server to delete all those old messages. Instead it seems to have told the server to download them all to my Mail inbox again, the exact opposite of what I intended. I don't know if this is a disconnect between the Mac Mail client and the mail server, or if I misunderstood the purpose of these options in the Mail preferences dialog.

    Hello,
    I have never tried this exact action, but I think the Remove Now will not do much, with When Moved from the Inbox. This would require the action of removing the message, after this setting has been changed. I don't think it would remove any previously moved from the Inbox, because no check to correlate the current contents of Inbox to a POP account.
    Does this make sense, to you?
    However, there would appear to be some corruption in the file to prevent duplicate downloads, or messages previously downloaded.
    In Mail 2.x, Apple introduced a way to look a the server, of even POP accounts. To do this, control-click on any inbox or any mailbox, and choose Get Info. Once the dialogue window is presented, and if you have more than one account, choose the account, and you can not observe the server contents, but also choose and delete individual messages.
    Keep us posted about future behavior.
    Ernie

  • Server Behavior, Bindings and Components Panels [subject edited by moderator]

    How do I get Server Behavior, Bindings and Components Panels and Database feature this is the most retarded program ever! I installed the extension manager, then it wanted the panel installed, which won't installed because of photoshop version. How in the hell do I get Server Behavior, Bindings and Components Panels and Database feature!!!

    The Deprecated Server Behaviors were removed for good reason.  The code is woefully outdated and the old MySql connections won't work on servers with PHP 5.5 or higher.
    Which operating system?
    Which version of PS?
    Which version of DW?
    Which version of Extension Manager?
    Replace Deprecated Server Behaviors with a modern commercial extension -- MySQLi (improved) or PDO:
    http://www.webassist.com/dreamweaver-extensions/mysqli
    http://www.dmxzone.com/go/22096/updated-replacing-dreamweaver-server-behaviors-with-dmxzon e-extensions/
    Nancy O.

  • Creating Login Pages - Server Behavior Issues

    Hello,
    I been trying to find a solution to this problem for this
    past week.
    I'm having issues with creating a login page. First, I get
    the page created with a username text box, password text box, save
    username checkbox, etc. Next, I add the server behavior for 'User
    Auth' - 'Login User'. Now..here's the problem. When I complete
    that, I get this error (SEE BELOW). Somehow the server behavior
    duplicates. I can't go on until I make one of them unique from the
    other. I tried every which way to delete it, but I can't. Any
    suggestions?
    SERVER BEHAVIOR ERROR
    "The server behavior panel cannot determine whether "Log In
    User" or "Log In User" is applied to your page. Please select Edit
    Server Behaviors and change one of the 2 behaviors to ensure that
    each is uniquely identifiable."
    NOTE: By using the "-" sign above the panel, I can't remove
    the duplicate.
    Also, when I create a login page, I do need to insert a form
    first("form1") and then place the username, password, checkbox
    inside that "form1" form I just created, correct?
    Thanks for all your help!
    Craig

    GD WebDev wrote:
    > Hi,
    >
    > I have set-up up a database based upon username,
    password and security access
    > level, the access level contains 3 types of groups.
    group 1, group 2 and group
    > 3.
    >
    > I've used the dreamweaver login user server behavior.
    Looking at this it only
    > allows you to go to one succeed page.
    > Because i have got three user access levels, i'm looking
    for it to send each
    > set of users from each access level to three different
    succeed pages.
    > In other words, group 1 is sent to one succeed page,
    group 2 is sent to a
    > different and group 3 to another.
    >
    > Is there away of doing this?
    >
    You could do a redirect on the page that they do land on once
    succeeded.
    My personal preference would be to make one page, and only
    show the user
    groups parts of the page that they are allowed to see.
    Steve

  • OT: Bindings panel, Databases, and Server behaviors in Dreamweaver CC

    Hi all,
    There was a query on the Dreamweaver Facebook page about using server behaviors in Dreamweaver going forward. The product team replied to the post, and I am posting it on this forum for the benefit of users not on our Facebook page.
    In Dreamweaver cc release server behaviors will be available as an extension. Once you install the extension server behaviors feature will be enabled and extensions dependent on it will work as before. In the CC release, you can find the extension at the location
    * Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures
    * Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    Additional documentation is available at
    http://helpx.adobe.com/x-productkb/policy-pricing/dreamweaver-cc-server-extensions.html
    Also, check out this video created by Silas http://www.youtube.com/watch?v=cB2vmNfcq7A
    The Dreamweaver team has posted their view about the latest changes in Dreamweaver in their blog post  http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html
    Thanks,
    Preran

    I am sorry to say so, but your disappointing blog post just tells us two things:
    You claim that you are listening to your users, but you have just proved you don’t. Despite the high volume of disappointment expressed through the comments to previous posts of this blog, through comments in Dreamweaver Help or through the Community Forum, you show no change of direction, nor any will to cater for the disrupted workflow that Dreamweaver CC is introducing. Instead, you are just producing blog posts that desperately try to prove us that you are “streamlining” and “modernizing” Dreamweaver. An extension that brings back half of the features is not a strong-enough signal that you have taken into account our needs. Extensions written by third parties which you claim are alternatives but are not resemble more leg-pulling than anything else. Will you reduce Dreamweaver’s price for the removal of killer features that were sold with the software before?
    You do not seem to know how Dreamweaver users use the software or at least, to be fair, how a large number of users do. I thought the aim of software makers was to sell a tool that aids its clients in, and brings value to, their work.
    As an extension writer, I can tell that the vast majority of my users are either DIY guys or professionals working on their own. Not big companies with teams of developers. The majority of those never have been Dreamweaver users and will never be, having different needs and ways of working.
    As responses to your “streamlining” and “modernization” of Dreamweaver have shown, for a large number of users, the strength of Dreamweaver lies in its extensibility, of which server behaviors are the most advanced feature. I am not talking about the code they write, which we all agree has to be updated (and we have been waiting this for a number of releases, now…), I am talking about their very mechanism, which allow us to write our code and use Dreamweaver to speed up our job by helping us to write it again, faster, without errors, visually.
    No other tool offers this possibility. Without server behaviors and database support, Dreamweaver is simply not worth its price…
    Obviously, you are the ones with the real figures and only you can tell if it is a strategic decision or a big mistake. I was a bit surprised though by the number of voices that rose after the Dreamweaver CC release, so I tend to think that Mr. Adobe would not be that pleased by the loss of a good number of faithful clients. But then at least, be honest enough to tell us if you intend to drop a part of long-term users, and stop serving us your commercial soup…
    Now, what will happen?
    You still refuse to listen to the numerous voices who have called against your decision to remove useful features to us, and in this case, we will act accordingly: we are big enough, we do not need your blatant propaganda even by the product manager himself to decide whether Dreamweaver CC will still be worth its high price into our workflow, if the new features will outweigh the loss of server behaviors and database support. If not, of course, we will not upgrade just because you are marketing the supposedly wonderful new features, and we will turn to other tools, with features that will help us improve our workflow in other ways. And goodbye Adobe, we do not trust you anymore… It is as simple as that.
    You show us you really are listening to your customers and you bring back updated server behaviors and database support. In this case, we will know that we can trust Adobe again, that you do listen to us, and will applaud with both hands.
    And, more important to you, we will have a valid reason to upgrade and we will. Come on guys, our productivity is at stake, but your jobs may be in the line too…

  • Parse errors from server behaviors

    I have created an input form for a mysql/php database set up on my testing server with a set of fields in a repeat region. All the fields are properly displayed when I switch to LiveView or browser preview. I am, however, having the following problem with server behaviors:
    If I add “Display Total Records” at the bottom, it displays just fine, but if I try to add the behaviors for previous page, next page, starting record number or ending record number, I get this:
    Parse error: syntax error, unexpected ';' in C:\XAMPP\htdocs\LEAP\admin.php on line 81
    Lines 81-84  read:
    $totalPages_VolApp = ceil($totalRows_VolApp/$maxRows_VolApp = 10;
    $pageNum_VolApp = 0;
    if (isset($_GET['pageNum_VolApp'])) {
      $pageNum_VolApp = $_GET['pageNum_VolApp'];
    I also cannot switch the repeat region to “show all records.” This results in a similar syntax error.
    What is a parse error? What problem is indicated? thanks.

    What is a parse error? What problem is indicated? thanks.
    It's an error in code. The error is in the following line:
    $totalPages_VolApp = ceil($totalRows_VolApp/$maxRows_VolApp = 10;
    That line is nonsense in PHP terms. It has almost certainly been created as a result of not removing server behavior code correctly when making changes to a page. You can't edit PHP code simply by selecting dynamic text in Design view and deleting it. To remove a server behavior cleanly, you need to select its name in the Server Behaviors panel and click the minus button.
    The code you have posted here looks so badly corrupted, I suggest you start the page again.

  • Update record error message: Server behavior, updaterecord.js

    Hello,
    I'm developing a website using PHP and MySQL on Dreamweaver CS5, Snow Leopard.
    I'm having trouble with the updateRecord Server Behavior:
    Right after selecting "Update Record" in "Server Behavior" menu, I get the following error message in a popup window:
    while executing onLoad in UpdateRecord.htm, the following javascript error(s) occurred:
    At line 687 of file "Macintosh HD:Applications:Adobe Dreamweaver CS5:Configuration:ServerBehaviors:PHP_MySQL:UpdateRecord.js." name has no properties
    After selecting "ok" in the popup window, the "Update Record" window menu opens. However, when I tried to selected the desired table from the database in the dropdown menu, the same error message/popup window appears. I clicked "ok" once again, but the "column" textarea doesn't get populated at all. But, the "Value" dropdown menu does get populated with the correct data.
    I need help asap. Please contact me if you need more information.
    Thank you so much for taking your time to read my post, hopefully you'll be able to help me.
    Best,
    Alice Li

    I have this same problem. Was working fine then I removed the Recordset and added it again to change the name. After binding the dynamic info to my form fields I tryied to add an update record behavior and I got this error.
    I had already done this once I think with no problem. I tried restarting Dreamweaver and the computer but the issue still persists.
    Any help!?

  • Just upgraded to Yosemite 10.10.2 on my iMac 24 inch and now my Suddenlink POP email account won't accept messages. The message says unable to receive Mail and the warning says: Mail cannot send your password securely to the server. You can remove th

    Yesterday I uploaded Yosemite 10.10.2 thinking it was fixed by now. In Mail, my POP account gets this error message: Mail cannot send your password securely to the server. You can remove this restriction in the Accounts preferences by setting “Allow insecure authentication”, which could put your password at risk.
    My provider says it's an Apple issue. The gmail accounts are logging in fine. Any help? Something simple?
    Thanks anyone.

    Thanks Csound1. That did work and Mail was able to connect to the internet. Green light status. Is it because of my provider that I may never have had secure connections? Is that an Apple thing or do PCs have the same issues? Appreciate your help. I'll research insecure connections as I am ignorant of the consequences.

  • Is there any way to add dynamic parameter in sql without breaking Server Behavior

    Hello, i'm building multiple language site.. i would like to know if there is possible way to add dynamic parameter in my query, without break the server behavior.
    For example:
    mysql_select_db($database_dxc_conn, $dxc_conn);
    $query_Recordset1 = "SELECT article.articleName, article.articleDesc FROM article";
    $Recordset1 = mysql_query($query_Recordset1, $dxc_conn) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    will become something like this:
    $additionalSQL=", article.articleName_en";
    mysql_select_db($database_dxc_conn, $dxc_conn);
    $query_Recordset1 = "SELECT article.articleName, article.articleDesc $additionalSQL FROM article";
    $Recordset1 = mysql_query($query_Recordset1, $dxc_conn) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    this is just an example, my real scenarion is far more complicated than this... however this kind of approach break the server behavior and force to do hand-coding...
    i would like to know if there's better way to do such thing like this...

    viktor.iwan wrote:
    Hello, i'm building multiple language site.. i would like to know if there is possible way to add dynamic parameter in my query, without break the server behavior.
    Server behaviors are simply bits of boilerplate code automatically generated by Dreamweaver. Editing the code doesn't "break" it (unless your edits are badly written). However, once you edit the code, Dreamweaver no longer recognizes it, so you lose the ability to drag recordset results from the Bindings panel.
    If you want to edit server behavior code, the best way to handle it is to lay out your page as you want, using the Bindings panel. Once everything has been done, only then edit the server behavior code.

  • Removing from an FTP server

    Hey Guys,
    Say you have an image or file you want to remove from an FTP server, what method would you use in the FTPClient? the deleteFile(String arg)?
    Thanks,
    ArchBytes

    If you are using Apache Commons net API the answer is yes.
    Provided the login which you have used has respective permissions to do that.
    for more info please refer the API.
    http://commons.apache.org/net/api/org/apache/commons/net/ftp/FTPClient.html

Maybe you are looking for

  • ABAP mapping split messages and dynamic filename

    Hello, i have set up a IDOC to file scenario where the IDOC is split into several files, which works fine. In addition to this it is required to set a dynamic filename out of the ABAP mapping for each file. If only one file is created this works alre

  • Count into variable not working in procedure

    I'm writing a simple procedure in a package. Based on Record count I'm inserting record into other table. count(fielname) alwways returns zero. But the same SQL statement works fine when I just execute sql statement out side of procedure in SQL windo

  • Digital camera in the finder?

    Hi all, new to mac from PC... I have an issue I can't figure out. On my Win XP machine, I can hook up my new Canon IS950 digital camera via USB and it shows up in My Computer as a drive. However, for some strange reason, OSX will not see it as a driv

  • IPhoto was unable to connect to iCloud Photos

    I have iPhoto 7.5.1 on Mavericks 10.9.2 on an iMac. To try to fix another iPhoto issue (Home Sharing not showing iPhoto albums - a Fetching... permissions issue I thought), I created another admin, logged in as the new admin deleted my admin, saved t

  • Accessing web services and invoking functions in JavaFX

    As a JavaFX beginner, I'm a bit confused how to invoke a web function. The following part is my SOAP request, - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> - <soap:Body xmlns:ns1="http://ejb.production.platform.daps.oardc.o