Help with change log subscriber rights

Can someone help me give my change log subscriber object rights to see changelogs?
I am using OID 10.1.2.1.0 on RH Linux. I followed the directions for creating my change log subscriber in the OIM Integration guide under "Synchronization with Third-Party Metadirectory Solutions". I used the Oracle Ldap command-line tools from a windows box.
The cn=orcladmin user can see the changelog entries, but my subscriber object account get's "insufficient_rights" when it tries to see cn=changelog, although it seems to be able to browse the rest of the directory tree fine.
Here's a listing of my subscriber object:
C:\D\ldaptools_oracle>ldapsearch -h lynx -p 389 -s sub -D cn=orcladmin -w xxxxx -b "cn=Oracle Internet Directory" "(&(objectclass=*)(cn=miis_change_subscriber))"
cn=miis_change_subscriber,cn=Subscriber Profile,cn=ChangeLog Subscriber,cn=Oracle Internet Directory
orcllastappliedchangenumber=2600
orclsubscriberdisable=0
objectclass=orclChangeSubscriber
objectclass=top
cn=miis_change_subscriber
userpassword={SHA}8wNdwBiIGL4+QyKn06u...
authpassword;oid={SASL/MD5}ah1tJyQf8lp...
authpassword;oid={SASL/MD5-DN}Lt3/8l2R...
authpassword;oid={SASL/MD5-U}1XmqsqH9...
Here's my query for trying to see changelogs.
ldapsearch -h lynx -p 389 -D "cn=miis_change_subscriber,cn=Subscriber Profile,cn=ChangeLog Subscriber,cn=Oracle Internet Directory" -w xxxx -b "cn=changelog" -s one "(&(changenumber>=2600))" targetDN
ldap_search: Insufficient access
But the same query substituting the superuser gives me a list:
ldapsearch -h lynx -p 389 -D "cn=orcladmin" -w xxxxx -b "cn=changelog" -s one "(&(changenumber>=2600))" targetDN
Changenumber=2612, cn=changelog
targetdn=cn=instance1,cn=odisrv,cn=subregistrysubentry
Changenumber=2613, cn=changelog
targetdn=cn=instance1,cn=odisrv,cn=subregistrysubentry
Changenumber=2614, cn=changelog
targetdn=cn=instance1,cn=odisrv,cn=subregistrysubentry
etc...
Is there a particular group he should belong to?
Thanks!

Here I am answering my own question, after 10 days without a single response. Thanks, Oracle!
Through oidadmin (Internet Directory Manager) I added my change log subscriber account to the group: cn=odisgroup,cn=DIPadmins,cn=Directory Integration Platform,cn=Products,cn=OracleContext.
Don't know if this is the correct process or not, but this group has rights to see the changelogs. Now I can see 'em.
Thanks again!

Similar Messages

  • Need help with log4j logging tool (org.apache.log4j.*) to log into database

    Hi,
    I need help with log4j logging tool (org.apache.log4j.*) to log into database using JDBCAppender. Have look at my logger code and corresponding log4j.properties file stated below. I'm running this program using Eclipse IDE and it's giving me the following error (highlighted in red) at the end:
    log4j: Parsing for [root] with value=[debug, stdout, Roll, CRSDBAPPENDER].
    log4j: Level token is [debug].
    log4j: Category root set to DEBUG
    log4j: Parsing appender named "stdout".
    log4j: Parsing layout options for "stdout".
    log4j: Setting property [conversionPattern] to [%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "stdout".
    log4j: Parsed "stdout" options.
    log4j: Parsing appender named "Roll".
    log4j: Parsing layout options for "Roll".
    log4j: Setting property [conversionPattern] to [%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "Roll".
    log4j: Setting property [file] to [HelloWorld.log].
    log4j: Setting property [maxBackupIndex] to [10].
    log4j: Setting property [maxFileSize] to [20KB].
    log4j: setFile called: HelloWorld.log, true
    log4j: setFile ended
    log4j: Parsed "Roll" options.
    log4j: Parsing appender named "CRSDBAPPENDER".
    {color:#ff0000}
    Can't find class HelloWorld{color}
    import org.apache.log4j.*;
    public class HelloWorld {
    static Logger log = Logger.getLogger(HelloWorld.class.getName());
    public static void main(String[] args) {
    try{
    // Now, try a few logging methods
    MDC.put("myComputerName", "Ravinder");
    MDC.put("crsServerName", "ARNDEV01");
    log.debug("Start of main()");
    log.info("Just testing a log message with priority set to INFO");
    log.warn("Just testing a log message with priority set to WARN");
    log.error("Just testing a log message with priority set to ERROR");
    log.fatal("Just testing a log message with priority set to FATAL");
    catch(Exception e){
    e.printStackTrace();
    ------------------------- log4j.properties file ------------------------------
    #### Use three appenders - log to console, file and database
    log4j.rootCategory=debug, stdout, Roll, CRSDBAPPENDER
    log4j.debug=true
    # Print only messages of priority WARN or higher for your category
    # log4j.category.your.category.name=WARN
    # Specifically inherit the priority level
    # log4j.category.your.category.name=INHERITED
    #### stdout - First appender writes to console
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern=%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### Roll - Second appender writes to a file
    log4j.appender.Roll=org.apache.log4j.RollingFileAppender
    ##log4j.appender.Roll.File=${InstanceName}.log
    log4j.appender.Roll.File=HelloWorld.log
    log4j.appender.Roll.MaxFileSize=20KB
    log4j.appender.Roll.MaxBackupIndex=10
    log4j.appender.Roll.layout=org.apache.log4j.PatternLayout
    log4j.appender.Roll.layout.ConversionPattern=%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### CRSDBAPPENDER - third appender writes to the database
    log4j.appender.CRSDBAPPENDER=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.CRSDBAPPENDER.Driver=net.sourceforge.jtds.jdbc.Driver
    log4j.appender.CRSDBAPPENDER.URL=jdbc:jtds:sqlserver:/arncorp15:1433;DatabaseName=LOG
    log4j.appender.CRSDBAPPENDER.USER=sa
    log4j.appender.CRSDBAPPENDER.PASSWORD=p8ss3doff
    log4j.appender.CRSDBAPPENDER.layout=org.apache.log4j.PatternLayout
    log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ('%X{myComputerName}', '%X{crsServerName}', '%d{dd MMM yyyy HH:mm:ss,SSS}', '%p', '%t', '%F', '%L', '%m')
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG(COMPUTERNAME,CRSSERVERNAME,LOGTIME,LOGLEVEL,THREADNAME,FILENAME,LINENUMBER,LOGTEXT) select host_name(),'${CRSServerName}${InstanceName}','%d','%5p','%t','%F','%L','%m%n'
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ("%X{myComputerName}", "%X{crsServerName}", "%d{dd MMM yyyy HH:mm:ss,SSS}", "%p", "%t", "%F", "%L", "%m")
    ------------------------------- end of log4j.properties file ------------------------------
    Here is the directory structure of my program. My log4j.properties file and HelloWorld.class file are residing in folder HelloWorld\bin.
    HelloWorld\bin
    HelloWorld\lib
    HelloWorld\src
    Please note - The same program works fine for console and file appender when I comment the database appender part in my properties file.
    Thanks
    Ravinder

    try this :
    log4j.appender.PROJECT.Append=false

  • I need to need help with changing my app store to canada to us but i have 49cents balance can you remove it please

    I need to need help with changing my app store to canada to us but i have 49cents balance can you remove it please

    Contact iTunes Support - http://apple.com/emea/support/itunes/contact.html - and ask them to clear your balance.

  • I need help with changing my verizon vm to the system voicemail

    I need help with changing my verizon vm to the system voicemail

    Deleting the iTunes account is not the solution as you will very likely lose any and all purchases ever made with the account.
    If you cannot find the option on the site, contact iTunes support.

  • Can anyone help with this log? Thanks in advance

    Can you please help with this?
    I cannot make any sense out if it.
    Thank You
    Wed Jan 14 17:06:08 2009
    panic(cpu 1 caller 0x001A8CEC): Kernel trap at 0x00c8000e, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x96ff3776, CR3: 0x01461000, CR4: 0x00000660
    EAX: 0x07a3f000, EBX: 0x07a3fd44, ECX: 0x00001342, EDX: 0x00003384
    CR2: 0x96ff3776, EBP: 0x7ab8f918, ESI: 0x07a3f004, EDI: 0x0000001c
    EFL: 0x00010202, EIP: 0x00c8000e, CS: 0x00000008, DS: 0x077b0010
    Error code: 0x00000002
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x7ab8f308 : 0x12b0fa (0x459234 0x7ab8f33c 0x133243 0x0)
    0x7ab8f358 : 0x1a8cec (0x4627a0 0xc8000e 0xe 0x461f50)
    0x7ab8f438 : 0x19eed5 (0x7ab8f450 0x53654c 0x7ab8f918 0xc8000e)
    0x7ab8f448 : 0xc8000e (0xe 0x48 0x7ab80010 0xbe0010)
    0x7ab8f918 : 0xc84911 (0x79df804 0x7a3f004 0x0 0x0)
    0x7ab8f988 : 0xba8f79 (0x79df804 0x7a3f004 0x0 0x0)
    0x7ab8fb48 : 0xba005b (0x0 0x5340f0 0xd3000001 0x8c55a000)
    0x7ab8fb98 : 0xba156f (0x74db400 0x6f1c400 0x0 0x4)
    0x7ab8fbe8 : 0xba1673 (0x74db400 0x74ce100 0xb7e350 0x79b43c0)
    0x7ab8fc08 : 0xb83133 (0x74db400 0x1 0x0 0x0)
    0x7ab8fc68 : 0xb7c93a (0x74db400 0x5 0x5 0x7801a60)
    0x7ab8fc98 : 0x40fbf5 (0x74db400 0x7801a60 0x7801a60 0x0)
    0x7ab8fce8 : 0x43af53 (0x74db400 0x7801a60 0x7801a60 0x0)
    0x7ab8fd48 : 0x18d210 (0x74db400 0x7801a60 0x0 0x0)
    0x7ab8fdb8 : 0x12d17e (0x767d178 0x767d490 0x7ab8fdf8 0x11ee14)
    0x7ab8fdf8 : 0x126257 (0x767d100 0x6db6ebc 0x7722d20 0x0)
    Backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.NVDAResman(5.3.0)@0xb9e000->0xdddfff
    dependency: com.apple.iokit.IONDRVSupport(1.5.2)@0xb90000
    dependency: com.apple.iokit.IOPCIFamily(2.4.1)@0x5c1000
    dependency: com.apple.iokit.IOGraphicsFamily(1.5.2)@0xb74000
    com.apple.iokit.IOGraphicsFamily(1.5.2)@0xb74000->0xb8ffff
    dependency: com.apple.iokit.IOPCIFamily(2.4.1)@0x5c1000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    9F33
    Kernel version:
    Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    System model name: MacBookPro3,1 (Mac-F42388C8)

    Andrea Paesano wrote:
    I have updated the ram but this was over 2 years ago it was right after i purchased the mbp; I never had problem with this computer until last week. Funny enough is now working perfectly "knocking on wood"
    There are two problems with taking that approach to RAM:
    1) RAM can go bad over time for various reasons.
    2) Bad RAM is often only detected if it's something important.
    For example, if a pixel in a graphic changes you may not notice.
    If a jump address in a program changes, it will crash.
    If it's in the kernel, you'll get a panic.
    Worse yet, RAM failures often depend on the value of cells around them, so it's quite possible to get a memory location that only fails if the addresses before and after it contain a particular value.

  • Any BAPI or FM to use to update the Customer Address with change log?

    Hi, does anyone have used any BAPI or FM that will update the customer address (Central Address management fields) and the change will be logged in the change history of customer master? I have tried several FM that can update the fields but none of the change will show up in the change history of the customer master.
    So far, I have tried the following FM:
    ADDR_MAINTAIN_COMPLETE
    ADDR_UPDATE
    BDC is not acceptable due to high volume of data. However, the change log is also required.
    Please share any advice.
    Thank you,

    Hi Minami,
    for chenge address use FM : BAPI_BUPA_ADDRESS_CHANGE       (SAP BP, BAPI: Change Address)
    otherwise check with below FM ,for address related information
    BAPI_BUPA_ADDRESSES_GET              SAP BP, BAPI: Determine All Addresses
    BAPI_BUPA_ADDRESS_ADD                   SAP BP, BAPI: Add Address
    BAPI_BUPA_ADDRESS_CHANGE                 SAP BP, BAPI: Change Address
    BAPI_BUPA_ADDRESS_GETDETAIL             SAP BP, BAPI: Read Address
    BAPI_BUPA_ADDRESS_GET_NUMBERS    SAP BP, BAPI: Read Address Numbers
    BAPI_BUPA_ADDRESS_REMOVE                    SAP BP, BAPI: Delete Address
    Regards,
    Tutun

  • I need help with changing info on my songs!!

    Hi,
    I have some songs that i downloaded off the internet and i've done this before;
    heres the story:
    I had to rebuild my computer and then everthing got wiped off.
    i got itunes 9.0 and i downloaded songs off the internet.
    then i played them (they play fine) but the song names and the artist names are all wrong. before i rebuilt my computer, changing the info (right click/get info) was fine. i could change anything i wanted to. but now, everything is greyed out. why is that? i really want to change the info!
    Please help asap!! :O

    wait; i think i found out why
    i didnt save the file when i downloaded it
    i just opened it...gah stupid xD
    thanks for replying though!

  • Need help with changing my security questions

    I need to know how I can buy songs but I forgot my security questions so how do I change them?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • I need help with Changing my Security Questions, I have forgotten them.

    Its simple, I tried buying a Gym Buddy Application and I had to answer my security questions... Which I have forgotten I made this a while ago so I probably entered something stupid and fast to make I really regert it now. When i'm coming to this...

    Hello Adrian,
    The steps in the articles below will guide you in setting up your rescue email address and resetting your security questions:
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    If you continue to have issues, please contact our Account Security Team as outlined in this article for assistance with resetting the security questions:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Still need help with changing hostname on Solaris 10

    Hello.
    I have some difficulties with changing host name of my computer.
    It is DHCP Client.
    AS I understand there are the following steps that I have to do:
    1. Edit the /etc/default/dhcpagent file and change the line that reads the following:
    #REQUEST_HOSTNAME=no
    to
    REQUEST_HOSTNAME=no
    2. There are two empty /etc/hostname files: hostname and hostname6.
    Do I have just to put there hostname?
    3. /etc/hosts has what I need to change.
    4. I was unable to find /etc/nodename. Do I have to create it? What properties should contain this file?
    5. hostname <new hostname>
    In previous time when I tried to change host name with Management Console my system crashed, I changed: /etc/hosts, but it didn't work.
    Thank you.

    Hello.
    Using DHCP you may really have problems changing the hostname.
    The fact is: The DNS server may assign your machine a host name which has nothing to do with the host name you sent to the DHCP server. Depending on the server (typically DHCP and DNS server are the same machine) nothing will really work. (This is the case with my configuration where the servers are located on a DSL router.)
    I solved the problem the following way:
    * I created two host names (MyMachine and MyMachineNet) in the /etc/hosts file (Solaris 10 and newer: /etc/inet/ipnodes must be changed, too.)
    * "MyMachine" is 127.0.0.1 (localhost):
    127.0.0.1 localhost MyMachine
    192.168.178.100 MyMachineNet* I assigned the name "MyMachineNet" to the network interface in /etc/hostname.networkcard.
    * I use DHCP
    The computer name (in /etc/nodename) is "MyMachine". Some programs (e.g. Gnome !) establish a TCP/IP connection to "MyMachine" instead of "localhost" (I do not understand why). These programs are now satisfied because the host name "MyMachine" represents 127.0.0.1 (localhost).
    I know that there is a switch that tells Solaris to take the machine name from DHCP/DNS instead of /etc/nodename. Unfortunately I forgot where it is.
    Martin

  • Need help with error log

    Hello folks...
    I wish I knew what I was looking at here, hopefully someone can make sense of this for me?
    Yesterday I started up Flex Builder 3 and had an error.  All I could see was java this java that...so I reinstalled java, hoping that might do something.
    now I get a little different error than I saw, but I still see a lot of java references.
    Thanks for you help!
    ===========================================
    !ENTRY org.eclipse.core.resources 2 10035 2010-08-17 09:43:30.531
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.781
    !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (69).
    !STACK 0
    org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1018)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 74)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :111)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/EZServe/bin-release/com/dougmccune/.svn/entries' not found.
        at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
        at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
        at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
        at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
        at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
        at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1319)
        at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1949)
        at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1713)
        at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:363)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:9 99)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:993)
        ... 29 more
    Root exception:
    org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/EZServe/bin-release/com/dougmccune/.svn/entries' not found.
        at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
        at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
        at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
        at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
        at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
        at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1319)
        at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1949)
        at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1713)
        at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:363)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:9 99)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:993)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 74)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :111)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.796
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.project (34).
    !STACK 0
    org.osgi.framework.BundleException: The activator com.adobe.flexbuilder.project.internal.FlexProjectCore for bundle com.adobe.flexbuilder.project is invalid
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 70)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:136)
        ... 41 more
    Root exception:
    java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:136)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 70)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.843
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/asn/ASNBridge$ILicenseChangedListener)
        at org.eclipse.swt.SWT.error(SWT.java:3563)
        at org.eclipse.swt.SWT.error(SWT.java:3481)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/asn/ASNBridge$ILicenseChangedListener
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        ... 18 more
    !ENTRY org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/org.eclipse.datatools.connectivity.oda.template.ui_3.0.4.200706071.jar was not resolved.
    !SUBENTRY 2 org.eclipse.datatools.connectivity.oda.template.ui 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.pde.ui_[3.2.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.debug.e32_3.0.214193.jar was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.debug.e32 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,3.3.0).
    !ENTRY org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.debug.e32_3.0.214193.jar [15] was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.debug.e32 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,3.3.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/org.eclipse.datatools.connectivity.oda.template.ui_3.0.4.200706071.jar [89] was not resolved.
    !SUBENTRY 2 org.eclipse.datatools.connectivity.oda.template.ui 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.pde.ui_[3.2.0,4.0.0).

    Sorry...I'm completely new to Flex.
    What do you mean by changing the workspace?
    When I try to start Flex Builder 3, I can go no further as the error message comes up.  Can I change the workspace outside of the application...if so, how?
    Thanks much!

  • HELP WITH ONLINE LOG IN

    Hi  I have recently split with my husband who was the named person on my orange mobile account. We have gone through the process of changing the account and direct debit details over to my name but i am now having trouble logging into my account online and on the app because when i log in it is still brings up my husbands details. I have tried re registering with my new account number but because the mobile number is already registered online this isnt working.  I hope I've explained things properly and i hope you can help. Thanks for your time.  

    This should be simple to fix. Sometimes the link between your Orange account and your online account becomes broken or takes a while to update itself.
    In order to get this resolved, you'll need to speak to Orange customer services and ask them to delete your online account profile.
    Once they've done this, you'll be able to register with your mobile number and this should now display your details.

  • HT1918 i need help with changing my billing information

    hi iv followed the instruction on how to change my billing details and a message on my iphone 5c saying, your payment method was declined. please enter another payment method, i dont understand whats going on im not sure if i owe the apple app store money but i carnt see how i could when iv always had enough money in my account to pay for the product iv purchesed, this is causeing me alot of problems as i can not download important app that i need to proform my job.
    please help
    ashley

    What are you trying to use as your payment method ? If it's a debit card then I don't think that they are still accepted as a valid payment method in all countries - from this page :
    You may be able to use other payment types in your country, like debit and Maestro cards.
    which implies that they are not accepted in all countries, and there have been a number of posts about them being declined.
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management

  • Help with changing to Sky TV

    Hi,
    I have just cancelled my BT Vision service (OH does not like it) but still have BT Broadband and Calls which we are not changing.  We have no phone line downstairs but a phone line upstairs and are using the BT powerline adapters.  The powerline adapter downstairs is connected to the BT Vision box, the one upstairs is connected to the Home Hub which in turn is connected to the Internet part of the ADSL filter.  Home hub upstairs is also connected via Ethernet to desktop PC.  Downstairs we use wireless for the laptop. 
    My question is, we are thinking about getting a SKY TV package.  They say that we need a telephone line to do this for the box to be connected to.  We have spoken to a local SKY fitter who said we could use the powerline adapters to get around this problem, he didn't say how, but I assume by using the same set up as we have now. 
    Query: would using the powerline adapters which go from the socket upstairs via Ethernet to the home hub and then there is a cable from home hub to ADSL filter work?  I am bothered that there will be something that will cause a problem with it. 
    Also having read bits from the forum it seems to suggest that you can connect to SKY using a wireless setup (as we already do with the laptop) does anyone know if this is true?  We are thinking of getting a SKY+HD box. 
    Please anyone who answers speak in lay terms, above is about the limit of my technical knowledge. 
    Thanks to anyone who can help.   
    Solved!
    Go to Solution.

    wort wrote:
    I am actually asking if you can run SKY TV through BT powerline adapters and through the BT Home hub, which seems to be a question for BT not SKY as they will say as it is BT equipment contact BT.
    If anyone with any knowledge of running SKY and BT in tandom (I am sure there must be some) have any ideas it would be appreciated. 
    You need to ask this question on a Sky forum. The fact you are using BT eqpt means didilly squat. As Guy said, the installation isn't your problem, its the installers.
    But I can tell you one thing, the box does not plug into an internet hub/router. Nor have you been told it needs to be.
    Just ask your questions on a Sky forum and you'll find all the answers you need.
    Rank - Mostly Harmless.

  • Need help with changing letter cases : (

    Hey everyone, I have an assignment that needs to
    1) allow the user to enter a sentence
    2) count the number of upper case, lower case, spaces, and other characters in the sentence,
    3) convert each first letter of a word into upper case if not already in upper case,
    4) convert non first letters to lower case if not already in lower case
    So, I have been successfull counting all characters, but I can't seem to find a way to convert the letter cases.
    I understand I have to distinguish first letters and non first letters, and I did this by using a boolean.
    Also, I tried to use a for loop and convert the letter cases accordingly by += 32 and -= 32.
    This is what I have for now :
    import javax.swing.JOptionPane;
    public class Asg3 {
         public static void main(String [] args)     {
              String sentence = JOptionPane.showInputDialog("Enter a Sentence!");
              int length = sentence.length();
              int counter = 0;
              int uppercase = 0;
              int lowercase = 0;
              int space = 0;          
              int other = 0;
              int total = 0;
              boolean firstletter = true;
              char thischarac;
              for (counter = 0; counter < sentence.length(); counter++)
                        thischarac = sentence.charAt(counter);
                        if ( thischarac >= 65 && thischarac <= 90 ) {
                             ++ uppercase;
                   else if ( thischarac >= 97 && thischarac <= 122 ) {
                             ++ lowercase;
                   else if ( thischarac == 32) {
                             ++ space;
                   else {
                             ++ other;
                             ++ total;
              for (counter = 0; counter < sentence.length(); counter++) {
                   thischarac = sentence.charAt(counter);
                   if (firstletter == true) {
                             if (thischarac >= 97 && thischarac <= 122) {
                                  thischarac -= 32;
                   else
                        if (firstletter == false)
                             if (thischarac >= 65 && thischarac <= 90) {
                                  thischarac += 32;
    System.out.println("You have entered: " + sentence);
              System.out.println("Upper case Letters: " + uppercase);
              System.out.println("Lower case Letters: " + lowercase);
              System.out.println("The number of blank spaces: " + space);
              System.out.println("The number of other characters: " + other);
              System.out.println("Grand total: " + total);
              System.exit( 0 );               
    I am stuck on this for hours now, and all googling, asking friends, going over lectures have failed, and this is my last resort.
    I understand it is frustrating when students come here for homework, but I would really appreciate any hints or help.
    Thank you!

    Oh, sorry I'm new and didn't realize the code button. Anyways, here it is
    import javax.swing.JOptionPane;
    public class Asg3 {
         public static void main(String [] args)     {
              String sentence = JOptionPane.showInputDialog("Enter a Sentence!");
              int length = sentence.length();
              int counter = 0;
              int uppercase = 0;
              int lowercase = 0;
              int space = 0;          
              int other = 0;
              int total = 0;
              boolean firstletter = true;
              char thischarac;
              for (counter = 0; counter < sentence.length(); counter++)
                        thischarac = sentence.charAt(counter);
                        if ( thischarac >= 65 && thischarac <= 90 ) {
                             ++ uppercase;
                   else if ( thischarac >= 97 && thischarac <= 122 ) {
                             ++ lowercase;
                   else if ( thischarac == 32) {
                             ++ space;
                   else {
                             ++ other;
                             ++ total;
              for (counter = 0; counter < sentence.length(); counter++) {
                   thischarac = sentence.charAt(counter);
                   if (firstletter == true) {
                             if (thischarac >= 97 && thischarac <= 122) {
                                  thischarac -= 32;
                   else
                        if (firstletter == false)
                             if (thischarac >= 65 && thischarac <= 90) {
                                  thischarac += 32;
                                    System.out.println("You have entered: " + sentence);
              System.out.println("Upper case Letters: " + uppercase);
              System.out.println("Lower case Letters: " + lowercase);
              System.out.println("The number of blank spaces: " + space);
              System.out.println("The number of other characters: " + other);
              System.out.println("Grand total: " + total);
              System.exit( 0 );               
    }The problem I'm having is converting letters to their right cases. I need to change the first letters of a word to upper cases, and non first letters to lower cases. For example, if the sentence the user entered is
    "tHIS AssigNMent IS harD!" , I would have to convert it to : "This Assignment Is Hard!"
    What I tried to do is use a for loop and a boolean.
    If firstletter == true, and if the character was lower case, I would subtract 32 from that character.
    If firstletter == false, and if the character was upper case, I would add 32.
    The problem here is that, what do I have to do to make it print the converted sentence? I have tried System.out.println( "The new sentence is :" + sentence); which gives me only the original sentence,
    and System.out.println("The new sentence is :" + thiscarac); which gives me all capital letters.
    So there are two main problems:
    1) Is my forloop and boolean correct in converting the cases? Am I using the right method?
    2) If so, how do I get the system to printout the new converted sentence?
    Edited by: ShaRpy on Oct 28, 2008 4:51 PM

Maybe you are looking for

  • How to use Callout in B2B on the basis of STATUS

    Hi, If there occurs a validation error in the B2B EDI contents, what mechanism can be used to update that status back to the source system? We are using B2B Adapter in the BPEL Process to pass the XML file and B2B generates an EDI file for us. Now, i

  • How to change XML Header in  file

    Hi, How to have the following XML output header XML with simple transformation: <?xml version="1.0"> encording="ISO-8859-1"?> When I used the following transformation template: <tt:transform xmlns:tt="http://www.sap.com/transformation-templates"> I g

  • Grace period for update to Logic pro 7.2

    Hi all, I just got my Logic Pro 7.1 today, version which I ordered a few days back. Does anybody know if I have to pay for the update to Logic Pro 7.2 or if there's a grace period? It's very annoying if I have to pay for an update. Thanks for any inf

  • Sync Help! Competing Libraries!

    I no longer have the original computer I began syncing my iPhone and iPad on, and have moved to my girlfriend's laptop. She has a full library; where I can log her out of iTunes, but her library stays. How do I sync to get updates and sync my iPad wi

  • Running exe files in labview (or alternatives)

    I am currently trying to make LabVIEW communicate with a DT3155 frame grabber. It reads exe files programmed in c. I initially wanted to call the dll libraries of the frame grabber and rewrite the code into sub-VI's, but then realized it would be muc