Terminal: Strict capitalization enforcement

I've been getting started setting up my development environment on a fresh Mavericks install -- 10.9.4 on a 15" Retina MBPro.
While working through command line in terminal, I accidentally stumbled onto something I didn't expect, and was hoping someone else could validate.  I typically type my way through directories utilizing "tab" to autocomplete directories so I can traverse quicker.  At one point, I accidentally typed a short named directory that was capitalized, without capitalizing it and it still allowed me to continue to traverse and work within said directory.
A simple example:
While in my home directory, I can move to the Documents directory with our without capitalization.
Bezerker:~ csmith$ cd documents
Bezerker:documents csmith$ pwd
/Users/csmith/documents
Bezerker:documents csmith$ cd ..
Bezerker:~ csmith$ cd Documents
Bezerker:Documents csmith$ pwd
/Users/csmith/Documents
Autocomplete via "tab" does NOT work; however, I can still traverse these directory structures with invalid names.
Can anyone else reproduce this or tell me what "feature" I've enabled?
Thanks!

That's normal. The HFS filesystem is case-insensitive by default.

Similar Messages

  • Using 3rd party tags in JSF application

    I have a 3rd party tag library used previously in a Struts application to check if an user is authenticated / has logged in. The tag looks like this: <authn:authenticate userVarName="user" scope="session" errorPage="error.jsp" successPage="/faces/Page1.jsp"></authn:authenticate>. One unusual thing about the tag is that the uri for it references a jar file that includes the tld.
    I can build the app okay but deployment fails with the following error:
    Deploying application in domain failed; Error loading deployment descriptors for authapp Line 91 Column 10 -- cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'. One of '{"http://java.sun.com/xml/ns/j2ee":description, "http://java.sun.com/xml/ns/j2ee":display-name, "http://java.sun.com/xml/ns/j2ee":icon, "http://java.sun.com/xml/ns/j2ee":distributable, "http://java.sun.com/xml/ns/j2ee":context-param, "http://java.sun.com/xml/ns/j2ee":filter, "http://java.sun.com/xml/ns/j2ee":filter-mapping, "http://java.sun.com/xml/ns/j2ee":listener, "http://java.sun.com/xml/ns/j2ee":servlet, "http://java.sun.com/xml/ns/j2ee":servlet-mapping, "http://java.sun.com/xml/ns/j2ee":session-config, "http://java.sun.com/xml/ns/j2ee":mime-mapping, "http://java.sun.com/xml/ns/j2ee":welcome-file-list, "http://java.sun.com/xml/ns/j2ee":error-page, "http://java.sun.com/xml/ns/j2ee":jsp-config, "http://java.sun.com/xml/ns/j2ee":security-constraint, "http://java.sun.com/xml/ns/j2ee":login-config, "http://java.sun.com/xml/ns/j2ee":security-role, "http://java.sun.com/xml/ns/j2ee":env-entry, "http://java.sun.com/xml/ns/j2ee":ejb-ref, "http://java.sun.com/xml/ns/j2ee":ejb-local-ref, "http://java.sun.com/xml/ns/j2ee":service-ref, "http://java.sun.com/xml/ns/j2ee":resource-ref, "http://java.sun.com/xml/ns/j2ee":resource-env-ref, "http://java.sun.com/xml/ns/j2ee":message-destination-ref, "http://java.sun.com/xml/ns/j2ee":message-destination, "http://java.sun.com/xml/ns/j2ee":locale-encoding-mapping-list}' is expected.
    ; requested operation cannot be completed
    Exception=Deployment failed.
    The tag's tld is <tlib-version>1.1</tlib-version> <jsp-version>1.2</jsp-version>. I'm not sure if this is the problem or if 3rd party tags don't necessarily work within JSF (am using Creator) without modification. Does anyone have any advise on this? Should 3rd party tags work? If not, how do they need to be modified or turned into a component to work? This tag doesn't display anything - it checks if users have logged in and redirects them to another site to login if they did not log in.
    Message was edited by:
    sstgermain
    Message was edited by:
    sstgermain

    Thanks for your reply! I do have the jar file, which includes the .tld, in my WEB-INF/lib
    On Page1.jsp I tried using <%@ taglib uri="/WEB-INF/lib/myLibrary.jar" prefix="myTag" %> but got errors so I moved it to <jsp:root version="1.2" xmlns:myTag="/WEB-INF/lib/myLibrary.jar"...Should the <%@taglib uri = work? When I tried to use <%@taglib version I got errors saying strict xml enforced.
    I am using the format prefix:tag format <myTag:checkaccess userVarName="user"
    scope="session"
    errorPage="error.jsp" ></myTag:checkaccess>
    Do I need to somehow convert this tag into a component?
    I think the jar is fine since I'm using it in a number of other applications.
    Should the tag work? Do non-JSF tags have to be turned into components?

  • Using 3rd party tags

    I have a 3rd party tag library, used previously in Struts apps, that I would like to use in a JSF application. The tag checks if a user has logged in to the app and redirects to a login site if not. It doesn't display anything to the screen. Should a 3rd party tag that worked with JSP/Struts work with JSP without modification???? If not, how do I need to modifiy it? Please let me know!
    I imported the necessary libaries for the tag using <jsp:directive.page import="myFiles.*"/>
    I added the tags uri (which happens to be a jar file in /web-inf/ to the <jsp:root version="1.2" xmlns:authn="/WEBINF/lib/myLibrary.jar"
    The tag itself which I put between <jsp:root tags on Page1.jsp looks like this: <myTag:checkaccess userVarName="user"
    scope="session"
    errorPage="error.jsp"
    Info from the tld: <tlib-version>1.1</tlib-version>
    <jsp-version>1.2</jsp-version>
    I have the taglib entry in the web.xml
    I can build the app but when I try to deploy it I get the following error:
    Deploying application in domain failed; Error loading deployment descriptors for devpin Line 91 Column 13 -- cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'. One of '{"http://java.sun.com/xml/ns/j2ee":description, "http://java.sun.com/xml/ns/j2ee":display-name, "http://java.sun.com/xml/ns/j2ee":icon, "http://java.sun.com/xml/ns/j2ee":distributable, "http://java.sun.com/xml/ns/j2ee":context-param, "http://java.sun.com/xml/ns/j2ee":filter, "http://java.sun.com/xml/ns/j2ee":filter-mapping, "http://java.sun.com/xml/ns/j2ee":listener, "http://java.sun.com/xml/ns/j2ee":servlet, "http://java.sun.com/xml/ns/j2ee":servlet-mapping, "http://java.sun.com/xml/ns/j2ee":session-config, "http://java.sun.com/xml/ns/j2ee":mime-mapping, "http://java.sun.com/xml/ns/j2ee":welcome-file-list, "http://java.sun.com/xml/ns/j2ee":error-page, "http://java.sun.com/xml/ns/j2ee":jsp-config, "http://java.sun.com/xml/ns/j2ee":security-constraint, "http://java.sun.com/xml/ns/j2ee":login-config, "http://java.sun.com/xml/ns/j2ee":security-role, "http://java.sun.com/xml/ns/j2ee":env-entry, "http://java.sun.com/xml/ns/j2ee":ejb-ref, "http://java.sun.com/xml/ns/j2ee":ejb-local-ref, "http://java.sun.com/xml/ns/j2ee":service-ref, "http://java.sun.com/xml/ns/j2ee":resource-ref, "http://java.sun.com/xml/ns/j2ee":resource-env-ref, "http://java.sun.com/xml/ns/j2ee":message-destination-ref, "http://java.sun.com/xml/ns/j2ee":message-destination, "http://java.sun.com/xml/ns/j2ee":locale-encoding-mapping-list}' is expected.
    ; requested operation cannot be completed
    Exception=Deployment failed.
    Deployment failed.
    at org.netbeans.modules.j2ee.deployment.devmodules.api.Deployment.deploy(Deployment.java:210)
    at org.netbeans.modules.j2ee.ant.Deploy.execute(Deploy.java:75)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1062)
    at org.apache.tools.ant.module.bridge.impl.BridgeImpl.run(BridgeImpl.java:234)
    at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:242)
    at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:125)
    C:\Documents and Settings\sstgerma\My Documents\Creator\Projects\devpin\nbproject\build-impl.xml:607: Deployment failed.
    BUILD FAILED (total time: 0 seconds)
    Message was edited by:
    sstgermain

    Thanks for your reply! I do have the jar file, which includes the .tld, in my WEB-INF/lib
    On Page1.jsp I tried using <%@ taglib uri="/WEB-INF/lib/myLibrary.jar" prefix="myTag" %> but got errors so I moved it to <jsp:root version="1.2" xmlns:myTag="/WEB-INF/lib/myLibrary.jar"...Should the <%@taglib uri = work? When I tried to use <%@taglib version I got errors saying strict xml enforced.
    I am using the format prefix:tag format <myTag:checkaccess userVarName="user"
    scope="session"
    errorPage="error.jsp" ></myTag:checkaccess>
    Do I need to somehow convert this tag into a component?
    I think the jar is fine since I'm using it in a number of other applications.
    Should the tag work? Do non-JSF tags have to be turned into components?

  • What are Developers Allowed to Make?

    Hi there, I have a friend who is a programmer for Windows, and is curious about programming for Mac (Unix)
    There are some statements that need to be cleared up first:
    I have been told that to sell a product for Mac, there are licensing issues, that each and every retail product must pass strict guidelines and compatibility tests.
    Many people who program their programs don't pass the standards, and then release it for free.
    Personally, I feel that this is just silly, that it wouldn't make sense to lock out so many programmers for your OS. Can somebody clear this up for me?

    While you can try to sell any Mac app you want without Apple's blessing or permission (except for the aforementioned logos or badging), developers face a far harsher judge: Mac users.
    If your friend rushes some junk to market, or violates the Human Interface Guidelines too egregiously (I personally wish that Apple itself would be as strict as enforcing their own HIG), his customers will scream bloody murder and he could get some humiliating reviews.
    My suggestion is that your friend take his time and have some experienced Mac users look it over before he release it to the public. There are not many cases where customers will easily forgive a bad first effort, not matter how good the next ones are. It's not impossible, but it is a tough row to hoe!

  • Upgrade IDSM2 from 4.1(5)S225 to 5.0 not going well

    UPGRADING FROM 4.1 to 5.1. I know I have to got to 5.0 before I go to 5.1
    I have tried to upgrade from 4.1 to 5.0 and am failing. I upgraded the Maintenance Partition to 2.1(2) as you can see from the show ver command output.
    When I go to upgrade using the file IPS-K9-maj-5.0-1-S149.rpm.pkg i get the error messages to the console. they are included in the command line dump that follows..........
    Cisco Systems Intrusion Detection Sensor, Version 4.1(5)S225
    OS Version 2.4.18-5-phoenix
    Platform: WS-SVC-IDSM2-BUN
    Using 970657792 out of 1979682816 bytes of available memory (49% usage)
    Using 5.1G out of 17G bytes of available disk space (32% usage)
    MainApp 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    AnalysisEngine 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    Authentication 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    Logger 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    NetworkAccess 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    TransactionSource 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    WebServer 2005_Sep_01_21.30 (Release) 2005-09-01T21:30:35-0500 Running
    CLI 2005_Aug_02_10.53 (Release) 2005-08-02T10:25:35-0500
    Upgrade History:
    IDS-sig-4.1-5-S225.rpm.pkg 14:40:27 UTC Thu Apr 20 2006
    Maintenance Partition Version 2.1(2)
    THESE ARE THE ERROS I AM GETTING DURING THE UPGRADE WHICH FAILES.
    /signatures/[sig-id=11027,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11211,subsig-id=1]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11245,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11245,subsig-id=1]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11246,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11247,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11248,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11249,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11250,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=11251,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=12024,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=12025,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=12025,subsig-id=1]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=12026,subsig-id=0]/engine/ -- the union does not have a member selected
    /signatures/[sig-id=12027,subsig-id=0]/engine/ -- the union does not have a member selected
    Any help would be great!
    gary price

    The combination of tcp-reset on some UDP signatures in 4.x. was not invalidated. 5.0 is stricter and enforces this. It might be the best to disable reset for all signatures and then proceed with the upgrade.

  • 802.1x MAB with Microsoft NPS ieee802Device object group

    Hi,
    according to http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6586/ps6638/config_guide_c17-663759.pdf (MAC Authentication Bypass Deployment Guide as of May 2011), when you use Microsoft NPS, you cannot simply add MAC-Adresses as Active Directory user objects if your domain has strict password enforcement policies (because passwords are not allowed to match usernames under that circumstances). The guide mentions the use of the 'ieee802Device' class that is build into Windows Server 2003R2 and above. I have tried to get this working (with no success...), unfortunately I did not find any guidelines on the web how to accomplish this. What I did so far was:
    - Created a new structural class"myieee802Device", based on the abstract class "ieee802Device"
    - Created a new OU "ethers" in AD
    - Created a simple objekt by means of an ldifde.exe import
    dn: CN=001b21******,OU=ethers,DC=dot1x,DC=com
    changetype: add
    objectClass: myieee802Device
    cn: 001b21******
    macAddress: 00:1b:21:**:**:**
    When I trigger 802.1x authentication at a supplicant, NPS does not find the device (MAC-Address) in AD.
    Has anybody got this running so far?
    Stefan

    Stefan,
    Many thanks for your reply. in my test environment, what I have encountered is:
    1. I created the user account and used the mac address as account and password, which can access into the AD.
    2. I enabled the function of  MD5-Challenge  in Windows 2008 R2 NPS server. pls refer the link:
    http://social.technet.microsoft.com/Forums/en/winserverNAP/thread/e801bdac-9347-4efb-9d7c-bcf4d64aa927
    3. Created the network policy, which use the  MD5 as the EAP type, and select PAP as the authentication method.
    4. Enable the 802.1x and MAB function in the port of cisco 3750.
    by test, 802.1x works fine, but when  I try to let it authenticate with MAB, got the below error in NPS event log:
    Network Policy Server denied access to a user.
    Contact the Network Policy Server administrator for more information.
    User:
        Security ID:            QBBB\002622c997ff
        Account Name:            002622c997ff
        Account Domain:            QBBB
        Fully Qualified Account Name:    qbbb.net/Sales/002622c997ff
    Client Machine:
        Security ID:            NULL SID
        Account Name:            -
        Fully Qualified Account Name:    -
        OS-Version:            -
        Called Station Identifier:        3C-DF-1E-C6-48-13
        Calling Station Identifier:        00-26-22-C9-97-FF
    NAS:
        NAS IPv4 Address:        10.197.40.2
        NAS IPv6 Address:        -
        NAS Identifier:            -
        NAS Port-Type:            Ethernet
        NAS Port:            50219
    RADIUS Client:
        Client Friendly Name:        Wired
        Client IP Address:            10.197.40.2
    Authentication Details:
        Connection Request Policy Name:    Secure Wired (Ethernet) Connections
        Network Policy Name:        Connections to other access servers
        Authentication Provider:        Windows
        Authentication Server:        QINGXXX1.QBBB.net
        Authentication Type:        PAP
        EAP Type:            -
        Account Session Identifier:        -
        Logging Results:            Accounting information was written to the local log file.
        Reason Code:            65
        Reason:                The Network Access Permission setting in the dial-in properties of the user account in Active Directory is set to Deny access to the user. To change the Network Access Permission setting to either Allow access or Control access through NPS Network Policy, obtain the properties of the user account in Active Directory Users and Computers, click the Dial-in tab, and change Network Access Permission.
    Just for you reference and hope can get you help, thanks a lot!
    --Scott

  • About weblogic8.1.3

    while starting the weblogic iam getting an error:
    CLASSPATH=C:\bea\JROCKI~1\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblogic_sp.j
    ar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\common\eval\pointbase
    \lib\pbserver44.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\
    bea\JROCKI~1\jre\lib\rt.jar;C:\bea\WEBLOG~1\server\lib\webservices.jar;C:\Progra
    m Files\Altova\xmlspy\XMLSpyInterface.jar;.;F:\App;.;C:\Program Files\Apache Sof
    tware Foundation\Tomcat 5.0\common\lib\servlet-api.jar;.;C:\bea\weblogic81\serve
    r\lib\weblogic.jar;.;C:\Program Files\Apache Software Foundation\Tomcat 5.0\comm
    on\lib\tools.jar;.
    PATH=C:\bea\WEBLOG~1\server\bin;C:\bea\JROCKI~1\jre\bin;C:\bea\JROCKI~1\bin;C:\o
    raclexe\app\oracle\product\10.2.0\server\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT
    \System32\Wbem;C:\Program Files\Java\jdk1.5.0_01\bin;.;;C:\bea\WEBLOG~1\server\b
    in\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\[hostname]:[port]\console *
    <Mar 1, 2007 11:27:41 PM GMT+05:30> <Info> <WebLogicServer> <BEA-000377> <Starti
    ng WebLogic Server with BEA WebLogic JRockit(TM) 1.4.2_04 JVM Version ari-31788
    -20040616-1132-win-ia32 from BEA Systems, Inc.>
    <Mar 1, 2007 11:27:41 PM GMT+05:30> <Info> <Configuration Management> <BEA-15001
    6> <This server is being started as the administration server.>
    <Mar 1, 2007 11:27:41 PM GMT+05:30> <Info> <Management> <BEA-141107> <Version: W
    ebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
    <Mar 1, 2007 11:27:41 PM GMT+05:30> <Notice> <Management> <BEA-140005> <Loading
    domain configuration from configuration repository at C:\bea\user_projects\domai
    ns\inetsolv\.\config.xml.>
    <Mar 1, 2007 11:27:43 PM GMT+05:30> <Notice> <Log Management> <BEA-170019> <The
    server log file C:\bea\user_projects\domains\inetsolv\myserver\myserver.log is o
    pened. All server side log events will be written to this file.>
    <Mar 1, 2007 11:27:45 PM GMT+05:30> <Notice> <Security> <BEA-090082> <Security i
    nitializing using security realm myrealm.>
    <Mar 1, 2007 11:27:45 PM GMT+05:30> <Notice> <WebLogicServer> <BEA-000327> <Star
    ting WebLogic Admin Server "myserver" for domain "inetsolv">
    <Mar 1, 2007 11:27:52 PM GMT+05:30> <Warning> <HTTP> <BEA-101248> <[Application:
    'C:\bea\user_projects\domains\inetsolv\applications', Module: 'JSP']: Deploymen
    t descriptor "web.xml" is malformed. Check against the DTD: org.xml.sax.SAXParse
    Exception: cvc-elt.1: Cannot find the declaration of element 'web-app'. (line 2,
    column 10).>
    web.xml is
    <web-app>
    <servlet>
    <servlet-name>UpdateSrv</servlet-name>
    <servlet-class>UpdateSrv</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>UpdateSrv</servlet-name>
    <url-pattern>/servlet/UpdateSrv</url-pattern>
    </servlet-mapping>
    </web-app>
    It is showing web.xml is malformed.
    can u plz help me
    thanQ
    rajesh

    yup, it's malformed alright.
    Check the specs, you're missing everything you need like xsd and dtd references, xml declarations, etc. etc.
    Not that this would run on that old server (probably won't, it likely needs an older version), but this might give you an idea...
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4"
             xmlns="http://java.sun.com/xml/ns/j2ee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
    </web-app>and yes, all that is REQUIRED by the standard (though some servlet containers might be less than strict about enforcing that).

  • By Pass Admin Rights when installing Flash Player 9

    We currently incoporate Flash Player 9 with our proprietary
    application so our clients users may utilize it efficiently. The
    issue is now we are in the process of rolling the application to
    user's across the country and a good percentage of the do not have
    Flash Player 9 installed on their machine. The user's are behind a
    very strict, and enforced network with little to no priviledges. Is
    there a setting or a way that I can inform their network security
    team, to allow them this capability to install it on their own. I
    do not want to lower their security policy or elavate their rights,
    but definetly want the user to download and install Flash Player
    ONLY. Please any assistance will be greatly appreciated.

    I am running OS X, and I just installed flash player 9. I am
    not able to look at any flash sites anymore. I have been
    installing, reinstalling, uninstalling and nothing seems to work. I
    am not very computer saavy, but i can normally figure these thing
    out. Adobe is no help at all. I feel as though I should reinstall
    everything over again on my mac. Please let me know if it is
    possible to fix this bug.
    Have you had any response Bill? Is there a mac help forum for
    this?

  • Community Forum or Farce?  MODERATOR PLEASE READ!

    I've just scanned the headings for the most recent 300 or so threads in this sub-forum, and can find only ONE that has been "Locked" - my own recent "+iTunes a victim of the obesity epidemic+"?
    Your Help documentation states that "+Only the original topic poster has the option to mark replies as either Helpful or Solved ... *the originator* can also end the discussion by marking the topic as "answered+"."
    I did NOT mark the topic "answered" or a reply "Solved". After wasting a lot of time typing a reply to recent posts, only to have it rejected because someone chose to close the thread while I was typing, I eventually discovered that it had been marked "+assumed answered+" by "_a moderator_". (Help doesn't say anything about "+assumed answered+").
    More time spent working out that I can change it back to "unanswered", only to find that that doesn't appear to make any difference - the thread remains locked.
    Can you at least advise why the arbitrary decision? Why just my thread out of at least the most recent 300? Why a thread that minutes earlier had had a reply posted by someone else? Why not even the courtesy of advice or explanation when a current thread gets closed down by some anonymous person?

    Thank you, joshz. I guess Rachel has been too busy to answer for herself, and I will assume that her comments are her own, and that she is not speaking on behalf of Apple.
    Rachel, thanks for your input. What follows is both a reply to your post, and an attempt to address some broader issues that it raises.
    First some background. I have been involved with microcomputers in the PC world, not the Mac world, since the day IBM released the first PC, and long before even the first version of Windows. (For "involved" read "working in the industry".) Until iTunes, I have had very little to do with Apple. That allegiance does not necessarily reflect a product choice - it has been partly through circumstances and career requirements. I have worked for/with large players in the industry (including IBM), and my career has placed me in many roles including moderating user forums and heading technical support departments.
    So while new to these Apple Discussions, I would like to think that I come here with a little knowledge about the industry and its relevant practices, policies and ethics.
    Some of us arguably misguided "PC folk" have long held a sometimes-concealed envy for the Apple world. From the outside, Apple has appeared to stand out as a more liberal and freethinking company/environment than the more formal, old school, mainstream of the industry. It is with genuine regret that my experience on these forums in the last few days has gone a long way towards destroying that perception.
    My impression so far about Apple Discussions includes the opinion that its ranks are broadly made up of four categories of individuals...
    - A very large number of users seeking help, some of which are not afraid to express their frustration about problems encountered (as one would expect in any such forum);
    - A smaller number of users with a wealth of knowledge, and the commendable altruistic trait of offering assistance to others;
    - A smaller subset of the previous category who can be and usually are just as helpful, but that though not directly associated with Apple (as far as we can tell), also bring with them a strange zeal, passion or obsession to defend Apple at all costs and in any situation - not always, IMHO, fairly or impartially. Apple is always right, the customer wrong. They unfortunately (again IMHO) can become quite condescending towards other users who sometimes may deserve it, but often do not. (They can appear to be self-appointed enforcers, but I will refer to them here as the loyalists.)
    - An even smaller number of invisible hosts or moderators, including some that are undoubtedly doing a great job, but others (hopefully a small minority) that give the appearance of also getting carried away with too strict an enforcement or interpretation (often arbitrary) of "the rules" or their intent.
    Rachel, to you and that "someone" that you mentioned who also sought to "set me straight" in my locked thread, I would say that the very "Help and Terms of Use" that you are both fond of quoting can give rise to some interpretations other than your own. (I take comfort in the clause that states, "Views expressed on the Site are not endorsed by Apple".) Here are a few random snippets, which I admit include my opinions - but respect them if you wish me to respect yours.
    - The very first sentence reads... "Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products." And the name of the facility is Apple Discussions. Sorry, but I object to you and ed2345 trying to suggest that you know what constitutes a valid discussion, but I don't.
    - "A user-to-user support forum" - with due respect, that could imply to some a slightly greater degree of user rights than what appears to be the case, or what you appear to endorse.
    - "Constructive feedback about product features is welcome". Sorry, I thought that that was what my locked post was about.
    One of the problems, in my view, is that some of the users for whom this facility is allegedly provided choose to treat that last quote as reading "+Constructive feedback ... is welcome as long as it does not include any negative remarks, nor attempts in any way to convey dissatisfaction or the suggestion that Apple is anything less than perfect+".
    "Constructive feedback" carries an implication that something can be improved or is lacking. It is difficult for some to validate this without illustrating what is wrong or needs improvement. That task is made even more difficult if there is a bunch of people around waiting to jump on a well-intended contributor because in their view the thin hazy line between describing a problem and complaining about it has been crossed. You believe that "+Complaints are not constructive+". As another poster so aptly put it in another thread in which you also participated, we are left feeling that we must constantly "+walk on eggshells+". (He also suggested that these forums are suppressing free speech.)
    Here is how I am left feeling: There is a surprising degree of paranoia in these forums, and they are conducted in a fashion that implies that criticism cannot be tolerated and dissent must be suppressed. (As a foreigner, I'll refrain from any comparisons to world politics or suggestions of great irony.)
    As surprised as I have been to find this within Apple of all places, I am even more surprised at the degree of patronising defensiveness that appears to motivate some of the "contributions" of a small group of loyalists.
    Time to walk on eggshells, and emphasize that I am attempting to express impressions that are generated here, and in no way am I trying to be "defamatory". My previous reference to Seinfeld's Soup Nazi was meant to be as light-hearted as its source. But my mind is now entertaining some uncomfortable comparisons with the Hitler Youth movement, trained to believe and preach that the leader can do no wrong, and that suggestions to the contrary must be stamped out.
    (Yes, Kryten, I may have again invoked Godwin's Law, which I believe might be your way of saying that you believe that I’ve lost the argument. But I think that the "Fanboys" and "Post Count" segments may equally apply to some of the people that I am talking about.)
    This group of users seems to condone arbitrary constraints on what can be said, and how. But please, people, at least be consistent. And try to teach by example. By all means, preach the sacred Terms of Use when it is appropriate. But one gets the impression that you interpret the TOU to fit your argument at the time. Rachel, you frequently jump in when someone bemoans Apple's lack of involvement here by emphasizing how the TOU clearly state that these are USER forums. Valid point, but in other situations you are just as quick to point out how this facility belongs to Apple, which entitles them to run it as they see fit. You seem to want to have it both ways.
    Then we are so often chastised by the loyalist group for breaking the rules about content. They quote time and again the provision that submissions should be about technical support issues or constructive feedback. But Rachel you give the impression that you can sometimes bend the rule, or that your interpretation of what it means is superior to that of others. I don't complain about your posts in "How to stop Apple spam emails" nor, in "I very disappointed with Apple", your contribution about whether some company is an authorized reseller. I don't believe such posts to be about constructive product feedback or about technical support, but neither do I believe that it is for me to point that out to you.
    Speaking of interpretation, you have called my locked thread "+something of a poll, also prohibited in the Terms of Use, seeking to get others to agree with your complaint+". With respect, that is your opinion and not necessarily factual. My feedback, which you chose to label a complaint, included the wish to find out if users with more experience agreed with my suggestion, or if there was a valid counter-argument. That is a form of seeking replies - the very purpose of the forum. I even asked for "an argument to tell me why I'm wrong", though in retrospect, and knowing what I do now, the choice of the word "argument" was unfortunate as it could lend itself to the wrong interpretation by some. (I meant "argument as in discussion", but I wasn't walking on eggshells at the time.) Loyalist traits aside, I think that to interpret that post only as a complaint and a poll is very narrow and shortsighted. (And please, don't reply that you were merely speculating on how the moderator may have seen it. (S)he can speak for him/herself, and there is a strong implied agreement in your wording.)
    I'd like to make two points about the "Terms of Use". Firstly, in the corporate world just about every "agreement" contains provisions to cover any number of situations so that the first party can optionally rely on them if considered necessary. (The operative word being optionally.) This practice, initiated by lawyers to protect their client in all circumstances, does not in itself mean that all provisions, in their widest possible interpretation, should be strictly implemented or adhered to in every possible situation.
    Secondly, the loyalists are also very fond of telling the rest of us that Apple owns these "user forums" and can therefore do as it sees fit. On the surface that seems valid, but IMHO you are implying an arrogance on the part of the company that does not benefit its image. Here is a counter-opinion: I am sick of suggestions that Apple is "doing us a favour". That's like asking me to bend down and thank the government for providing roads. WE pay for those roads with our taxes, and we pay for the government. And it is *the customer* that pays for all of Apple's (and most other companies’) facilities. I am grateful for the forums (or at least I was when first joining), but it strikes me as patronising to suggest that we should bow and give thanks for "a favour".
    As to the various no doubt well-intended suggestions that I should find other forums in which to post, it seems a little strange to suggest that I should look elsewhere for the best place to discuss or ask about Apple matters. I would like to think that my other posts have been valid and may even have included a small contribution to (what should be) the cause. I am guilty of asking more than I have answered, but didn't all of you start out that way? If the loyalists don't like the way I write, or want me to change my personality before I am accepted in the community, forgive me for feeling that that is your problem, not mine. Apple may have the contentious right to ask me to go elsewhere, but I am not subscribing to an apparent class system of users.
    Only because I'm posting this here, I find it necessary to duck some additional loyalist comeback by stating that this, perhaps the longest post that I've ever written, IS entirely "Feedback about Discussions" (even if I happen to be long-winded). And I won't dwell on someone's arbitrary distinction between feedback and complaint. The original post in this thread concluded with what I believe to be valid questions about the actions of moderators. In spite of reassurances from others that moderators do read all posts in THIS forum, and that this is the place for such questions, I have so far received no answers - just loyalist opinions. That includes Kryten's suggestion that I am "+going on an uncontrolled attack on the people that are tasked to moderate Apple Discussions+". Uncontrolled? By the way, that "attack" was directed not at "the people" in general, but at the actions of a particular moderator. Moreover, any plural use was limited by the phrase "such moderators" - I.e. those that may behave similarly. Though again I plead guilty to two mistakes - I wasn't walking on eggshells, and I broke the golden rule that says that we should not in any way question the behaviour of the company or its representatives.
    Since I seem to be a rule-breaker, I'm about to risk adding more fuel to the fire. I'll close by including below a cut and pasted piece that was originally meant to be a reply in my locked thread to a loyalist post that it elicited. Reason for including it here is not just that I was denied a right of reply. I think it also addresses some of the above issues, and is direct "Feedback about Discussions".
    =================================================================
    ed2345 wrote:
    According to the site terms of use that we have all agreed to, "your Submission should either be a technical support question or a technical support answer." However, if you are interested, a web search would surely turn up sites out there where you could get a good argument going! Cheers M8.
    ed2345, I'm sure that many must be grateful for the sheer volume of posts under your belt, and that it demonstrates true community spirit.
    However, before posting such comments about my submission and acting as the rules enforcer, may I suggest that "+People that live in glass houses+..."?
    Firstly, it would seem that you have distorted the Terms of Use by selectively quoting only a part of clause 2.3. The actual wording (my emphasis) is...
    from Terms of Use:
    +"*Unless otherwise noted*, your Submission should either be a technical support question or a technical support answer. *Constructive feedback about product features is welcome as well*+."
    I'd like to think that my post might be seen, at least in the eyes of some, as "+constructive feedback about product features+".
    As with anything, that may be a matter of opinion and you may disagree. However, I reserve the right to my opinion that many of YOUR posts in other threads appear to have nothing whatsoever to do with EITHER technical issues OR product feedback. Just a few...
    - Q: Where do I purchase songs not available in iTunes? Your post: Buy from Amazon.com.
    - Where to find the Billboard Top 100 from previous years.
    - The correct apostrophe use in "90's music" and whether "Think Different" is grammatically correct.
    So apart from your arguably misleading statement about the terms of use, it also seems to be a case of "+Do as I say, not as I do+".
    I prefer "+Live and let live+".
    Cheers.

  • Anyconnect 3.1 and certificate authentication

    I am doing a proof of concept with anyconnect and certificate authentication. with 3.0 i was able to do this with a certificate from my CA and a client cert in a smartcard. I have upgraded to 3.1 and now it doesnt work anymore ( i need 3.1 and Asa 9.0 because of IPv6 Split-tunneling).
    Reading the forum i got some info that the ASA cert must have a EKU value of 'Server Authentication' and the client cert must have a similar EKU (client Auth)
    Is this mandatory or is there a way around this?

    Just to add to this.
    Anyconnect 3.1 started KU enforcement, but typically it will drop a warning you can accept (annoying but not blocking).
    EKU, is something that for the time being ASA will not enforce, plus it's only needed to IKEv2/IPsec, AFAIR SSL will work without it unless there have been big changes I'm not aware of.
    One can also argue EKU enforcement will not be strictly speaking enforced in future of IKEv2.
    Vide:
    http://tools.ietf.org/html/rfc4945
    5.1.3.12.  ExtendedKeyUsage
    M.

  • I am in California. I intend to buy refurbished iPad Retina display, WiFi 16 GB, form online Apple Store in US. Will its 1 year warranty be applicable/ honoured in India?

    I am in California. I intend to buy refurbished iPad Retina display, WiFi 16 GB, form online Apple Store in US.
      Will its 1 year warranty be applicable/ honoured in India?

    Here is a link to the US warranty for iPad:
    http://www.apple.com/legal/warranty/products/ipad-english.html
    Please note this excerpt:
    IMPORTANT RESTRICTION FOR iPHONE AND iPAD SERVICE.
    Apple may restrict warranty service for iPhone and iPad to the country where Apple or its Authorized Distributors originally sold the device.
    And here is the equivalent warranty for India (which includes the same limitation):
    http://www.apple.com/legal/warranty/products/ipad-english-mein.html
    You'll note the "may restrict" - I do not know how strict the enforcement of the terms would be.

  • Sybase administration GUI

    Hi guys,
    recently ive installed a new ERP 6.0 landscape with Sybase ASE and in both instances i was able to manage the database using the scjview executable, usually located under X:\sybase\SID\Shared\Sybase Central 6.0.0\win64 path.
    Now if i try to install the latest Sybase version the executable seems missing, even if the path still exist.
    Probably is a SAP choice, i dont understand the meaning (and worse i dont find any note/documentation regarding this change) but im just wondering which is the grapich tool i have to use to manage the database.
    I tried to download Sybase Control Center (3.2.5) but im stucked after a few steps (not able to connect the database using sa/sapsa user).
    Am i using the correct tool? Is there any other way? Administration is command line only?
    Help me.
    Thanks.
    Regards.

    Hi Deepak,
    I've tried also sapsa but with no success.
    Do you know some configuration that have to be made in SCC or in ASE server for the connection ?
    Can ASE Server installed by sapinst be connected to SCC ?
    I've attached our ASE Config file.
    Regards.
    #  Configuration File for the Sybase SQL Server
    #  Please read the System Administration Guide (SAG)
    #  before changing any of the values in this file.
    [Configuration Options]
    [General Information]
    config file version = DEFAULT
    [Backup/Recovery]
    recovery interval in minutes = DEFAULT
    print recovery information = DEFAULT
    tape retention in days = DEFAULT
    max concurrently recovered db = DEFAULT
    number of checkpoint tasks = DEFAULT
    enable backupserver HA = DEFAULT
    enforce dump configuration = DEFAULT
    enable dump history = 1
    dump history filename = DEFAULT
    [Cache Manager]
    number of oam trips = DEFAULT
    number of index trips = DEFAULT
    memory alignment boundary = DEFAULT
    global async prefetch limit = DEFAULT
    global cache partition number = DEFAULT
    extended cache size = DEFAULT
    [Named Cache:default data cache]
    cache size = 400M
    cache status = default data cache
    cache replacement policy = DEFAULT
    local cache partition number = DEFAULT
    [Meta-Data Caches]
    number of open databases = DEFAULT
    number of open objects = 60000
    open object spinlock ratio = DEFAULT
    number of open indexes = 60000
    open index hash spinlock ratio = DEFAULT
    open index spinlock ratio = DEFAULT
    partition groups = DEFAULT
    partition spinlock ratio = DEFAULT
    number of open partitions = 50000
    [Disk I/O]
    disk i/o structures = 2048
    number of large i/o buffers = DEFAULT
    page utilization percent = DEFAULT
    number of devices = 200
    disable disk mirroring = DEFAULT
    allow sql server async i/o = DEFAULT
    number of disk tasks = DEFAULT
    enable hp posix async i/o = DEFAULT
    [Languages]
    disable character set conversions = DEFAULT
    [Unicode]
    enable unicode normalization = 0
    enable surrogate processing = 0
    enable unicode conversions = DEFAULT
    size of unilib cache = DEFAULT
    dynamic SQL plan pinning = DEFAULT
    [Network Communication]
    default network packet size = 16384
    max network packet size = 16384
    remote server pre-read packets = DEFAULT
    number of remote connections = DEFAULT
    number of remote logins = DEFAULT
    number of remote sites = DEFAULT
    max number network listeners = DEFAULT
    tcp no delay = DEFAULT
    send doneinproc tokens = DEFAULT
    allow sendmsg = DEFAULT
    syb_sendmsg port number = DEFAULT
    allow remote access = DEFAULT
    number of network tasks = DEFAULT
    network polling mode = DEFAULT
    number of early send rows = DEFAULT
    early row send increment = DEFAULT
    [O/S Resources]
    max async i/os per engine = DEFAULT
    max async i/os per server = DEFAULT
    [Query Tuning]
    optimization goal = DEFAULT
    allow backward scans = DEFAULT
    abstract plan load = DEFAULT
    abstract plan dump = DEFAULT
    abstract plan replace = DEFAULT
    abstract plan cache = DEFAULT
    sampling percent = DEFAULT
    number of histogram steps = DEFAULT
    enable sort-merge join and JTC = DEFAULT
    number of worker processes = DEFAULT
    memory per worker process = DEFAULT
    max parallel degree = DEFAULT
    max scan parallel degree = DEFAULT
    max repartition degree = DEFAULT
    max resource granularity = DEFAULT
    enable metrics capture = DEFAULT
    optimization timeout limit = DEFAULT
    metrics lio max = DEFAULT
    metrics pio max = DEFAULT
    metrics elap max = DEFAULT
    metrics exec max = DEFAULT
    sproc optimize timeout limit = DEFAULT
    min pages for parallel scan = DEFAULT
    prod-consumer overlap factor = DEFAULT
    enable literal autoparam = DEFAULT
    max query parallel degree = DEFAULT
    cost of a logical io = DEFAULT
    cost of a physical io = DEFAULT
    cost of a cpu unit = DEFAULT
    auto query tuning = DEFAULT
    enable query tuning mem limit = DEFAULT
    query tuning plan executions = DEFAULT
    enable query tuning time limit = DEFAULT
    max buffers per lava operator = DEFAULT
    enable merge join = DEFAULT
    mnc_full_index_filter = DEFAULT
    capture missing statistics = DEFAULT
    enable compatibility mode = DEFAULT
    procedure deferred compilation = DEFAULT
    optimizer level = ase_current
    search engine timeout factor = DEFAULT
    deferred name resolution = DEFAULT
    update statistics hashing = DEFAULT
    builtin date strings = DEFAULT
    enable deferred parallel = DEFAULT
    [Physical Resources]
    [Physical Memory]
    max memory = 1792000
    additional network memory = 10485760
    shared memory starting address = DEFAULT
    allocate max shared memory = DEFAULT
    dynamic allocation on demand = DEFAULT
    lock shared memory = DEFAULT
    heap memory per user = 49152
    engine memory log size = DEFAULT
    compression memory size = DEFAULT
    kernel resource memory = 32768
    [Processors]
    max online engines = 16
    max online Q engines = DEFAULT
    number of engines at startup = DEFAULT
    number of Q engines at startup = DEFAULT
    statement cache size = 51200
    [SQL Server Administration]
    procedure cache size = 262144
    default database size = DEFAULT
    identity burning set factor = DEFAULT
    allow nested triggers = DEFAULT
    allow updates to system tables = DEFAULT
    default fill factor percent = DEFAULT
    default exp_row_size percent = DEFAULT
    number of mailboxes = DEFAULT
    number of messages = DEFAULT
    number of alarms = 1000
    number of pre-allocated extents = DEFAULT
    event buffers per engine = DEFAULT
    cpu accounting flush interval = DEFAULT
    i/o accounting flush interval = DEFAULT
    sql server clock tick length = DEFAULT
    runnable process search count = DEFAULT
    i/o polling process count = DEFAULT
    time slice = DEFAULT
    cpu grace time = 1000
    number of sort buffers = DEFAULT
    size of auto identity column = DEFAULT
    identity grab size = DEFAULT
    housekeeper free write percent = DEFAULT
    enable housekeeper GC = DEFAULT
    sysstatistics flush interval = DEFAULT
    allow resource limits = DEFAULT
    number of aux scan descriptors = 1024
    SQL Perfmon Integration = DEFAULT
    license information = DEFAULT
    text prefetch size = DEFAULT
    enable HA = DEFAULT
    i/o batch size = DEFAULT
    enable semantic partitioning = 1
    enable compression = 1
    compression info pool size = 32768
    capture compression statistics = DEFAULT
    enable xml = 1
    enable webservices = DEFAULT
    enable job scheduler = 1
    job scheduler tasks = DEFAULT
    job scheduler interval = DEFAULT
    js job output width = DEFAULT
    percent database for history = DEFAULT
    percent history free = DEFAULT
    percent database for output = DEFAULT
    percent output free = DEFAULT
    maximum job output = 2147483647
    enable sql debugger = DEFAULT
    identity reservation size = DEFAULT
    kernel mode = DEFAULT
    max transfer history = DEFAULT
    disable varbinary truncation = 1
    enable console logging = DEFAULT
    enable async database init = DEFAULT
    aggressive task stealing = DEFAULT
    [User Environment]
    number of user connections = 200
    stack size = 151552
    stack guard size = 4096
    permission cache entries = DEFAULT
    user log cache size = DEFAULT
    user log cache spinlock ratio = DEFAULT
    session tempdb log cache size = DEFAULT
    max nesting level = DEFAULT
    number of backup connections = DEFAULT
    enable pci = DEFAULT
    max pci slots = DEFAULT
    pci memory size = DEFAULT
    transfer utility memory size = DEFAULT
    column default cache size = DEFAULT
    replication agent memory size = DEFAULT
    max native threads per engine = DEFAULT
    messaging memory = DEFAULT
    enable real time messaging = DEFAULT
    histogram tuning factor = DEFAULT
    rtm thread idle wait period = DEFAULT
    [Lock Manager]
    number of locks = 5000000
    deadlock checking period = DEFAULT
    lock spinlock ratio = DEFAULT
    lock address spinlock ratio = DEFAULT
    lock table spinlock ratio = DEFAULT
    lock hashtable size = 8192
    cluster redundancy level = DEFAULT
    lock scheme = datarows
    lock wait period = 1800
    read committed with lock = DEFAULT
    print deadlock information = DEFAULT
    deadlock retries = DEFAULT
    page lock promotion HWM = DEFAULT
    page lock promotion LWM = DEFAULT
    page lock promotion PCT = DEFAULT
    row lock promotion HWM = 2147483647
    row lock promotion LWM = 2147483647
    row lock promotion PCT = DEFAULT
    [Security Related]
    systemwide password expiration = DEFAULT
    audit queue size = DEFAULT
    curread change w/ open cursors = DEFAULT
    allow procedure grouping = DEFAULT
    select on syscomments.text = DEFAULT
    auditing = DEFAULT
    current audit table = DEFAULT
    suspend audit when device full = DEFAULT
    enable row level access = DEFAULT
    check password for digit = DEFAULT
    minimum password length = DEFAULT
    maximum failed logins = DEFAULT
    enable ssl = DEFAULT
    FIPS login password encryption = 1
    enable predicated privileges = DEFAULT
    enable granular permissions = DEFAULT
    restricted decrypt permission = DEFAULT
    net password encryption reqd = DEFAULT
    automatic master key access = DEFAULT
    unified login required = DEFAULT
    use security services = DEFAULT
    msg confidentiality reqd = DEFAULT
    msg integrity reqd = DEFAULT
    enable pam user auth = DEFAULT
    enable ldap user auth = DEFAULT
    enable encrypted columns = DEFAULT
    secure default login = DEFAULT
    enable logins during recovery = DEFAULT
    [Extended Stored Procedure]
    esp unload dll = DEFAULT
    esp execution priority = DEFAULT
    esp execution stacksize = DEFAULT
    xp_cmdshell context = DEFAULT
    start mail session = DEFAULT
    start xp server during boot = DEFAULT
    [Error Log]
    event logging = DEFAULT
    log audit logon success = DEFAULT
    log audit logon failure = DEFAULT
    event log computer name = DEFAULT
    [Rep Agent Thread Administration]
    enable rep agent threads = DEFAULT
    [Component Integration Services]
    enable cis = DEFAULT
    cis connect timeout = DEFAULT
    cis bulk insert batch size = DEFAULT
    max cis remote connections = DEFAULT
    cis idle connection timeout = DEFAULT
    cis packet size = DEFAULT
    cis cursor rows = DEFAULT
    enable snmp = DEFAULT
    enable file access = DEFAULT
    cis bulk insert array size = DEFAULT
    enable full-text search = DEFAULT
    cis rpc handling = DEFAULT
    [Java Services]
    enable java = DEFAULT
    size of process object heap = DEFAULT
    size of shared class heap = DEFAULT
    size of global fixed heap = DEFAULT
    number of java sockets = DEFAULT
    [DTM Administration]
    enable DTM = DEFAULT
    enable xact coordination = DEFAULT
    xact coordination interval = DEFAULT
    number of dtx participants = DEFAULT
    strict dtm enforcement = DEFAULT
    txn to pss ratio = DEFAULT
    dtm lock timeout period = DEFAULT
    dtm detach timeout period = DEFAULT
    [Diagnostics]
    dump on conditions = DEFAULT
    maximum dump conditions = DEFAULT
    number of dump threads = DEFAULT
    memory dump compression level = DEFAULT
    number of ccbs = DEFAULT
    caps per ccb = DEFAULT
    average cap size = DEFAULT
    [Monitoring]
    enable monitoring = 1
    sql text pipe active = DEFAULT
    sql text pipe max messages = DEFAULT
    plan text pipe active = DEFAULT
    plan text pipe max messages = DEFAULT
    statement pipe active = DEFAULT
    statement pipe max messages = DEFAULT
    errorlog pipe active = 1
    errorlog pipe max messages = 500
    deadlock pipe active = 1
    deadlock pipe max messages = 500
    lock timeout pipe max messages = 500
    lock timeout pipe active = 1
    wait event timing = 1
    process wait events = DEFAULT
    object lockwait timing = 1
    SQL batch capture = 1
    statement statistics active = 1
    per object statistics active = 1
    max SQL text monitored = 2048
    performance monitoring option = DEFAULT
    enable stmt cache monitoring = 1
    enable spinlock monitoring = DEFAULT
    [Shared Disk Cluster]
    CIPC regular message pool size = DEFAULT
    CIPC large message pool size = DEFAULT
    DMA object pool size = DEFAULT
    workload manager cache size = DEFAULT
    idle migration timeout = DEFAULT
    session migration timeout = DEFAULT
    automatic cluster takeover = DEFAULT
    quorum heartbeat interval = DEFAULT
    quorum heartbeat retries = DEFAULT
    cluster heartbeat interval = DEFAULT
    cluster heartbeat retries = DEFAULT
    cluster vote timeout = DEFAULT
    enable i/o fencing = DEFAULT
    [Dump Configuration:NSADB]
    stripe directory = \\192.168.60.19\ehp4-backup\SYBASE_NSA
    external api name = DEFAULT
    number of stripes = DEFAULT
    number of retries = DEFAULT
    block size = DEFAULT
    compression level = 101
    retain days = DEFAULT
    init = DEFAULT
    verify = header
    notify = DEFAULT
    remote backup server name = DEFAULT
    [Dump Configuration:NSALOG]
    stripe directory = \\192.168.60.19\ehp4-backup\SYBASE_NSA
    external api name = DEFAULT
    number of stripes = DEFAULT
    number of retries = DEFAULT
    block size = DEFAULT
    compression level = 101
    retain days = DEFAULT
    init = DEFAULT
    verify = header
    notify = DEFAULT
    remote backup server name = DEFAULT
    [Application Functionality]
    enable functionality group = 1
    select for update = DEFAULT
    streamlined dynamic SQL = DEFAULT
    enable inline default sharing = DEFAULT
    enable permissive unicode = DEFAULT
    quoted identifier enhancements = DEFAULT
    suppress js max task message = DEFAULT
    enable concurrent dump tran = DEFAULT
    enable plan sharing = 0
    [Thread Pool:syb_blocking_pool]
    number of threads = 4
    [Thread Pool:syb_default_pool]
    number of threads = 3
    idle timeout = 100

  • Isa 2006 standard, going crazy with "Enforce Strict RPC compliance"

    Hello,
    I am trying to join a W2k8 R2 machine to a domain. If it is in the same network as the domain controller, no problem whatosever. If instead, there is a ISA Server (2006, Standar), issues arise.
    Even if I create a rule allowing all the traffic back and forth from the perimeter to the lan, the message still appears.
    This is the message:
    "Changing primary domain dns name "" failed. The name will remain "newdomain.org" . The specified server cannot perform the requested operation.
    The domain controller and the client are both W2k8 R2 64 bits.
    Very important:
    I can attach a 2008 Windows server as long as it is 32bits, but not a R2 (x64).
    Thanks in advance!
    Luis Olías Técnico/Admon Sistemas . Sevilla (España - Spain)

    Thanks a lot Joyce.
    It has been a while since I wrote this post and I solved the issue by following some directions from this blog:
    http://blogs.technet.com/b/instan/ar...ot-failed.aspx
    which says:
    This is a bogus error message [...] it's caused by the domain join code ending up in a function which it doesn't need to run anyway during a domain join operation using the GUI.
    What's failing is the attempt to change the Primary DNS suffix of the machine after the domain join has succeeded - but the Primary DNS suffix is already correct at that point which is why this can be ignored.
    The domain join itself is not affected at all and will have succeeded if you're seeing this specific error message with the empty quotation marks as that code is only run after a successful domain join.
    As frustrating as it is, this is unfortunately one of those cosmetic issues which aren't likely to be fixed until the next OS version - primarily because it has zero impact and no effect beyond the ugly error message.
    A workaround that removes the error message is to populate the Primary DNS suffix of the machine before attempting the domain join.
    Luis Olías Técnico/Admon Sistemas . Sevilla (España - Spain)

  • Perl won't load GD::Graph::pie in Apache, but does with terminal.

    It took me forever to get GD to work at all. Now I'm totally stuck. I hope someone can help me. If I run my cgi file from terminal using "perl /Library/WebServer/CGI-Executables/GraphTest.cgi" it prints the "jpeg". If I run it from apache using "http://localhost/cgi-bin/GraphTest.cgi", I get an error saying "Can't locate GD/Graph/pie.pm" along with the typical PATH settings and such. Why can perl run the script without issue, but using web sharing/apache perl can't find the perl module? I assume this is an apache issue?
    More details:
    *I finally got GD installed using port
    *Every time I attempted to install GD and it failed, I erased the HDD and reinstalled OSX. So, this is a very fresh install.
    *This is Snow Leopard, not Snow Leopard Server
    *If I add the following two lines and run, "sudo perl /Library/WebServer/CGI-Executables/GraphTest.cgi" it will create the graph in my profile directory:
    open(GRAPH,">graph5.jpg") || die "Cannot open graph5.jpg: $!\n";
    print GRAPH $graph->gd->jpeg(100);
    *The cgi file:
    #!/usr/bin/perl -w
    use strict;
    use GD::Graph::pie;
    use Text::CSV_XS;
    my @data;
    my $csv = new Text::CSV_XS;
    open(FILE,"/Library/WebServer/data/testmetrics.csv") || die "Cannot open testmetrics.csv: $!\n";
    while (my $line = <FILE>) {
    $csv->parse($line);
    my @col = $csv->fields;
    push(@data,\@col);
    my $graph = new GD::Graph::pie(300, 300);
    $graph->set(
    title => 'Revenue by Category for 2001',
    label => 'Category',
    axislabelclr => 'black',
    '3d' => 1,
    start_angle => 90,
    suppress_angle => 5,
    ) or warn $graph->error;
    $graph->plot(\@data) or die $graph->error;
    print $graph->gd->jpeg(100);

    Charles Minow wrote:
    Hi--
    Welcome to the Apple Discussions.
    I see some problems with your script, though they wouldn't be a problem with GD::Graph::pie. I'm not sure yet what that problem is.
    This script works on my computer:
    #!/usr/bin/perl
    use strict;
    use GD::Graph::pie;
    use CGI qw(:standard);
    my @data = (
    ["1st","2nd","3rd","4th","5th","6th"],
    [ 4, 2, 3, 4, 13, 3.5]
    my $my_graph = new GD::Graph::pie( 250, 200 );
    #$my_graph = new GD::Graph::pie( );
    $my_graph->set(
    title => 'A Pie Chart',
    label => 'Label',
    axislabelclr => 'black',
    pie_height => 36,
    l_margin => 15,
    r_margin => 15,
    start_angle => 235,
    transparent => 0,
    $my_graph->plot(@data);
    print header('Content-type' => 'image/jpeg');
    binmode STDOUT;
    print $my_graph->gd->jpeg(100);
    Note that I included the CGI module, and printed a header with the content type before sending the graphic.
    If that script doesn't work on your computer, I'd be interested in seeing the output of this script (run by Apache, of course):
    #!/usr/bin/perl
    use strict;
    use CGI qw(:standard);
    print header();
    print qq(Perl version (Apache): ) . $] . qq(
    my $info = qx(perl -V);
    print qq(<pre>$info</pre>
    foreach my $key (sort keys %ENV) {
    print qq($key = $ENV{$key}
    I'd also be curious to see the results of "perl -V" vs. "/usr/bin/perl -V" run from the command line. Perhaps you are somehow using two different Perls...
    charlie
    Charles Minow wrote:
    Hi--
    Welcome to the Apple Discussions.
    I see some problems with your script, though they wouldn't be a problem with GD::Graph::pie. I'm not sure yet what that problem is.
    This script works on my computer:
    #!/usr/bin/perl
    use strict;
    use GD::Graph::pie;
    use CGI qw(:standard);
    my @data = (
    ["1st","2nd","3rd","4th","5th","6th"],
    [ 4, 2, 3, 4, 13, 3.5]
    my $my_graph = new GD::Graph::pie( 250, 200 );
    #$my_graph = new GD::Graph::pie( );
    $my_graph->set(
    title => 'A Pie Chart',
    label => 'Label',
    axislabelclr => 'black',
    pie_height => 36,
    l_margin => 15,
    r_margin => 15,
    start_angle => 235,
    transparent => 0,
    $my_graph->plot(@data);
    print header('Content-type' => 'image/jpeg');
    binmode STDOUT;
    print $my_graph->gd->jpeg(100);
    Note that I included the CGI module, and printed a header with the content type before sending the graphic.
    If that script doesn't work on your computer, I'd be interested in seeing the output of this script (run by Apache, of course):
    #!/usr/bin/perl
    use strict;
    use CGI qw(:standard);
    print header();
    print qq(Perl version (Apache): ) . $] . qq(
    my $info = qx(perl -V);
    print qq(<pre>$info</pre>
    foreach my $key (sort keys %ENV) {
    print qq($key = $ENV{$key}
    I'd also be curious to see the results of "perl -V" vs. "/usr/bin/perl -V" run from the command line. Perhaps you are somehow using two different Perls...
    charlie
    Hi Charles,
    Thank you much for the reply. I changed my script to exactly what you requested. I got the same old...
    "[Wed Jan 06 23:02:15 2010] [error] [client ::1] Can't locate GD/Graph/pie.pm in @INC (@INC contains: /Library/Perl/Updates/5.10.0 /System/Library/Perl/5.10.0/darwin-thread-multi-2level /System/Library/Perl/5.10.0 /Library/Perl/5.10.0/darwin-thread-multi-2level /Library/Perl/5.10.0 /Network/Library/Perl/5.10.0/darwin-thread-multi-2level /Network/Library/Perl/5.10.0 /Network/Library/Perl /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level /System/Library/Perl/Extras/5.10.0 .) at /Library/WebServer/CGI-Executables/GraphTest.cgi line 4.
    [Wed Jan 06 23:02:15 2010] [error] [client ::1] BEGIN failed--compilation aborted at /Library/WebServer/CGI-Executables/GraphTest.cgi line 4.
    [Wed Jan 06 23:02:15 2010] [error] [client ::1] Premature end of script headers: GraphTest.cgi"
    The output of your other script is:
    "Perl version (Apache): 5.010000
    Summary of my perl5 (revision 5 version 10 subversion 0) configuration:
    Platform:
    osname=darwin, osvers=10.0, archname=darwin-thread-multi-2level
    uname='darwin neige.apple.com 10.0 darwin kernel version 10.0.0d8: tue may 5 19:29:59 pdt 2009; root:xnu-1437.2~2release_i386 i386 '
    config_args='-ds -e -Dprefix=/usr -Dccflags=-g -pipe -Dldflags= -Dman3ext=3pm -Duseithreads -Duseshrplib -Dincversionlist=none -Dcc=gcc-4.2'
    hint=recommended, useposix=true, d_sigaction=define
    useithreads=define, usemultiplicity=define
    useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
    use64bitint=define, use64bitall=define, uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
    Compiler:
    cc='gcc-4.2', ccflags ='-arch x86_64 -arch i386 -arch ppc -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include',
    optimize='-Os',
    cppflags='-g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include'
    ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
    intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
    alignbytes=8, prototype=define
    Linker and Libraries:
    ld='gcc-4.2 -mmacosx-version-min=10.6', ldflags ='-arch x86_64 -arch i386 -arch ppc -L/usr/local/lib'
    libpth=/usr/local/lib /usr/lib
    libs=-ldbm -ldl -lm -lutil -lc
    perllibs=-ldl -lm -lutil -lc
    libc=/usr/lib/libc.dylib, so=dylib, useshrplib=true, libperl=libperl.dylib
    gnulibc_version=''
    Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
    cccdlflags=' ', lddlflags='-arch x86_64 -arch i386 -arch ppc -bundle -undefined dynamic_lookup -L/usr/local/lib'
    Characteristics of this binary (from libperl):
    Compile-time options: MULTIPLICITY PERLDONT_CREATEGVSV
    PERLIMPLICITCONTEXT PERLMALLOCWRAP USE64_BITALL
    USE64_BITINT USE_ITHREADS USELARGEFILES
    USE_PERLIO USEREENTRANTAPI
    Locally applied patches:
    /Library/Perl/Updates/ comes before system perl directories
    installprivlib and installarchlib points to the Updates directory
    Built under darwin
    Compiled at Jun 24 2009 00:35:27
    @INC:
    /Library/Perl/Updates/5.10.0
    /System/Library/Perl/5.10.0/darwin-thread-multi-2level
    /System/Library/Perl/5.10.0
    /Library/Perl/5.10.0/darwin-thread-multi-2level
    /Library/Perl/5.10.0
    /Network/Library/Perl/5.10.0/darwin-thread-multi-2level
    /Network/Library/Perl/5.10.0
    /Network/Library/Perl
    /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level
    /System/Library/Perl/Extras/5.10.0
    DOCUMENT_ROOT = /Library/WebServer/Documents
    GATEWAY_INTERFACE = CGI/1.1
    HTTP_ACCEPT = application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/pn g,/;q=0.5
    HTTPACCEPTENCODING = gzip, deflate
    HTTPACCEPTLANGUAGE = en-us
    HTTP_CONNECTION = keep-alive
    HTTP_HOST = localhost
    HTTPUSERAGENT = Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9
    PATH = /usr/bin:/bin:/usr/sbin:/sbin
    QUERY_STRING =
    REMOTE_ADDR = ::1
    REMOTE_PORT = 49513
    REQUEST_METHOD = GET
    REQUEST_URI = /cgi-bin/GraphTest2.cgi
    SCRIPT_FILENAME = /Library/WebServer/CGI-Executables/GraphTest2.cgi
    SCRIPT_NAME = /cgi-bin/GraphTest2.cgi
    SERVER_ADDR = ::1
    SERVER_ADMIN = [email protected]
    SERVER_NAME = localhost
    SERVER_PORT = 80
    SERVER_PROTOCOL = HTTP/1.1
    SERVER_SIGNATURE =
    SERVER_SOFTWARE = Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8k DAV/2
    VERSIONERPERL_PREFER_32BIT = no
    VERSIONERPERLVERSION = 5.10.0
    _CF_USER_TEXTENCODING = 0x46:0:0"
    Your other request of "perl -V" outputs:
    "Summary of my perl5 (revision 5 version 8 subversion 9) configuration:
    Platform:
    osname=darwin, osvers=10.0.0, archname=darwin-2level
    uname='darwin itca-display-9235.local 10.0.0 darwin kernel version 10.0.0: fri jul 31 22:47:34 pdt 2009; root:xnu-1456.1.25~1release_i386 i386 '
    config_args='-des -D prefix=/opt/local -D scriptdir=/opt/local/bin -D cppflags=-I/opt/local/include -D ldflags=-L/opt/local/lib -D vendorprefix=/opt/local -D man1ext=1pm -D man3ext=3pm -D cc=/usr/bin/gcc-4.2 -D ld=/usr/bin/gcc-4.2 -D man1dir=/opt/local/share/man/man1p -D man3dir=/opt/local/share/man/man3p -D siteman1dir=/opt/local/share/man/man1 -D siteman3dir=/opt/local/share/man/man3 -D vendorman1dir=/opt/local/share/man/man1 -D vendorman3dir=/opt/local/share/man/man3 -D incversionlist=5.8.8 5.8.8/darwin-2level -U i_bind -U i_gdbm -U i_db'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=define use64bitall=define uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
    Compiler:
    cc='/usr/bin/gcc-4.2', ccflags ='-fno-common -DPERL_DARWIN -I/opt/local/include -no-cpp-precomp -fno-strict-aliasing -pipe -I/opt/local/include',
    optimize='-O3',
    cppflags='-I/opt/local/include -no-cpp-precomp -fno-common -DPERL_DARWIN -I/opt/local/include -no-cpp-precomp -fno-strict-aliasing -pipe -I/opt/local/include'
    ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
    intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
    alignbytes=8, prototype=define
    Linker and Libraries:
    ld='env MACOSXDEPLOYMENTTARGET=10.3 /usr/bin/gcc-4.2', ldflags ='-L/opt/local/lib'
    libpth=/opt/local/lib /usr/lib
    libs=-ldbm -ldl -lm -lutil -lc
    perllibs=-ldl -lm -lutil -lc
    libc=/usr/lib/libc.dylib, so=dylib, useshrplib=false, libperl=libperl.a
    gnulibc_version=''
    Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
    cccdlflags=' ', lddlflags='-L/opt/local/lib -bundle -undefined dynamic_lookup'
    Characteristics of this binary (from libperl):
    Compile-time options: PERLMALLOCWRAP USE64_BITALL USE64_BITINT
    USEFASTSTDIO USELARGEFILES USE_PERLIO
    Built under darwin
    Compiled at Jan 6 2010 17:16:53
    @INC:
    /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level
    /opt/local/lib/perl5/site_perl/5.8.9
    /opt/local/lib/perl5/site_perl
    /opt/local/lib/perl5/vendor_perl/5.8.9/darwin-2level
    /opt/local/lib/perl5/vendor_perl/5.8.9
    /opt/local/lib/perl5/vendor_perl
    /opt/local/lib/perl5/5.8.9/darwin-2level
    /opt/local/lib/perl5/5.8.9
    And finally, "/usr/bin/perl -V" outputs
    "Summary of my perl5 (revision 5 version 10 subversion 0) configuration:
    Platform:
    osname=darwin, osvers=10.0, archname=darwin-thread-multi-2level
    uname='darwin neige.apple.com 10.0 darwin kernel version 10.0.0d8: tue may 5 19:29:59 pdt 2009; root:xnu-1437.2~2release_i386 i386 '
    config_args='-ds -e -Dprefix=/usr -Dccflags=-g -pipe -Dldflags= -Dman3ext=3pm -Duseithreads -Duseshrplib -Dincversionlist=none -Dcc=gcc-4.2'
    hint=recommended, useposix=true, d_sigaction=define
    useithreads=define, usemultiplicity=define
    useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
    use64bitint=define, use64bitall=define, uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
    Compiler:
    cc='gcc-4.2', ccflags ='-arch x86_64 -arch i386 -arch ppc -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include',
    optimize='-Os',
    cppflags='-g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include'
    ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
    intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
    alignbytes=8, prototype=define
    Linker and Libraries:
    ld='gcc-4.2 -mmacosx-version-min=10.6', ldflags ='-arch x86_64 -arch i386 -arch ppc -L/usr/local/lib'
    libpth=/usr/local/lib /usr/lib
    libs=-ldbm -ldl -lm -lutil -lc
    perllibs=-ldl -lm -lutil -lc
    libc=/usr/lib/libc.dylib, so=dylib, useshrplib=true, libperl=libperl.dylib
    gnulibc_version=''
    Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
    cccdlflags=' ', lddlflags='-arch x86_64 -arch i386 -arch ppc -bundle -undefined dynamic_lookup -L/usr/local/lib'
    Characteristics of this binary (from libperl):
    Compile-time options: MULTIPLICITY PERLDONT_CREATEGVSV
    PERLIMPLICITCONTEXT PERLMALLOCWRAP USE64_BITALL
    USE64_BITINT USE_ITHREADS USELARGEFILES
    USE_PERLIO USEREENTRANTAPI
    Locally applied patches:
    /Library/Perl/Updates/<version> comes before system perl directories
    installprivlib and installarchlib points to the Updates directory
    Built under darwin
    Compiled at Jun 24 2009 00:35:27
    @INC:
    /Library/Perl/Updates/5.10.0
    /System/Library/Perl/5.10.0/darwin-thread-multi-2level
    /System/Library/Perl/5.10.0
    /Library/Perl/5.10.0/darwin-thread-multi-2level
    /Library/Perl/5.10.0
    /Network/Library/Perl/5.10.0/darwin-thread-multi-2level
    /Network/Library/Perl/5.10.0
    /Network/Library/Perl
    /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level
    /System/Library/Perl/Extras/5.10.0
    So, I guess you were right. I'm running two different perls. The first one looks like it was installed by port along with GD. Is it possible to get the default perl to run GD?

  • $500 equipment termination fee after paying $350 early termination fee?

    Hello,
    For some reason, my previous posting now says it is an unauthorized one and it cannot be accessed. I'm posting about a case of my girlfriend who upgraded to iPhone 5S 32G ($299.99+26.62) on December 23, 2013 with the 2-yr contract and had to cancel on January 7, 2014 since she had to leave the country. It would have been nicer if the cancellation was within 14 days, then she could simply cancel the contract and return the device without the early termination fee $350. Unfortunately, it was not the case, and she had to pay the early termination fee $350, the upgrade fee $35, and the amount for the last month usage. Everything was paid off as the terms and clauses said, and until that time, everything was fine: paid the gross amount of $299.99+26.62+350+35+more unfortunately, but kept the phone at least.
    The bad story came today via an email from Rosee (removed) ([email protected]), a person from Collections Department of stayconnectedwireless.com, saying that my girlfriend will be charged the sum amount of $500 due to terminating your Verizon wireless account without returning the equipment to the store. What??? She looked at T&C very carefully before the unfortunate early termination and paid all the huge amount of fees Verizon described in its T&C for termination. The early termination fee is usually considered to account for the discount you get with the 2-yr contract. At the time of early termination, Verizon either wants the device back or the early termination fee paid, not both. Since my girlfriend already paid off all the fees, the email sounded totally weird. What will be your reaction if you paid $299.99+26.62+350+35+more which is about the full retail price and the store says you have to return the device or pay $500 more?
    I had to search over the web to figure out what happened.
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-2
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-4
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-5
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-6
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-8
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-9
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-10
    http://www.yelp.com/biz/verizon-wireless-stay-connected-new-york-11
    I understand how much anger this person Glenn P. had for these "Stay Connected Verizon Wireless" stores that are seemingly genuine Verizon Wireless stores but just premium retailers unless you look at the signboard very very very carefully. In fact, I could realize the fact today since they pretended to be genuine from many aspects. Now after reading the posting and thinking, what happened becomes very clear to me. They are not genuine Verizon Wireless but pretend to be the one, and they put a disgusting term on their receipts: if any 2-yr upgrade or new activation is cancelled within 7 months of contract, there is a $500 equipment termination fee unless the device is returned to the store in perfect condition. What this term essentially forces is, if you terminate between 14 days and 7 months, you pay all the phone price and the early termination fee properly, but you also need to return the device to this disgusting "Stay Connected Verizon Wireless" retail store or pay $500 to the "Stay Connected Verizon Wireless" retail store.
    I would like to suggest a few things.
    0. Look at the store names and the receipts very carefully. There are stores that are seemingly Verizon Wireless but just retailers. And the receipt may say something absurd. I believe this term is a sort of duplicate penalty (thus not legitimate) that rips off more than the retail price of the phone.
    1. Do upgrade or activation from the genuine VERIZON WIRELESS. If you upgrade or activate a phone from these "STAY CONNECTED VERIZON WIRELESS" retailers and if you happen to cancel the contract between 14 days and 7 months, you have to lose your phone or pay additional $500 even if you paid off the already-huge $299.99+26.62+350+35 which is about the full retail price.
    2. Verizon Wireless, I believe the company, as an influential company in the US, should carefully control the dealer quality and impose reasonable T&C for the dealer. The genuine Verizon Wireless is reasonable in that sense: either take the device back or charge the early termination fee. However, this unethical retailer does not. They first pretend to be the genuine store in many ways, put an unreasonable (perhaps not legitimate) term with small letters on their receipts without explaining the huge difference, and try to take your PAID phone away if the contract is terminated between 14 days and 7 months. I believe a reasonable T&C has to be enforced by Verizon Wireless for this retailer, or they have to be punished if they resist.
    I may have to be ripped off $500 for not paying too much attention on the store name and on the receipt term which nobody will read by trust on Verizon Wireless, but no other people should suffer from the same pain.
    How do you think? Thanks for any input from people or Verizon Wireless representatives.
    Private info removed as required by the Terms of Service.
    Message was edited by: Admin Moderator

    Hello,
    Thanks for answering. My posting had been blocked for some time, so I thought Verizon simply did not like the posting. Now I discovered this posting was re-opened.
    To clarify, I have been using Verizon for 7 years, and I'm well aware of all the Verizon charges, fees, and T&C in the process of properly upgrading phones multiple times. The point is that, the retail store "STAY CONNECTED VERIZON WIRELESS" in NY has deceptive signboard and interior that are sufficient to enforce or confuse customers to believe the store is a genuine Verizon Wireless. And, they inserted unreasonable and unacceptable term on the receipt about the termination (very problematic between 14 days and 7 months). However, they did not notify at all about those (3rd party and termination). If I knew the store was 3rd party, I would have read T&C very closely. Actually, you can see that all the angry yelp reviews by Glenn P. also point out the deceptive signboard part. The person also thought the store was genuine Verizon Wireless until the collection department contacted for the astonishing $500. Later, basically they softly threaten to report for a negative record if you do not return the PAID phone or pay the extra $500.
    Apart from the deceptive signboard and interior, I want to simplify the example for the unreasonable T&C as follows. As a customer, I paid for the discounted phone price $299.99+tax, the upgrade fee $35, and the early termination fee $350. At that point, the genuine Verizon Wireless does not take the phone away and all the business is done since the early termination fee compensates the discount. When the weird retail store kicks in, they suddenly require the phone back or $500 equipment termination fee paid because the termination was between 14 days and 7 months from the contract. I don't think they truly have a legal right or basis to do that since it is a duplicate penalty which is also very excessive, but I just respected the one ugly sentence on the receipt about the unreasonable $500 equipment termination fee. Anyway, the full retail price is $749, and the total payment with this retail store became easily more than $1,200 or I have to return the PAID phone (~$700) to them. What an easy business from their sides! I believe Verizon Wireless, once you know about this unethical retail store, you should take a proper action. I would understand a bit more about special T&C if they provided special discounts as Best Buy or Walmart, but the discounted price was exactly same with Verizon Wireless. Is there any justification about the $500 equipment termination fee? Possibly you can have $100 or so to minimize the damage as a 3rd-party store, but not $500.
    When I contacted the collection department of stayconnectionwireless.com, the person tried to justify $500, but I just told one thing: I know the genuine Verizon Wireless does not charge the weird equipment termination fee once the early termination fee $350 is paid. The person became silent after my comments because I knew Verizon's T&C very well. However, I had to pay $500 to avoid all the potential legal issues. Normally the good way to deal with this should be to pay first and take wrong things back.
    My first expectation was that, Verizon Wireless would take a reasonable response on my posting. However, two postings on this Verizon forum were immediately blocked, so I had to file a complaint on FCC (Federal Communications Commision) about "Stay Connected Verizon Wireless". I don't know how much legal obligation they can impose, though.
    Now, since you re-opened my posting and replied, if your company situation allows, I hope Verizon Wireless can investigate this retail store's T&C and advise not to do that. They might be the only store that excessively charges such fees as authorized 3rd-party dealers. If they resist and if I'm one of the board member in Verizon Wireless, I would control the quality of authorized 3rd-party retail stores and take proper actions to retain Verizon's credibility. I don't know whether Verizon Wireless will do that.
    Please contact me if more information is needed. Thanks.

Maybe you are looking for

  • What are the business scenarios used in plastic industry

    Hi Experts, Could you guys please tell me what are the business scenarios (in sap sd) i should use while implementing in plastic industry (as if someone already worked on implementation project at plastic industry)..... As per my knowledge i would us

  • How to increase the datapacket size in R/3

    Hi All, I am using RSA3 to check the data for the datasource 0FI_AP_3. When I enter Data Records/Calls = 1000 and the Display extr. calls = 2, I am getting a total of 956 records, 587 in the first datapacket and 369 records in the second datapacket.

  • How work Tone Measuremen​ts instrument​?

    Hi. Could you say me how works Tone Measurement tool in LabView 8.5.1?  I need this information for my diploma thesis. It use FFT or Fourier transformation? Thank you!  Solved! Go to Solution.

  • Variable and Exit

    Hi all, I have this problem: I need to create a variable, so I can filter values in a query. This variable needs to find a value in an infocube. The value i'm looking for is the same for every record in the infocube, it is an ID for the data load. Th

  • Best Practices Pseudo-Time Clock Configuration

    Friends, I Find  for a manual of best practices for configuration PSEUDO_TIME CLOCK GET VPN.