Extended Controller not working

Hi
I have extended the controller and tried to call a pl/sql package and tried to insert data into a custom table. I have attached the controller through personalization at site level. and moved the .class file to $JAVA_TOP. The page is not showing any error. I added a field on a page and try to save the data to a custom field.
When i try to save the page it is showing me a message that Successfully saved!. but data is not getting populated in Custom table.
CO code:
package oracle.apps.ar.creditmgt.application.webui;
import java.sql.Connection;
import java.sql.Types;
import oracle.apps.ar.creditmgt.application.webui.OCMAddFinDataCO;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.OAViewObject;
import oracle.apps.fnd.framework.webui.beans.layout.OAQueryBean;
import oracle.jbo.Row;
import oracle.jbo.domain.Number;
import oracle.jdbc.driver.OracleCallableStatement;
import oracle.sql.CHAR;
public class MANOCMAddFinDataCO extends OCMAddFinDataCO {
public MANOCMAddFinDataCO() {
public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
super.processRequest(oapagecontext, oawebbean);
OAViewObject oaviewobject3 = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("CaseFoldersVO");
if(oaviewobject3 != null)
Row row5 = oaviewobject3.first();
if(row5 != null)
Number pCaseFolderId = (Number)row5.getAttribute("CaseFolderId");
oapagecontext.putTransactionValue("CasefolderID", pCaseFolderId);
OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("creditAppFinancialDataVO");
if(oaviewobject != null)
Row row1 = oaviewobject.first();
if(row1 != null) {
Number pFinDataId = (Number)row1.getAttribute("FinancialDataId");
oapagecontext.putTransactionValue("FinDataID", pFinDataId);
public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
super.processFormData(oapagecontext, oawebbean);
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("OCMBtnLayOutRN");
// String apply = queryBean.getGoButtonName();
if (pageContext.getParameter("Apply") != null)
Integer pcaseFolderId = (Integer) pageContext.getTransactionValue("CasefolderID");
Integer pfinDataId = (Integer) pageContext.getTransactionValue("FinDataID");
String pSubDebt = pageContext.getParameter("SubordinatedDebt");
Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
try
OracleCallableStatement cs = (OracleCallableStatement)conn.prepareCall("begin OCM_FIN_DATA_PKG.Insert_Fin_Data(:1, :2, :3,:4); end;");
cs.setInt(1, pfinDataId);
cs.setInt(2, pcaseFolderId);
cs.setString(3, pSubDebt);
cs.registerOutParameter(4,Types.CHAR);
cs.execute();
CHAR outP = cs.getCHAR(4);
cs.close();
if( outP.equals('S'))
throw new OAException("Success");
else{
throw new OAException("Failed to Insert");
catch (Exception exception)
throw new OAException("Error in Connection");
Package:
CREATE OR REPLACE
PACKAGE BODY OCM_FIN_DATA_PKG
AS
PROCEDURE Insert_Fin_Data
p_finacial_id NUMBER,
p_casefolder_id NUMBER,
p_SubDebt NUMBER,
x_status OUT VARCHAR2)
IS
BEGIN
FND_FILE.PUT_LINE ( FND_FILE.LOG,'Before Insert: '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt ) ;
INSERT
INTO MAN_OCM_FIN_DATA
Financial_data_id,
Casefolder_Id,
Subordinated_Debt
VALUES
p_finacial_id,
p_casefolder_id,
p_SubDebt
commit;
x_status := 'S' ;
FND_FILE.PUT_LINE
FND_FILE.LOG,'Inserted Successfully '
EXCEPTION
WHEN NO_DATA_FOUND THEN
x_status := 'E' ;
NULL;
FND_FILE.PUT_LINE
FND_FILE.LOG,'No data for p_finacial_id = '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt
WHEN OTHERS THEN
x_status := 'E' ;
FND_FILE.PUT_LINE
FND_FILE.LOG,'Error related to p_SubDebt - '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt||'ERR'||SQLERRM
END Insert_Fin_Data;
END MAN_OCM_FIN_DATA_PKG;
show errors;
Please tell me if there is any error in what i did. Please tell me why the data is not being populated in custom table!.
I tried to run an anonymous block and it was successful!.
DECLARE
x_sts VARCHAR2(1);
a NUMBER := 11111;
b NUMBER := 22222;
c NUMBER := 33333;
BEGIN
MAN_OCM_FIN_DATA_PKG.insert_fin_data(p_finacial_id => a, p_casefolder_id => b , p_SubDebt => c, x_status => x_sts );
dbms_output.put_line('Status:'||x_sts);
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line(SQLERRM);
END;.
Please advice on how to go ahead. I am not able to debug as i didnt download the seeded pages into my jdevloper.
Please help on this,
Thanks,
Prakash

Prakash
As you said you are able to see the log for processRequest that means your extended controller is being called.That's good.
I am not able to see the log for the processFormRequest. The data is not being populated in the db tableHave you written some logs there if yes and still you are not able to see them.Do one them move called to super after your code and then check.
Means your extended controller pfr method would be something like this
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("OCMBtnLayOutRN");
// String apply = queryBean.getGoButtonName();
if (pageContext.getParameter("Apply") != null)
Integer pcaseFolderId = (Integer) pageContext.getTransactionValue("CasefolderID");
Integer pfinDataId = (Integer) pageContext.getTransactionValue("FinDataID");
String pSubDebt = pageContext.getParameter("SubordinatedDebt");
Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
try
OracleCallableStatement cs = (OracleCallableStatement)conn.prepareCall("begin OCM_FIN_DATA_PKG.Insert_Fin_Data(:1, :2, :3,:4); end;");
cs.setInt(1, pfinDataId);
cs.setInt(2, pcaseFolderId);
cs.setString(3, pSubDebt);
cs.registerOutParameter(4,Types.CHAR);
cs.execute();
CHAR outP = cs.getCHAR(4);
cs.close();
if( outP.equals('S'))
throw new OAException("Success");
else{
throw new OAException("Failed to Insert");
catch (Exception exception)
throw new OAException("Error in Connection");
super.processFormRequest(pageContext, webBean);
}Thanks
AJ

Similar Messages

  • Content aware move and extend tool not working in PSE12

    Photoshop Elements 12 content aware move and extend tool not working with Yosemite upgrade.

    Have you deleted the preferences and the saved application states?
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

  • PCI Simple Communications Controller not working

    PCI Simple Communications Controller not working on hp pavilliong6-1003tx

    Hi
    Download, save & install --
    Windows 7:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-94322-2&cc=in&dlc=en&lc=en&...
    Restart system after installation.
    Regards
    Visruth
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

  • Qosmio F20-136 multimedia video controller not working

    In control panel hardware- multi media video controller has the yellow question mark. Also in MCE i get a message saying TV tuner hardware or drivers not working.
    I have reinstalled from the recovery disks and installed all updates to MCE 2005 including net.1.1 sp1 and rollup. In control panel hardware there is no entry for TV tuner.
    In tools the tv tuner driver is shown as installed.
    Any advice would be welcome.\ This is a new machine just purchased so it may be a hardware problem

    Hi
    As far as I know you will not find any tuner entries in the control panel.
    In the control panel you can find the graphic card option like nView desktop manager of nVidia Geforce.
    The TV tuner driver is important to receive the signals in MCE
    However, if the yellow exclamation mark appears in the device manager so I assume the driver fails or is wrong. You should try updating it. Please note that on the driver page you will find driver for WinXP and for WinXP MCE.

  • Just installed new Time Capsule now my airport express range extender will not work any suggestions

    Just replaced my Time capsule that died with a new one now my airport express range extender won't work.  Any sugesstions?

    Thank you William, I reconfigured the Airport Express and it works perfectly.  Sorry I did not get back to you sooner but I came down with a bad cold.
    Thank You, and Merry Christmas and a Happy New Year.
    raiderron

  • Extended Notification not working for Dialog Task with agent assignment

    Hi Friends,
    I have an issue where I have a user decision step and a sub workflow contains a dialog task with agent assignment.
    Extended notification is configured properly and is working properly for user decision step but its not working for the dialog task created as an activity.
    Batch jobs are configured to run report SWN_SELSEN.
    I was checking SDN and found this discussion handy :
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4f/3bed495cc018c8e10000000a42189e/content.htm
    One thing that wonders me is that notifications show up in SOST 4-5 seconds before the user decision step starts execution.
    See screenshot from SOST and WF log.
    SOST log :
    2 questions here: Why is notification not being sent for Dialog task?
                              Why is user decision notification being sent that early even before the User decision task starts execution?
    Please provide your valuable inputs.
    Regards,
    Sandip

    An activity step with agents is supported by the extended notifications if it is a decision task or not, I have used it many times and it works well just no approval/rejection links if it's not a decision task.
    From your screenshot you can see that a mail has been created and is found in SOST, usually this cases are problems with the mail server or connection to it, check the mail settings in the SMTP node in transaction SCOT, also check with mail server team if there is a block to/from the SAP server.

  • EJB - JPA Controller Not Work in EJB

    In the beginning, I created a EAR application by following the tutorial at http://wiki.netbeans.org/DevelopJavaEE6App/
    After the application was completed successfully, as I wanted the Session Bean focusing business logic more, I utilized NetBeans wizard to create JPA Controller from Entities and moved all data manipulation methods from the Session Bean to the JPA Controller. As a result, it did not work.
    CustomerJpaController:
    package com.customerapp.jpa;
    import com.customerapp.entity.Customer;
    import com.customerapp.jpa.exceptions.NonexistentEntityException;
    import com.customerapp.jpa.exceptions.PreexistingEntityException;
    import java.util.List;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import javax.persistence.Query;
    import javax.persistence.EntityNotFoundException;
    import javax.persistence.criteria.CriteriaQuery;
    import javax.persistence.criteria.Root;
    import com.customerapp.entity.DiscountCode;
    public class CustomerJpaController {
        public CustomerJpaController() {
            emf = Persistence.createEntityManagerFactory("CustomerApp-ejbPU");
        private EntityManagerFactory emf = null;
        public EntityManager getEntityManager() {
            return emf.createEntityManager();
        public void create(Customer customer) throws PreexistingEntityException, Exception {
            EntityManager em = null;
            try {
                em = getEntityManager();
                em.getTransaction().begin();
                DiscountCode discountCode = customer.getDiscountCode();
                if (discountCode != null) {
                    discountCode = em.getReference(discountCode.getClass(), discountCode.getDiscountCode());
                    customer.setDiscountCode(discountCode);
                em.persist(customer);
                if (discountCode != null) {
                    discountCode.getCustomerList().add(customer);
                    discountCode = em.merge(discountCode);
                em.getTransaction().commit();
            } catch (Exception ex) {
                if (findCustomer(customer.getCustomerId()) != null) {
                    throw new PreexistingEntityException("Customer " + customer + " already exists.", ex);
                throw ex;
            } finally {
                if (em != null) {
                    em.close();
        public void edit(Customer customer) throws NonexistentEntityException, Exception {
            EntityManager em = null;
            try {
                em = getEntityManager();
                em.getTransaction().begin();
                Customer persistentCustomer = em.find(Customer.class, customer.getCustomerId());
                DiscountCode discountCodeOld = persistentCustomer.getDiscountCode();
                DiscountCode discountCodeNew = customer.getDiscountCode();
                if (discountCodeNew != null) {
                    discountCodeNew = em.getReference(discountCodeNew.getClass(), discountCodeNew.getDiscountCode());
                    customer.setDiscountCode(discountCodeNew);
                customer = em.merge(customer);
                if (discountCodeOld != null && !discountCodeOld.equals(discountCodeNew)) {
                    discountCodeOld.getCustomerList().remove(customer);
                    discountCodeOld = em.merge(discountCodeOld);
                if (discountCodeNew != null && !discountCodeNew.equals(discountCodeOld)) {
                    discountCodeNew.getCustomerList().add(customer);
                    discountCodeNew = em.merge(discountCodeNew);
                em.getTransaction().commit();
            } catch (Exception ex) {
                String msg = ex.getLocalizedMessage();
                if (msg == null || msg.length() == 0) {
                    Integer id = customer.getCustomerId();
                    if (findCustomer(id) == null) {
                        throw new NonexistentEntityException("The customer with id " + id + " no longer exists.");
                throw ex;
            } finally {
                if (em != null) {
                    em.close();
        public void destroy(Integer id) throws NonexistentEntityException {
            EntityManager em = null;
            try {
                em = getEntityManager();
                em.getTransaction().begin();
                Customer customer;
                try {
                    customer = em.getReference(Customer.class, id);
                    customer.getCustomerId();
                } catch (EntityNotFoundException enfe) {
                    throw new NonexistentEntityException("The customer with id " + id + " no longer exists.", enfe);
                DiscountCode discountCode = customer.getDiscountCode();
                if (discountCode != null) {
                    discountCode.getCustomerList().remove(customer);
                    discountCode = em.merge(discountCode);
                em.remove(customer);
                em.getTransaction().commit();
            } finally {
                if (em != null) {
                    em.close();
        public List<Customer> findCustomerEntities() {
            return findCustomerEntities(true, -1, -1);
        public List<Customer> findCustomerEntities(int maxResults, int firstResult) {
            return findCustomerEntities(false, maxResults, firstResult);
        private List<Customer> findCustomerEntities(boolean all, int maxResults, int firstResult) {
            EntityManager em = getEntityManager();
            try {
                CriteriaQuery cq = em.getCriteriaBuilder().createQuery();
                cq.select(cq.from(Customer.class));
                Query q = em.createQuery(cq);
                if (!all) {
                    q.setMaxResults(maxResults);
                    q.setFirstResult(firstResult);
                return q.getResultList();
            } finally {
                em.close();
        public Customer findCustomer(Integer id) {
            EntityManager em = getEntityManager();
            try {
                return em.find(Customer.class, id);
            } finally {
                em.close();
        public int getCustomerCount() {
            EntityManager em = getEntityManager();
            try {
                CriteriaQuery cq = em.getCriteriaBuilder().createQuery();
                Root<Customer> rt = cq.from(Customer.class);
                cq.select(em.getCriteriaBuilder().count(rt));
                Query q = em.createQuery(cq);
                return ((Long) q.getSingleResult()).intValue();
            } finally {
                em.close();
    }How can I integrate my EJB with my JPA controller? Please help

    CustomerSessionBean:
    package com.customerapp.ejb;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.annotation.Resource;
    import javax.ejb.Stateless;
    import javax.ejb.LocalBean;
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    import javax.jms.Connection;
    import javax.jms.ConnectionFactory;
    import javax.jms.JMSException;
    import javax.jms.Message;
    import javax.jms.MessageProducer;
    import javax.jms.Queue;
    import javax.jms.Session;
    import javax.jms.TextMessage;
    import java.util.List;
    import com.customerapp.entity.Customer;
    import com.customerapp.entity.DiscountCode;
    import com.customerapp.jpa.CustomerJpaController;
    import com.customerapp.jpa.DiscountCodeJpaController;
    @Stateless
    @LocalBean
    public class CustomerSessionBean {
        @Resource(name = "jms/NotificationQueue")
        private Queue notificationQueue;
        @Resource(name = "jms/NotificationQueueFactory")
        private ConnectionFactory notificationQueueFactory;
        CustomerJpaController customerJpa;
        DiscountCodeJpaController discountCodeJpa;
        @PostConstruct
        public void initJpa(){
            customerJpa = new CustomerJpaController();
            discountCodeJpa = new DiscountCodeJpaController();
        @PreDestroy
        public void removeJpa() {
            customerJpa = null;
            discountCodeJpa = null;
        public void create(Customer customer) {
            try {
                customerJpa.create(customer);
            } catch (Exception ex) {
                Logger.getLogger(CustomerSessionBean.class.getName()).log(Level.SEVERE, null, ex);
        public List<Customer> retrieve() {       
            return customerJpa.findCustomerEntities();
        public Customer update(Customer customer) {
            Customer updatedCustomer;
            try {
                Integer customerId = customer.getCustomerId();
                customerJpa.edit(customer);
                updatedCustomer = customerJpa.findCustomer(customerId);
                sendJMSMessageToNotificationQueue(updatedCustomer);
                System.out.println("Customer updated in CustomerSessionBean!");
                return updatedCustomer;
            } catch (JMSException ex) {
                Logger.getLogger(CustomerSessionBean.class.getName()).log(Level.SEVERE, null, ex);
            } catch (Exception ex) {
                Logger.getLogger(CustomerSessionBean.class.getName()).log(Level.SEVERE, null, ex);
            return customer;
        public List<DiscountCode> getDiscountCodes() {
            return discountCodeJpa.findDiscountCodeEntities();
        private Message createJMSMessageForjmsNotificationQueue(Session session, Object messageData) throws JMSException {
            TextMessage tm = session.createTextMessage();
            tm.setText(messageData.toString());
            return tm;
        private void sendJMSMessageToNotificationQueue(Object messageData) throws JMSException {
            Connection connection = null;
            Session session = null;
            try {
                connection = notificationQueueFactory.createConnection();
                session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
                MessageProducer messageProducer = session.createProducer(notificationQueue);
                messageProducer.send(createJMSMessageForjmsNotificationQueue(session, messageData));
            } finally {
                if (session != null) {
                    try {
                        session.close();
                    } catch (JMSException e) {
                        Logger.getLogger(this.getClass().getName()).log(Level.WARNING, "Cannot close session", e);
                if (connection != null) {
                    connection.close();
    }ERROR:
    Caused by: java.lang.IllegalArgumentException: The type [null] is not the expected [EntityType] for the key class [class com.customerapp.entity.Customer].
            at org.eclipse.persistence.internal.jpa.metamodel.MetamodelImpl.entity(MetamodelImpl.java:152)
            at org.eclipse.persistence.internal.jpa.querydef.AbstractQueryImpl.from(AbstractQueryImpl.java:97)
            at com.customerapp.jpa.CustomerJpaController.findCustomerEntities(CustomerJpaController.java:140)
            at com.customerapp.jpa.CustomerJpaController.findCustomerEntities(CustomerJpaController.java:129)
            at com.customerapp.ejb.CustomerSessionBean.retrieve(CustomerSessionBean.java:64)

  • New Imac i5 (2011) CME UF6 Midi Controller not working!

    I have a new 2011 iMac i5 2.7GHz Quad-Core.And my CME UF6 Midi Controller is not working . It works fine with my older mac book pro 1.83ghz intel core duo. I have installed the latest driver from CME which is for the intel macs. It shows up in the audio midi setup just fine. But when I click on "test setup" it will only play one note and stop. I will then have to rescan midi for it to play one note again,and again it stops. Same goes for when I use it in a Logic Pro 9 with all the newest updates applied it will play a few notes and stop working. Any help would be great I know it may be some time before I get any help because the this iMac just came out. By the way the imac is all up to date everything is up to date. And yes I have tried every single usb port on the iMac.

    I have a new 2011 iMac i5 2.7GHz Quad-Core.And my CME UF6 Midi Controller is not working . It works fine with my older mac book pro 1.83ghz intel core duo. I have installed the latest driver from CME which is for the intel macs. It shows up in the audio midi setup just fine. But when I click on "test setup" it will only play one note and stop. I will then have to rescan midi for it to play one note again,and again it stops. Same goes for when I use it in a Logic Pro 9 with all the newest updates applied it will play a few notes and stop working. Any help would be great I know it may be some time before I get any help because the this iMac just came out. By the way the imac is all up to date everything is up to date. And yes I have tried every single usb port on the iMac.

  • Intel(R) ESB2 SATA RAID Controller not working out of the box

    Dear all,
    I'm using, for my tests, an old server with a supermicro X7DBN Server motherboard.
    This motherboard comes with an embedded Intel(R) ESB2 SATA RAID Controller.
    When I try a native installation from the technical preview DVD it sees the RAID1 volume that has been created (2 disk mirror) but when I select it to proceed with the installation there is an unknown error stating that it's impossible to write to this disk.
    The same installation works perfectly with 2012R2 and the out of the box driver provided bin the install media.
    An update from the previously installed 2012R2 to the Windows Server Technical Preview also works without problem.
    It would make sens for MS to revert to the driver version embedded in 2012R2 for Intel(R) ESB2 SATA RAID Controller which is:
    Name : Intel(R) ESB2 SATA RAID Controller
    Date : 10.08.2010
    Version : 8.6.2.1025
    inf section : iaStor_Inst_RAID
    Device ID : PCI\VEN_8086&DEV_2682&CC_0104

    Hi,
    Thank you for the information. As you said from the behavior it seems that the build-in drivers of Windows Server Technical Preview will not work with the specific motherboard hence the RAID1 cannot work well. 
    I'll log the issue down. 
    If you have any feedback on our support, please send to [email protected]

  • K8N Neo2 + NVRAID + Promise Raid Controller = not working right

    I'm trying to get my Promise Raid card working with nvraid enabled and I've finally given up. It works fine with NVRAID disabled though. I have 2xSata on Raid 0 and 2xIDE on raid 0+1. i also have two other IDE's on non-raid and two atapi cdrom drives. In order for me to use all of my storage devices, i need the promise controller to boot. The Prommise RAID controller's BIOS will not boot with nvraid enabled. WindowsXP detects the drives, but if i try to mount them via PAM (Promise Arry Management), it says one of the drives is corrupt/not working. but if i have both the ide raid hd's on the nvraid w/ sata raid, then it works fine. I just won't be able to use my cdrom drives. if anyone has a fix for this, please let me know. and sorry for the long descriptions. thanks.

    Why don't you go into BIOS and alter the IRQ manually for that PCI card, because probably that card is using the same IRQ as the nVidia one.
    Be well....

  • Apple tv patch 6.1.1 extended desktop not working

    My apple tv just upgraded to patch 6.1.1(6698.99.19)  from 6.1(6698.99.19)
    I have an Ipad Mini2 which I normally use to view movies on my tv.
    I will select the apple tv, (with air play) and play the movie using Moliplayer on the Ipad mini2.
    I was able to play from a mac pro I have in my office if I wanted to.
    This used to work great as the apple remote controlled the movie and you could set the ipad mini2 down on the desktop.
    After the patch, the above does not work. What happens, is the movie is not played.. however an audio icon pops up on the apple-tv
    and you can hear the movie audio. 
    So after this patch, you can only view the movie with mirrored desktop selected after this latest update.
    Both the apple mini2 and the mac pro produce the same result.
    Additional steps..
    I have taken the apple tv and used Itunes to re-install the software with a USB cable. Unfortunately .the same result.
    I assume I have a bug I am reporting that can be logged.
    Additionally. is it possible to put back the older version of the software so the apple TV will work as before?
    Thanks

    I have the exact same problem aswell. Did the update from 6.1 to 6.1.1 on my Apple TV 3rd gen. When using my iPhone 5 showing pictures och videos from my camera roll it works just fine over Airplay. So the problem is not the transmission. When playing a video from my Synology NAS using VLC for iOS nothing happens on my Apple TV like it did before the update!  Annoying
    Thanks

  • Router.attach(String, Class ? extends ServerResource ) not working properly

    I am having getting router.attach() to work properly
    Server server = new Server(Protocol.HTTP, 8182, new TestServerApplication());
    server.start()
    Here's the code that's in the client
    ClientResource clientResource = new ClientResource(
    "http://localhost:8182/contacts/123");
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class);
    Exception in thread "main" Not Found (404) - Not Found
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class, Router.MODE_BEST_MATCH);
    Exception in thread "main" Not Found (404) - Not Found
    * using attachDefault results in the call being handled properly
    // success!
    router.attachDefault(ContactServerResource.class);
    I also tried something different rather than using a Server.
    Component component = new Component();
    // Add a new HTTP server listening on port 8182.
    component.getServers().add(Protocol.HTTP, 8182);
    // Attach the sample application.
    component.getDefaultHost().attach("/contacts/123",
    new TestServerApplication());
    component.start();
    In this case router.attach("/contacts/123", ContactServerResource.class) is still called and it still fails to work. You have to attachDefault() to get it to work
    I can't think of anything else to try. Anybody have any ideas? thank you
    java

    Try running your query directly into the database and make sure it actually returns a row. This may get you started with the debugging process. Are you doing any stacktraces or System.out.println(theException); in your catch blocks? This may also help if there is an excpetion. You may need to consult your server logs (unless you have some sort of console running) in order to see the results of any prints.

  • Photoshop CS6 extended do not working

    My name is Sara  Lopez Martin, from Madrid. I have an educational license CS6 Production Suite.
    All suite programs work fine except Photoshop  which does not work.
    Open but not save formats, does not work in 3D.
    I uninstalled the entire Suite and I have reinstalled and everything works except photoshop.
    My computer is an i7, Nvidia Quadro 4000, 24 gb of RAM. OS Windows 7 Professional 64 bit.
    Can anyone help me?
    Thank you.

    Thanks for your interest and support. I can not pay rent for the CC software.
    I'll keep looking for the problem.
    Today I updated the CS6 suite but the problem persists.

  • After installation photoshop cs5 extended is not working properly

    don't know what the problem is?

    don't know what the problem is?
    And neither do we. Sorry, you need to provide much more information - operating system, system specs, what is not working.
    Mylenium

  • Standard Enhanced PCI to USB host Controller not working

    Plz help me its suck i can't find any driver for this USB port its suck all my usb ports are not working they not accepting any usb or some thing or intel managment interface also not working plz help me . Thankyou
    Us Device PCI
    Device PCI\VEN_8086&DEV_1E26&SUBSYS_17F8103C&REV_04\3&11583659&0&E8 was configured.
    Driver Name: usbport.inf
    Class GUID: {36FC9E60-C465-11CF-8056-444553540000}
    Driver Date: 06/21/2006
    Driver Version: 6.2.9200.16384
    Driver Provider: Microsoft
    Driver Section: EHCI.Dev.NT
    Driver Rank: 0xFF2005
    Matching Device ID: PCI\CC_0C0320
    Outranked Drivers:
    Device Updated: false
    Intel Mangagment interface
    Device PCI
    Device PCI\VEN_8086&DEV_1E3A&SUBSYS_17F8103C&REV_04\3&11583659&0&B0 was configured.
    Driver Name: null
    Class GUID: {00000000-0000-0000-0000-000000000000}
    Driver Date:
    Driver Version:
    Driver Provider:
    Driver Section:
    Driver Rank: 0x0
    Matching Device ID:
    Outranked Drivers:
    Device Updated: false

    What is the installed operating system?
    In which region of the world are you located?
    Try the following Intel Management Engine software
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-113870-1&cc=us&dlc=en&lc=en...
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for

  • Need info on Cash discounts

    Hello, I need some info on cash discounts. I understand that cash discounts are applicable to the customer after he makes the payment. We issue credit memo. But i dont understand the link b/n cash dicount conditon type (say SKTO/SKTV and payment term

  • How do i undisable my sons ipod?

    how do i undisablemy sons ipod

  • Tax code S7 may only contain one assignment line (Message no. FF731)

    Dear All, I am getting above error while processing Batch session genrated by S_AC0_52000644. I have searched SDN and found the similar kind of error but that message was related to Tax Procedure TAXINN where as we are useing tax procudure TAXINJ. An

  • Layers not printing

    Hello, I have a document set up with multiple layer that also have multiple objects on the layers.  I DO have each layer set to print.  But for some reason only my lowest base image of every layer is printing.  The copy and content I have laying on i

  • Premier Runs Like A Brick - So Very Slow

    Adobe Premier CC is so slow I am unable to work in any sort of productive manner.  The source window sometimes takes up to 20 seconds to begin to play and sometimes there is only audio playback.  The Main playback window takes 10 to 30 seconds just t