Server Behaviours changed in DW 8?

Just watching an old movie created using DWMX, and it shows
the Server
Behaviour Panel having a "Go to Detail" and "Go to Related"
page behaviours
listed.
I don't seem to have these options in DW 8. Have they simply
been replaced
by the fancy 'Insert - Application Object - Master Detail
Page Set' - or am
I missing something? (for that matter, why doesn't this show
in the Server
Behaviours panel drop down?)
Brendon

Grr.
Thanks Murray.
Brendon
"Murray *ACE*" <[email protected]> wrote
in message
news:e7jbth$aem$[email protected]..
>> Have they simply been replaced by the fancy 'Insert
- Application
>> Object - Master Detail Page Set'
>
> Yes that appears to be the case....
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.dreamweavermx-templates.com
- Template Triage!
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
> ==================
>
>
> "Brendon" <[email protected]> wrote in message
> news:e7i658$s6j$[email protected]..
>> Just watching an old movie created using DWMX, and
it shows the Server
>> Behaviour Panel having a "Go to Detail" and "Go to
Related" page
>> behaviours listed.
>>
>> I don't seem to have these options in DW 8. Have
they simply been
>> replaced by the fancy 'Insert - Application Object -
Master Detail Page
>> Set' - or am I missing something? (for that matter,
why doesn't this show
>> in the Server Behaviours panel drop down?)
>>
>> Brendon
>>
>
>

Similar Messages

  • Dw CS4 Server Behaviour Error

    I am setting up a user LogIn form using php and mysql in Dw and have set up a simple users database. Once I have filled in the 'login user' controls under the 'server behaviours' tab and click submit - I keep getting this error from Dw 'TypeError: patternMatch has no properties'. What does this mean and how do I fix it?

    Hi David.  Thank you for your reply to the problem that the original poster and I are having with Dreamweaver CS4.  Unfortunately deleting the File Cache did not repair the problem.  I am currenty running Windows 7 Retail and have even changed the Compatibility Mode for Dreamweaver to that of Windows Vista SP2.  I have also tested with no extra extensions installed and still get the problem.  I have used CS4 for over a year and have never seen this problem until I loaded Windows 7.
    The original poster was using a Mac from the screenshot and was getting the same problem.  I know that Dreamweaver uses javascript.  Do you think that this could be part of the problem?  The program seems to be working file, but you get this error message everytime you use any server behavior.  It's odd.  I will look for updates for the application.  Any suggestions you may have would be appreciated.  Thank you for your time.
    Leo McKenzie

  • New app version detected after server ip changes (server using DNS / dynamic ip)

    I have a JWS app deployed. The codebase URL is using a name for the server (dynamic IP address), and when you start the app it detects a new version every time there's a server IP change (I have no way to get a static IP for it). As long as it's the same app, how can i prevent this to happen?
    I need changes to be checked every time the app is launched at the client side, but this behaviour is a problem for me because I have a limited upload bandwitch available at the server side.
    Regards

    Ok, it seems to have been a problem for some time. I found this thread:
    Java Web Start caching jars by IP not by URL (Domain)
    Regards

  • Editing HTML source document and losing the Server Behaviour details on the panel

    Hi,
    I just noticed something;
    When I bring in and edit my HTML source document, my server behaviour goes back to Coldfusion and the record set and record insertion is missing.
    I have to Click and add it back to the panel. Is this normal ?
    Thanks

    Hi Murray,
    Sorry for the delay in getting back to you. I had to deal with an idiotic poster, each time I try to reply I get the same message from the poster about his facebook account. I have reported it and phone your company - Adobe to resolved this. His post has been deleted from the system and hopefully I am back and able to attend to your replies.
    I have moved on and recreated my pages from scratch. I have taken into consideration all your discussion with me and I only have one document. It is named and with an extension of PHP.
    I am at a point where I have no errors and found a Dreameaver bug in your Insert>Data> Insert Record option. The form action is written in Captials. As you have pointed out it should be in lower case, so did the validator. So I have recognised this whlist recreating it from scratch.
    This is now where I am. I have the form, it works, captures the users input, on click it jumps to the action page but it does not write to database table.
    I hope you dont mind, I appreciate your previous 2 post before this reply. Hence, here we are.
    Source code.
    Why does it not write to the database table?
    Please advice.
    <?php require_once('Connections/dbAttendance.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form")) {
      $insertSQL = sprintf("INSERT INTO attendlist (Windowsid, title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['textfield'], "text"),
                           GetSQLValueString($_POST['select'], "text"),
                           GetSQLValueString($_POST['textfield2'], "text"),
                           GetSQLValueString($_POST['textfield3'], "text"),
                           GetSQLValueString($_POST['textfield4'], "text"),
                           GetSQLValueString($_POST['textfield5'], "text"),
                           GetSQLValueString($_POST['select5'], "text"),
                           GetSQLValueString($_POST['select2'], "text"),
                           GetSQLValueString($_POST['select4'], "text"),
                           GetSQLValueString($_POST['textfield7'], "text"),
                           GetSQLValueString($_POST['select3'], "text"));
      mysql_select_db($database_dbAttendance, $dbAttendance);
      $Result1 = mysql_query($insertSQL, $dbAttendance) or die(mysql_error());
      $insertGoTo = "Thankyou.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_dbAttendance, $dbAttendance);
    $query_rsAttendance = "SELECT * FROM attendlist";
    $rsAttendance = mysql_query($query_rsAttendance, $dbAttendance) or die(mysql_error());
    $row_rsAttendance = mysql_fetch_assoc($rsAttendance);
    $totalRows_rsAttendance = mysql_num_rows($rsAttendance);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Delegate Register</title>
    <link href="Registerpage.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><img src="Cerner At Imperial2.jpg" width="960" height="150" alt="" /><!-- end .header --></div>
      <div class="content">
        <h3>Register: <?php echo "Date".date("d/m/Y")?></h3>
        <form action="<?php echo $editFormAction; ?>" method="post" name="form">
          <table width="780" border="0">
            <tr>
              <td><div align="right">User ID *</div></td>
              <td><span id="sprytextfield1">
                <input name="textfield" type="text" id="textfield" tabindex="1" size="18" maxlength="10" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Title *</div></td>
              <td><span id="spryselect1">
                <select name="select" id="select" tabindex="2">
                  <option value="0">Select</option>
                  <option value="1">Ms</option>
                  <option value="2">Mrs</option>
                  <option value="3">Mdm</option>
                  <option value="4">Dr</option>
                  <option value="5">Mr</option>
                  <option value="6">Prof</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">First name*</div></td>
              <td><span id="sprytextfield2">
                <input name="textfield2" type="text" id="textfield2" tabindex="3" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Surname *</div></td>
              <td><span id="sprytextfield3">
                <input name="textfield3" type="text" id="textfield3" tabindex="4" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Contact / Bleep *</div></td>
              <td><span id="sprytextfield4">
                <input name="textfield4" type="text" id="textfield4" tabindex="5" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Mobile no: (optional)</div></td>
              <td><input name="textfield5" type="text" id="textfield5" tabindex="6" size="20" maxlength="20" /></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Job Role *</div></td>
              <td><span id="spryselect5">
                <select name="select5" id="select5" tabindex="7">
                  <option value="0">Select </option>
                  <option value="1">Doctor</option>
                  <option value="2">Nurse IP</option>
                  <option value="3">Nurse OP</option>
                  <option value="4">Midwife</option>
                  <option value="5">Booking Clerk</option>
                  <option value="6">Medical Secretary</option>
                  <option value="7">OP Receptionist</option>
                  <option value="9">CNS/NP</option>
                  <option value="10">Tester</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Manager's Name *</div></td>
              <td><span id="sprytextfield5">
                <input name="textfield7" type="text" id="textfield7" tabindex="8" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Course *</div></td>
              <td><span id="spryselect2">
                <select name="select2" id="select2" tabindex="9">
                  <option value="0">Select</option>
                  <option value="1">Demo</option>
                  <option value="2">Doctors</option>
                  <option value="9">CNS/NP</option>
                  <option value="3">Nurse IP</option>
                  <option value="4">Nurse OP</option>
                  <option value="5">Midwife</option>
                  <option value="6">Booking Clerk</option>
                  <option value="7">Medical Secretary</option>
                  <option value="8">OP Receptionist</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Location *</div></td>
              <td><span id="spryselect3">
                <select name="select3" id="select3" tabindex="10">
                  <option value="0">Select </option>
                  <option value="1">CHX 12 Floor Rm 1</option>
                  <option value="2">CHX 12 Floor Rm 2</option>
                  <option value="3">CHX 10 West </option>
                  <option value="4">HH N207 </option>
                  <option value="5">HH W12 Conference</option>
                  <option value="6">SMH Rm a</option>
                  <option value="7">SMH Rm b</option>
                  <option value="8">SMH Ming Wing Rm 5</option>
                  <option value="9">SMH Ming Wing Rm 3</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">CPG *</div></td>
              <td><span id="spryselect4">
                <select name="select4" id="select4" tabindex="11">
                  <option value="0">Select </option>
                  <option value="1">CPG 1 - Medicine</option>
                  <option value="2">CPG 2 - Surgery and Cancer</option>
                  <option value="3">CPG 3 - Specialist Services </option>
                  <option value="4">CPG 4 - Circulatory Services and Renal Medicine</option>
                  <option value="5">CPG 5 - Womens and Children</option>
                  <option value="6">CPG 6 - Clinical and Investigative Sciences</option>
                  <option value="7">CPG 7 - Private Patients</option>
                  <option value="8">Others</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td><input name="button" type="submit" id="button" formaction="Thankyou.php" value="Submit" /></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="center">*Mandatory fields </div></td>
              <td> </td>
              <td> </td>
            </tr>
          </table>
          <input type="hidden" name="MM_insert" value="form" />
        </form>
    <!-- end .content --></div>
      <div class="footer">
      <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur", "change"]});
    var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1", {validateOn:["change", "blur"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur", "change"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "none", {validateOn:["blur", "change"]});
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {validateOn:["blur", "change"]});
    var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {validateOn:["change", "blur"]});
    var spryselect3 = new Spry.Widget.ValidationSelect("spryselect3", {validateOn:["change", "blur"]});
    var spryselect4 = new Spry.Widget.ValidationSelect("spryselect4", {validateOn:["change", "blur"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "none", {validateOn:["blur", "change"]});
    var spryselect5 = new Spry.Widget.ValidationSelect("spryselect5", {validateOn:["blur", "change"]});
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsAttendance);
    ?>

  • Server Behaviours not allowed in .php file?

    Hi,
    I've only recently made the jump from 'ugh, I'm a designer I don't need to know' to 'fine, this coding lark seems to be important' so this may be an exceptionally dim question. Apologies in advance if I've overlooked something obvious
    I am trying to build a very basic dynamic website, losely based on the steps outlined by David Power here http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html. My own design but otherwise I'm not straying from the instructions given.
    No problems developing the back end but when I came to displaying content from the database on the news page dreamweaver will not allow server behaviours to be selected (the little "+" button is greyed out in server behaviours and bindings but not for databases, if that's relevant). I haven't changed any settings or permissions and despite spending several hours poking around I don't really understand the problem enough to recognise the solution if I find it.
    I am using Dreamweaver CS4 on Windows Vista
    Any suggestions would be gratefully recieved.

    So you have the back end built, I assume you mean the insert, edit and delete forms for the data?
    Now you are trying to display that data on a front end page? Can you explain the steps you are taking?
    A very common problem for that would be not having a server type specified in your site definitions or possibly have Dreamweaver in 'Live View' mode.
    Brad Lawryk
    Adobe Community Professional: Dreamweaver
    Northern British Columbia Adobe Usergroup: Manager
    Thompson Rivers University: Dreamweaver Instructor
    My Adobe Blog: http://blog.lawryk.com

  • WebLogicServer BEA-000365 Server state changed to FORCE_SHUTTING_DOWN at the time of bi services starting for obiee

    Hi Gurus,
    I have integrated Hyperion 11.1.2.3 with obiee 11g. Able to see obiee in workspace and Shared services. But suddenly we restarted the server. After that obiee link not working. It is showing Internet explorer could not open the web page. I have tried to start the bi services but the prompt ends with this error msg.
    <Aug 14, 2013 9:26:44 AM MST> <Critical> <Security> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot id
    entity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot id
    entity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are enc
    rypted.>
    <Aug 14, 2013 9:26:44 AM MST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Auth
    entication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have
    been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first
    time the updated boot identity file is used to start the server, these new values are encrypted.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (bo
    ot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file wit
    h the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
            at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
            at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
            at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
            at weblogic.security.SecurityService.start(SecurityService.java:141)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            Truncated. see log file for complete stacktrace
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090303]Authentication Failed: User epm_admin weblogic.security.providers.authentication.LDA
    PAtnDelegateException: [Security:090295]caught unexpected exception
            at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:251)
            at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            Truncated. see log file for complete stacktrace
    >
    <Aug 14, 2013 9:26:44 AM MST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Aug 14, 2013 9:26:44 AM MST> <Error> <WebLogicServer> <BEA-000383> <A criticalservice failed. The server will shut itself down>
    <Aug 14, 2013 9:26:44 AM MST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    I have deleted password and username in boot.properties of Admin Server and bi_security1 folder but no use. Other option, i have deleted boot.properties then in the bi services prompt entered weblogic server username and password. Now also same issue.
    please help me, to resolve this issue.
    Thanks

    we need to change the Weblogic Username and Password which is saved in boot.properties file
    Thanks,
    Madhu

  • Not able to access Server Behaviours on Windows 8.1

    I moved my Dreamweaver from a Windows Vista Computer to a Windows 7 Computer and the to Windows 8.1.
    Windows 7 and Windows 8.1 are 64 bit
    I am using ASP and MySQL
    On the Windows 7 computer if I create a new ASP page, the Server Behaviour Plus Button is active, but on the Windows 8 computer the plus buttton is greyed out when I create a new page and I see the message to create a site for the file, chose a document type and set up a testing server.
    If I open an existing ASP page which has a Recordset already created, then the Plus Button is active and I can add a new recordset
    But if I want to add a parameter when creating a link on a form to submit, I am not able to create a parameter and am told to create a site for the file, chose a document type and set up a testing server.
    I cannot find a reason why on Windows 8.1 there is a problem while on Wondows 7 there is no problem
    To the best of my knowledge both computers are set up in the same way for Dreamweaver
    I have tried creating a new site with new pages, but that does not solve the problem
    Any suggestions would be appreciated

    Hi,
    Are you able to access the NAS via ip address? What is the result?
    The connection can also be blocked by firewall or anti-virus installed in your system, so I suggest you temporarily disable firewall\anti-virus software, and check if issue persists.
    Meanwhile, you can try the following registry settings and see the result, launch registry editor, locate to
    HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Policies/System
    create a new DWORD entry with the name EnableLinkedConnections and value 1, then restart PC
    Yolanda Zhu
    TechNet Community Support

  • How to allow server behaviours in .html files?

    Hi all,
    I'm trying to get DW9 to allow server behaviours in files
    with .htm and .html extensions.
    I've edited 'MMDocumentTypes.xml' accordingly but this
    results in a C++ application error so I'm guessing it's not the
    right way. I'm pretty sure it worked in DW8 but I guess I was just
    lucky there.
    What's the correct way to do this?

    Hi Priya,
    Try the following and see if it meets your requirement
    1) Go to root/documents. Go to folder->details-> Settings->Propereties. Click on the tab 'Access links' and copy the webdav URL.
    (This is the URL where u'll be uploading your folder CompanyFolder)
    2)Go to your desktop. Right Click on My Network Places.Click on open.
    3). Click on add a network place.
    4). Click on "Choose another network location"
    5). Paste your copied url and click on next.
    6). Enter your portal userid and password.
    7) It will now open the root/documents folder in a browser window.
    8) Copy ur folder 'CompanyFolder' into this window. Now go to portal under root/documents if the folder exists.
    Now that ur folder has been uploaded, now we'll look into the links of the files.
    Now for the links within ur html file to work, you will have to do is to provide the appropriate path of the connecting files.
    You could find the path of the individual files by going into root/documents. Right click on the file name and say 'Copy Shortcut'. This will provide u with the required path of the file.
    Regards,
    Prathamesh

  • Trying to load server behaviour but problem with extension manager

    I keep downloading the server behaviour extension from exchange which tells me that I need the latest version of the the extension manager.  I have the latest version of extension  downloaded through the cloud.  But when I go to windows  - manage extensions , it goes to the cloud panel and shows me that extension manager is up to date, and not ot the extension manager.   So now I can't access server behaviours which is the reason I use DW in the first place.  I have  windows 7 , 4gb ram, DW CC.

    Please click "Tools"->"Preferences" menu item in Extension Manager CC, check "Enable detailed logging" option. Restart Extension Manager. Try to install the extension. After the error message pops up, quit Extension Manager. Send the log files under "C:\Users\<YourUserName>\AppData\Roaming\Adobe\Extension Manager CC\Log" folder to [email protected]
    Note that the "C:\Users\<YourUserName>\AppData" folder is hidden by default. You have to check "Organize"->"Folder and search options"->"View"->"Show hidden files, folders, and drives".

  • XI 3.0 SP15: collapseContext behaviour changed ???????

    Hi.
    I'm having i nightmare:
    In one of my mapping I apply "collapseContext" to a queue that contains only [SUPPRESS]....
    With the production environment (SP12) the result queue is [SUPPRESS] again, while in the test environment (SP15)the result queue contains:
    [SUPPRESS]
    Does anybody noticed this behaviour change with the SP15? Is this a bug and perhaps there is already a solution?
    Sorry for the panic, but we have a very critical situation, because we cannot upgrade the production to SP15 otherwise our flow doesn't work, and we cannot make maintenance because the DEV environment is at a different SP level.
    Thanks in advance
    Alessandro

    Hi Alessandro,
    The behavior of the "collapseContext" didn't change. There was only a bugfix some time ago. Anyway, based on your description I could not reproduce the problem on our SP15 patch test system. I get the same result as you have on SP12 system.
    I've just got an idea, that maybe you're confusing the context change with an empty string value, because since SP13 context changes also have values printed on them, when you display a queue.
    Do you have an example of Message-Mapping producing different result in SP15 than in SP12?
    Regards,
      Alexey Borodin

  • Server name changed

    Exchange 2013, Outlook 2013
    we're now moving from 2010 to 2013 Exchange. first thing i noticed, in the server settings of Outlook, the server name changed to some hex
    [email protected] where before i used to have "mail.acme.com" there.
    is this normal? instead of "mail.acme.com" we now get
    [email protected]?

    Hello Reno,
    I have the same feeling but this change will decrease the hot issue “Your administrator has made a change to your mailbox” in Outlook.
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • SQL Server 2012 Change Data Capture for Oracle by Attunity support for Oracle 12

    I would like to know if there are any plans for SQL Server 2012 Change Data Capture for Oracle by Attunity to support versions of Oracle 12 and if by when.

    I have asked from the author of
    http://blogs.msdn.com/b/mattm/archive/2012/03/26/cdc-for-oracle-in-sql-server-2012.aspx about this.
    I will either ask him to answer here or I would be a messenger.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Dreamweaver  CS6 server behaviour panel (+) (-) inactive

    In my Dreamweaver  CS6 server behaviour panel bothe and signs are inactive due to which I m unable to add Lon in User for my login form ..
    plz help me,
    many thanks

    This may help http://www.kingluddite.com/tools/crud-in-dreamweaver

  • Keychain behaviour changed

    Hi,
    I have recently installed Google Chrome. When it asked for access to my keychain for various passwords saved by Safari, I clicked "Allow Always" and without asking my keychain password, Chrome was given the right to use the particular passwords.
    This is a change in behaviour - in the past when I clicked on "Allow" or "Allow Always" keychain would ask my keychain password. I really liked this feature: if someone would get to use my laptop without my permission, I was happy that they would not be able get my passwords. But now, it would be easy for a malicious user to write an application which can extract passwords, and then when keychain asks whether that application is allowed to access a given password, it will be a simple click to convince keychain give that password out.
    Could someone please: 1-confirm this behaviour change? 2-tell me how to go back to the old safer behaviour if possible...
    I look forward to some answers - please test this feature with say Chrome or Camino or whatever and tell me what your experience is (on 10.6.2). I am worried that this behaviour change could be the result of some tampering with my laptop. So if you don't experience the issue I described, I would be really happy to hear your comments.
    Thanks a lot,

    Hi Thomas,
    I am aware of the keychain unlocking, etc. However please note that I am not talking about a given application using information from an unlocked keychain. Safari is "Always Allowed" to use the password for a given page when the keychain in unlocked, and this has always been the case. But my situation is different.
    To make is more clear, let's say you run the keychain access application and double click on an existing item: at the bottom there is a little box which allows you to see what the recorded password is. When you click on that box you are asked to reconfirm your keychain password - even when for items that are part of an unlocked chain. Now, the problem I described would allow a malicious user to overcome this security feature. The fact that I unlocked a keychain and allowed a given application to use a particular password should NOT allow some other application access without a reconfirmation.
    I have never played with the Keychain properties before - I have always used the default behaviour and the default behaviour seems to have changed somehow. Are you saying that your default behaviour (when an app tried to use the passwords from another app) was different?
    Thanks for the response.
    Cheers,

  • JavaScript Error when adding Insert Record Server Behaviour

    Hello,
    I have searched the Internet and the Adobe Community but have yet resolved a problem.
    Everytime I go to Server Behaviours and choose Insert Record I get this error:
    I have never had this error before and I have used the function many times. Some people are saying it is corrupt configuration files, which I have deleted and still the error persists.
    I am now stuck and cannot do any more work until I have fixed this problem. Any help would be greatly recieved.
    Just so you know I am running Dreamweaver CS5 on Windows 8.1 Enterprise.
    Many thanks

    Below is the whole enchilada on JS Errors.  Start with #6 and #10.
    http://helpx.adobe.com/dreamweaver/kb/troubleshoot-javascript-errors-dreamweaver-cs4.html
    Nancy O.

Maybe you are looking for