IPhone :: Ensure that an application is OK

Hello,
I want to port my desktop, Windows Mobile and J2ME karaoke player to iPhone platform. Is there any responsive contact in Apple Support which can address my concerns that the application I'm going to develop will not have obstacles whilst publishing in AppStore?
This is rather general question: how to ensure?
In my particular case the application will play audio files downloaded from my Web site (you need to purchase these tracks from the site) and from the local storage, so it will obviously mimic some functions of iTunes, which any sound playing application mimics. Additionally it will render karaoke graphics, but this is another story. Will I have problems with publishing my application?

I certainly can't speak for Apple but there are plenty of apps that play sounds in the app store. But yours will actually be playing entire songs though. I would certainly hope yours would not be rejected just because it happens to play music. It certainly is a much different app than iTunes.

Similar Messages

  • How do you close iPhone apps that don't seem to have a close button?

    How do I ensure that an application is fully closed out?
    IM+ is an example but I would like to know in general. IM plus somehow runs in the background but sometimes I want to disable it completely I"m not sure how. Same goes for facebook or safari even. My concern is that I thnk the phone slows down when too many things have been opened. Is there a way to fully force all applications closed short of rebooting?
    Thanks.

    3rd party apps do not run in the background on the iPhone. Apps like IM+ that 'seem' to run in the background do not - your chat account is kept active by the server (not the phone) and/or push notifications via Apple's push notification server are used to alert you that there is server-side activity for the app.
    So, you would just need to exit the app, and if you want to turn off notifications, use Settings > Notifications.
    Also, note that you can force-quit an app - press and hold the sleep/wake button until you see the power-off slider, then release the sleep/wake button and immediately press and hold the home button for ~6 seconds, until you're returned to the home screen.

  • HT1420 I recently upgraded to a macbook pro after my old pc laptop crashed, is there a way to ensure that I can get all the songs off my iPhone when I sync?

    I recently upgraded to a macbook pro after my old pc laptop crashed, is there a way to ensure that I can get all the songs off my iPhone when I sync?

    There's some third party applications available. The following article is pretty old (2008) so it would be best to reality-check the capabilities and availability of the various listed items prior to opting for a particular product:
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P2

  • The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

  • I have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    i have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    Try the developer's forum:
    https://discussions.apple.com/community/developer_forums

  • I have a 3GS iPhone, version 3.1.2.  I have never plugged my phone into a computer or synced with iTunes.  If I do so now, I will I lose everything?  What steps need to be taken to ensure that all of my data, contacts, photos, etc. are not lost?

    I have a 3GS iPhone, version 3.1.2.  I have never plugged my phone into a computer or synced with iTunes.  If I do so now, I will I lose everything?  What steps need to be taken to ensure that all of my data, contacts, photos, etc. are not lost?

    IOS: how to back up  http://support.apple.com/kb/HT1766

  • Im syncing my iphone to itunes because i cant unlock the phone due to water damage so that i can take what is on it and put it on a new phone. how can i ensure that everything was taken from the phone and where can i find it in itunes?

    my phone recently suffered water damage so that the screen does not reigster when i slide to unlock. I am sycing the data from the phone onto itunes so i can put it onto a new phone. How can i ensure that i took everything off of the old phone before i restore it and where can i find all of that stuff when i sync with the new phone?

    iTunes will only store a back up of the iPhone and you find this by following the steps below:
    Windows
    Edit>Preferences>Devices
    Mac
    iTunes>Preferences>Devices
    The link below can show you what is stored in an iTunes back up:
    iTunes: About iOS backups

  • My iPhone will not send an iMessage. It sends everything as SMS. I have ensured that my Apple ID is signed in and that my phone number is enabled for use in both FaceTime and iMessage

    My iPhone will not send an iMessage. It sends everything as SMS. I have ensured that my Apple ID is signed in and that my phone number is enabled for use in both FaceTime and iMessage

    I had the same problem. I went in and added my email address to iMessage and deleted the text to my friends that have iPhones and sent another to test it and it worked. Only thing is now my non iPhone friends don't receive my pic text. I had to turn off iMessage for it to work. Apple needs to fix this ASAP!

  • How to ensure that latest version of Flex application is loaded

    Hello experts
    I have a bit of dilemma here. I am working on application which is going to be used at various locations (globally).
    Level of technical knowledge of users varies quite a lot so do operating systems authorizations of the PCs they are working on (various companies with different level of security).
    At the moment I am facing issue where some users are still using older release of the Flex application even after refresh and deletion of temporary internet files.
    Is there any way to ensure (using some AS code or Flex project settings) that only latest versions of SWF files are loaded (not the one from buffer/cache)?
    Regards
    Michael

    BTW, I have added following line to the HTML template/wrapper:
    <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
    but it is still picking up older version of SWF file on certain PCs. It does read latest HTML (wrapper) file though. Seems that caching is only enabled for either certain file types or files exceeding certain size.
    I have decided to do something a bit daft (or cheeky, depends how you look at it) as temporary solution and rename 2 main files (main SWF and HTML) to something like:
    Application_name_ver_XYZ.*
    It can be done in couple of minutes after release build has been exported (no need to update project itself). That way I can fool browser so it will pick up latest version (since its different file with different name).
    Main application consists of 10+ modules and some of them are compiled into separate SWF files. I am loading them inside application using ModuleLoader component. I have set parameter cachePolicy to "off" as I am not going to rename all these modules each time I am releasing new version of application.
    The end result is that main application is refreshed but all modules that are being loaded are picked up from cache (old versions).
    So as a last resort I have decided to change folder name of my application. That way all the files (main app and modules) are considered as new files since location of all of them has changed. It is just a workaround, it does work but it carries certain risks. If user will use old link application will still load (older version) and then consequences can be catastrophic (even corruption of data).
    Has anyone experienced same issues?
    I know these are more browser/network issues but how do I deal with them. Some of these people cant ask IT for support (for various reasons). Is there anything else I can do to ensure that users across the board will use latest version of application?
    Regards
    Michael

  • Dear Sir, i have problem in my Iphone 5 that during receiving any calls always appeare message that error in application occurred please call support quoting error code 2907. I need to solve my problem

    Dear Sir, i have problem in my Iphone 5 that during receiving any calls always appeare message that error in application occurred please call support quoting error code 2907. I need to solve my problem.

    The problem this message always appeare when receiving the calls and requesting either accept or cancel.
    Can you advice me if i have wrong application or i need to remove some applications.

  • Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies th

    Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster." Pending fix of this glitch, is there a way to go back to previous version of Firefox that worked perfectly well?
    == URL of affected sites ==
    http://www.americanleather.com/ComfortSleeper/Madison.aspx?page=2

    Hi JH,
    According to your description, my understanding is that you got an error when you deleted  columns in SharePoint 2010.
    Please add the following string in <system.web> section of your web.config file :
    <pages validateRequest="false" enableEventValidation="false" viewStateEncryptionMode ="Never" />
    Note: before changing web.config, please make a backup for the file.
    Here are some similar posts for you to take a look at:
    http://forums.asp.net/p/1355367/2778642.aspx
    http://forums.asp.net/t/1166634.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Changing Applications hostname: Please ensure that Classpath is set properl

    Hi,
    I am trying to change the applications hostname on R12.
    I am following the note "How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1].
    I have already did the step 1: Deregister the current Applications server using adgentns.pl
    But, when I try to execute step 2: Update the Autoconfig Context file using adclonectx.pl, I am getting the following error:
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    Oracle Applications Rapid Clone
    Version 12.0.0
    adclonectx Version 120.23.12010000.1
    *Please ensure that Classpath is set properly*
    The value of CLASSPATH is the following:
    $ echo $CLASSPATH
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:
    /ebs12/apps/apps_st/comn/java/lib/appsborg.zip:
    /ebs12/apps/tech_st/10.1.2/forms/java:
    /ebs12/apps/tech_st/10.1.2/forms/java/frmall.jar:
    /ebs12/apps/tech_st/10.1.2/jlib/ewt3.jar:
    /ebs12/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:
    /ebs12/apps/apps_st/comn/java/classes
    I opened the file adclonectx.pl and i can see that the message *Please ensure that Classpath is set properly* is displayed from only one place:
    sub setJlibPath {
    setADJavaPath();
    setJDBCPath();
    setXMLParserPath();
    $CLASSPATH = $JDBCCLASSES . $cpDel . $XMLPARSERV2 . $cpDel . $ADCONFIG;
    # print "\nCLASSPATH = $CLASSPATH\n";
    if ( $ADCONFIG eq "" or $XMLPARSERV2 eq ""
    or $JDBCCLASSES eq "") {
    print "Please ensure that Classpath is set properly\n";
    die "\n";
    The error message displayed is related to the well formed variable classpath mentioned in the above procedure.
    It is formed by the concatenated values of variables JDBCCLASSES, XMLPARSERV2 and ADCONFIG. Those variables are set in the following piece of code:
    # setADJavaPath
    sub setADJavaPath {
    #try to get adconfig under stage area
    if ($ADCONFIG eq "") {
    $ADCONFIG = (-e "$CMDDIR/../jlib/java") ? "$CMDDIR/../jlib/java" : "";
    #try to get adconfig under JAVA_TOP if it is set
    if ($ADCONFIG eq "") {
    $ADCONFIG = (-e "$ENV{JAVA_TOP}/oracle/apps/ad") ? "$ENV{JAVA_TOP}" : "";
    if ($ADCONFIG eq "") {
    # This could be a case of platform migration where we dont have the classes anywhere except in $AD_TOP/java/jar/adxlib.jar
    $ADCONFIG =
    (-e "$CMDDIR/../java/jar/adxlib.jar")
    ? "$CMDDIR/../java/jar/adxlib.jar"
    # setJDBCPath
    sub setJDBCPath {
    #try to get ojdbc14.jar under stage area
    #Bugfix 6773412
    #for 11g database ojdbc5.jar should be considered
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/ojdbc5.jar")
    ? "$CMDDIR/../jlib/ojdbc5.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/ojdbc14.jar")
    ? "$CMDDIR/../jlib/ojdbc14.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/jdbc14.jar")
    ? "$CMDDIR/../jlib/jdbc14.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/jdbc14.zip")
    ? "$CMDDIR/../jlib/jdbc14.zip" : "";
    #try to get jdbc under JAVA_TOP if it is set
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$ENV{s_af_jlib}/jdbc14.zip")
    ? "$ENV{s_af_jlib}/jdbc14.zip"
    # setXMLParserPath
    sub setXMLParserPath {
    #try to get xmlparserv2 under stage area
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2-904.zip")
    ? "$CMDDIR/../jlib/xmlparserv2-904.zip" : "";
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2.zip")
    ? "$CMDDIR/../jlib/xmlparserv2.zip" : "";
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2.jar")
    ? "$CMDDIR/../jlib/xmlparserv2.jar" : "";
    #try to get xmlparser under JAVA_TOP if it is set
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$ENV{s_af_jlib}/xmlparserv2-904.zip")
    ? "$ENV{s_af_jlib}/xmlparserv2-904.zip"
    The issue is that the 3 procedures mentioned above can't find the files thaey are looking for, and finally the 3 variables are set in null.
    I found those files in other locations:
    XMLPARSERV2=/ebs12/apps/tech_st/10.1.3/lib/xmlparserv2.jar
    JDBCCLASSES=/ebs12/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar
    ADCONFIG=/ebs12/apps/apps_st/appl/ad/12.0.0/java/jar/adxlib.jar
    I run export for them:
    export XMLPARSERV2=/ebs12/apps/tech_st/10.1.3/lib/xmlparserv2.jar
    export JDBCCLASSES=/ebs12/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar
    export ADCONFIG=/ebs12/apps/apps_st/appl/ad/12.0.0/java/jar/adxlib.jar
    and finally I execute again the step 2 of the procedure to change the hostname ... but the error is the same:
    adclonectx Version 120.23.12010000.1
    *Please ensure that Classpath is set properly*
    Do you know how to solve this error ?
    Thanks in advance
    Regards,
    Sergio Maestri
    Edited by: Sergio Maestri on 06-dic-2011 7:13

    >
    What echo $CLASSPATH return?$ echo $CLASSPATH
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:
    /ebs12/apps/apps_st/comn/java/lib/appsborg.zip:
    /ebs12/apps/tech_st/10.1.2/forms/java:
    /ebs12/apps/tech_st/10.1.2/forms/java/frmall.jar:
    /ebs12/apps/tech_st/10.1.2/jlib/ewt3.jar:
    /ebs12/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:
    /ebs12/apps/apps_st/comn/java/classes
    But, the message displayed is related to the procedure "setJlibPath" contained inside the file "adclonectx.pl"
    sub setJlibPath {
    setADJavaPath();
    setJDBCPath();
    setXMLParserPath();
    $CLASSPATH = $JDBCCLASSES . $cpDel . $XMLPARSERV2 . $cpDel . $ADCONFIG;
    # print "\nCLASSPATH = $CLASSPATH\n";
    if ( $ADCONFIG eq "" or $XMLPARSERV2 eq ""
    or $JDBCCLASSES eq "") {
    print "Please ensure that Classpath is set properly\n";
    die "\n";
    else {
    The above procedure is called always you execute adclonectx.pl, and the reference CLASSPATH in the message error is about the variable CLASSPATH that the mentioned procedure try to set a value. It's not related to the ambient variable CLASSPATH... at least is what I understand ..
    I think this is a bug, because the files needed to find in order to set the values of DBCCLASSES, XMLPARSERV2 and ADCONFIG variables are located in other places.
    >
    Also see:
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2271869
    I saw it, but it's related to database hostname and it doesn't content any solution to the issue ...

  • That application could not be lanched for debugging. ensure that the target device screen is unblock and that the application in installed

    what is the problems?

    Hi windows phone app can not debugging,
    >>that application could not be lanched for debugging. ensure that the target device screen is unblock and that the application in installed.
    Based on the error information, it seems that you are trying to deploy the application on the Windows Phone Device. Then what Windows Phone OS are you using? Can you run
    the application by using the Windows Phone Emulator?
    For deploying the application on the Windows Phone Device, first please try to make sure you have registered your phone for Windows Phone development. For more information, please refer to:
    https://msdn.microsoft.com/en-us/library/windows/apps/ff769508(v=vs.105).aspx . 
    After that please try to make sure that phone screen is unlocked and the project you want to run is set as the default Startup project.
    Besides, please try to refer to the following article about how to deploy and run apps on a Windows Phone device:
    https://msdn.microsoft.com/library/windows/apps/ff402565(v=vs.105).aspx#BKMK_device .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HT3819 I have synced my ipad and iphone 5 to itunes and all my songs appear in the device library but i cannot ply all of the songs unless via home sharing. How can i ensure that my libraries appear on each device as the syncing process seems to be failin

    Syncing problems.
    How can I sync my iphone 5 and ipad to ensure that i dont need to use home sharing to access all of my music library?

    I don't think I have made myself clear... I have recently upgraded my iPhone 4 to a 5 so everything was set up to sync with no problems at all. I transferred everything across to my new device by iCloud and everything appears as it was on my old device including on the face of it my music library. However, I cannot play all of the songs in fact the majority! When at home I can access the entire library via home sharing but that is no use away from the house. I never had this problem with iPhone 4 and although I am automatically syncing the device to iTunes it is not working. If I try to play songs via the device it skips until it finds a song that cAn be played and if I try and play the device via the laptop/iTunes an ! Type signal appears and I cannot play the song!
    Any ideas re solutions would be appreciated???

  • Is there a way to ensure that data has been wiped from my iphone 3g. It shows the "connect to itunes" screen when turned on.

    Is there a way to ensure that data has been wiped from my iphone 3g. It shows the "connect to itunes" screen when turned on.

    That is how it appears brand new out of the box.

Maybe you are looking for