Submission issue

Hi I have a jsp file containing two different forms(means two drop down) with two javascript function and default value for both drop down is
SELECT.
expected functionality-is when I select from region form ,facility form should have only "select" and as soon as select value from region, facility value should be shifted to select
present functionality-if i select value from region drop down ,facility value also changes from select.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ page errorPage="error.jsp" %>
<html:html>
<HEAD>
<%@ page
language="java"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"
%>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="../theme/Master.css" rel="stylesheet"
type="text/css">
<TITLE></TITLE>
<script language="javascript">
function submitRegion()
var ind = document.regionForm.region.selectedIndex;
if ( ind == 0)
alert('Please select the required region ..');
return;
else
document.regionForm.submit();
</script>
<script language="javascript">
function submitFacility()
var ind = document.facilityForm.facility.selectedIndex;
if ( ind == 0)
alert('Please select the required facility ..');
return;
else
document.facilityForm.submit();
</script>
</HEAD>
<BODY >
<div class="menu" id="menubar">
<!--
<%String name = (String) request.getAttribute("name");
//out.write(name);
%>
-->
<html:link action="/nation">National Audit Report</html:link>
<br></br>
<h1 style="font-size:12px">Regional Audit Report</h1>
<!-- <html:link action="/regionalauditreports">Regional Audit Report</html:link>
<<br></br>-->
<html:form action="/regionalauditreports">
Region: <html:select style="width:95px;" property="region" name="regionForm" size="1" onchange="submitRegion()">
<html:option value="0">SELECT</html:option>
<html:options property="regionList" name="regionForm" />
</html:select>
</html:form>
<br></br>
<h1 style="font-size:12px">IATA Audit Report</h1>
<!--<html:link action="/iata">IATA Audit Report</html:link>
<br></br>-->
<html:form action="/iata">
Facility: <html:select property="facility" name="facilityForm" size="1" onchange="submitFacility()">
<html:option value="0">SELECT</html:option>
<html:options property="facilityList" name="facilityForm" />
</html:select>
<br></br>
</html:form>
<br></br>
<html:link page="/help.jsp">Help</html:link>
</div>
</BODY>
</html:html>

Hi Smita. Are you saying that it is reverting back after submitting and refreshing? The problem maybe because you are using 2 forms but you are submitting only one. So, even if through javascript the value is set to 0, the form bean value of one isn't changing as it is not submitted. That is my guess anyway, since I don't have an idea how your entire code looks like. Try to check whether the form bean value is being held somewhere inadvertently (like setting in session scope etc.). Try to trace your forms through the entire functionality, from submission upto the next page load. You may come to know how the value is being held...

Similar Messages

  • SOAP submission issue

    I am using SOAP message over HTTPS.
    Our architecture:
    Client submission server uses TOMCAT 4.1..29, JDK 1.4.2 with JSSE
    I am using com.sun.net. ssl.HttpsURLConnection object to open url connection with submission server.
    Submsiion server at the other end has IIS configred to authenticate digital certificate information for the incoming SOAP envelope.
    My code works fine except in some instances IIS does not find the certificate info in HTTP session. What causes to strip off this certificate info? If I use browser to submit the same SOAP message it works fine for all submissions, that means IIS server at the other end always receives the certificate info.
    I eliminated the doubt on Tomcat web server at my end by simply running the similar code as pure java application using commnad prompt and still I get the same issue ( certificate info is not in session)
    Please note that our network has no proxy server. SOAP message file size is just few KB.
    Please check the code below and any feedback, suggestion is wel come
    ==============================================
    Code sample :
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.sun.net.ssl.HttpsURLConnection;
    import com.sun.net.ssl.KeyManagerFactory;
    import com.sun.net.ssl.SSLContext;
         sendMessage(File output, ActionForm form, ActionMapping mapping, HttpServletRequest request) throws Exception {
              SignatureForm signForm = (SignatureForm) form;
         String xyz = null;
              System.setProperty("java.protocol.handler.pkgs","com.sun.net.ssl.internal.www.protocol");
              java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
              System.setProperty("UseSunHttpHandler", "true");
              System.setProperty("javax.net.ssl.trustStore", signForm.getCertPath() + "cacerts");
              String filePath = request.getSession().getServletContext().getContext("/les").getRealPath("/") + "/cert/";
              System.setProperty("javax.net.ssl.keyStore", filePath + "" + signForm.getCertFileName());
              System.setProperty("javax.net.ssl.keyStorePassword", signForm.getPassword());
              System.setProperty("javax.net.ssl.keyStoreType", "PKCS12");
              System.setProperty("file.encoding", "UTF-8");
              //System.setProperty("javax.net.debug", "all");
              String pathKeyStore = filePath + "" + signForm.getCertFileName();
              System.out.println("Key store path :" + pathKeyStore);
              char[] passphrase = signForm.getPassword().toCharArray();
              FileInputStream fis = new FileInputStream(pathKeyStore);
              KeyStore ks = KeyStore.getInstance("PKCS12");
              ks.load(fis, passphrase);
              fis.close();
              KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
              kmf.init(ks, passphrase);
              sslcontext = SSLContext.getInstance("TLS", "SunJSSE");
              sslcontext.init(kmf.getKeyManagers(), null, null);
              Enumeration en1 = null;
              en1 = ks.aliases();
              String alias = null;
              while (en1.hasMoreElements()) {
                   alias = (String) en1.nextElement();
                   System.out.println("Alias is " + alias);
                   System.out.println("Submitting Certificate details are " + ks.getCertificate(alias).toString());
              java.net.URL url = new URL(null, signForm.getSubmitUrl(), new com.sun.net.ssl.internal.www.protocol.https.Handler());
    // signForm.getSubmitUrl(): https://shop.gateway.elite.com/PPC/BatchServlet
              FileInputStream fileInputStream = new FileInputStream(output);
              int bytesRead, bytesAvailable, bufferSize;
              byte[] buffer;
              int maxBufferSize = 40 * 1024 * 1024; // 40MB limit on submission file
              try {
                   SSLSocketFactory factory = sslcontext.getSocketFactory();
                   SSLSocket socket = (SSLSocket) factory.createSocket(url.getHost(), 443);
                   socket.startHandshake();
                   socket.setKeepAlive(true);
                   HttpsURLConnection.setDefaultSSLSocketFactory(factory);
                   HttpsURLConnection.setDefaultAllowUserInteraction(true);
                   HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
                   // Use a post method.
                   conn.setRequestMethod("POST");
                   // Allow Outputs and Inputs
                   conn.setDoOutput(true);
                   conn.setDoInput(true);
                   // Don't use a cached copy.
                   conn.setUseCaches(false);
                   System.out.println("--------------------------");
                   System.out.println("Submission Start:" + new Date().toString());
                   DataOutputStream wr = new DataOutputStream(conn.getOutputStream());
                   bytesAvailable = fileInputStream.available();
                   bufferSize = Math.min(bytesAvailable, maxBufferSize);
                   buffer = new byte[bufferSize];
                   // read file and write to Dtrade server
                   bytesRead = fileInputStream.read(buffer, 0, bufferSize);
                   while (bytesRead > 0) {
                        wr.write(buffer, 0, bufferSize);
                        bytesAvailable = fileInputStream.available();
                        bufferSize = Math.min(bytesAvailable, maxBufferSize);
                        bytesRead = fileInputStream.read(buffer, 0, bufferSize);
                   BufferedReader rd1 = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer strBuff = new StringBuffer();
                   String line1;
                   while ((line1 = rd1.readLine()) != null) {
                        System.out.println(line1);
                        strBuff.append(line1);
                   signForm.setSoapResponseMsg(strBuff.toString());
                   rd1.close();
                   wr.close();
                   conn.disconnect();
                   socket.close();
                   String patternStr1 = "faultcode";
                   String patternStr2 = "receiptID";
                   if (strBuff.indexOf(patternStr1) > 0) {
                        System.out.println("Submission unsuccessful:" + new Date().toString());
                        System.out.println("--------------------------");
                        signForm.setFilingStatus("F");
                        if (signForm.getSubmitUrl().indexOf(patternStr3) > 0)
                             signForm.setSubmitUrl("test");
                        else
                             signForm.setSubmitUrl("trade");
                   if (strBuff.indexOf(patternStr2) > 0) {
                        System.out.println("Submission successful:" + new Date().toString());
                        System.out.println("--------------------------");
                        signForm.setFilingStatus("Y");
              } catch (Exception ex) {
                   if (signForm.getSubmitUrl().indexOf(patternStr3) > 0)
                        signForm.setSubmitUrl("test");
                   else
                        signForm.setSubmitUrl("trade");
                   ex.printStackTrace();
                   signForm.setSoapResponseMsg("");
                   System.out.println("Submission unsuccessful:" + new Date().toString());
                   System.out.println("--------------------------");
                   signForm.setFilingStatus("N");
              return null;
    Code Sample end:

    Thanks for your reply.
    Yes I tried hardcoding the values still the problem persists.
    Is there any possible code part i am missing here?

  • Compressor 3.5 Submission issues

    Ok, I am officially at the end of my tether.
    Just got a new 27 inch iMac and have done fresh installs of all software and everything works as before EXCEPT Compressor.  When I get to the final drop down box 'Submit' is greyed out.
    I've searched high and low and down everything suggested I can find including:
    * Fresh install again of Compressor
    * Moved things in directorys
    * Made sure Qmaster and such are all 3.5, not 3.5.3 and have got rid of updates
    * Trashed all prefs
    * Reset background prefs
    * Ran the Compressor Repair app
    * Repaired permissions in Disk Utility
    * Tried different files, sources and destinations
    All this has been done a number of times as well as other little things I'm sure I've forgotten.
    This was working perfectly on the old machine a few days ago with both FCP7 and FCP X installed and now it just won't play ball and it is flat out doing my head in as I have a pile of clips I need to export in Compressor.
    Any suggestions greatly appreciated.
    Cheers

    Thanks for the suggestions.
    Yes, I have FCP X on the new machine and have tried removing it and it's made no difference unfortunately.
    Should've mentioned I used the Remover app to do all the reinstalls in my initial post
    I think I've worked out where the issue is though.  Compressor won't find 'This Computer' as a cluster option.  If I try to manually add it using my IP it just searches and searches to no avail.  So I think therein lies the problem, just have to find a way to solve it still!
    Cheers

  • Submission issues iTunes Connect

    Hi, I have just received a negative Apple review result after having submitted my folio to iTunes Connect. "We found that your app exhibited one or more bugs, when reviewed on iPad running iOS 8 and iPhone 5s running iOS 8". My first question is: why does Apple test an iPad folio/app (that's what we get in Indesign DPS, don't we?) on an iPhone device? Doesn't the bindery we upload include information on what device it has been designed for (i.e. iPad)? My second question refers to the iOS version. I had, indeed, tested my developer and then the distribution version on an iPad running iOS 7 (just a few weeks ago, before submitting it for the review of the App Store). Now that the new software iOs 8 has been released, Apple (understandably) tests it on iOS 8 and it turns out, my folios do not load on iOs8. Is that always the case?? I have just downloaded iOS 8 and it does not load the app when I click on the icon of my previously tested and working folio.
    I would appreciate your help, thanks for your answers in advance!

    How long ago did you build your app? Is it a Single Edition app or a multi-issue app?
    If it is multi issue make sure you built it September 13th or later. See http://status.adobedps.com/?p=732.
    If it is single edition make sure you built it September 19th or later. See Re: Problem with single edition App v32
    The comment in their rejection notice regarding iPhone sounds more like a generic statement from them rather than that they tested specifically on iPhone. If you built a multi issue application then you got to pick what devices you supported when you made the app (it's the first step on App Builder). If you are building a Single Edition app then it is iPad only and will not run on iPhone so they couldn't possibly have tested it on iPhone.
    Neil

  • AppStore submission Issue

    Hello There,
    I exported a release build package for appstore distribution using my provisioning file.
    When i try to upload my ipa, i get this error: "There is no dwarfdump executable defined"
    I tried to unzip then rezip the xxx.app folder with no success...
    I am stucked to upload my application.
    Thanks to help me
    /niCko

    niCk005 wrote:
    I solved the problem by installing Xcode and System Tools.
    Did you do something else? Just installed xcode and application loader began to work?
    I'm asking because I've stucked just in the same problem.

  • HT1819 Podcast Submission Issues

    I am in the process of submitting a video podcast to iTunes.  I validated my feed, but when I submit it to iTunes it says "It appears the feed has already been submitted"  I can't find the feed on itunes, I haven't had any emails. Obviously I want to make sure my podcast is working.  What should I do?

    Changing location settings in SquareSpace solves this porblem.

  • App rejected due to microphone prompt issues??

    Apple app submission issues again!
    This time I really can't understand what on earth they are referring to. I have a VERY simple iphone app waiting for launch and it was rejected due to this, I guess some random setting or bit of code I have no idea about. Can anyone give me some insight into this?
    This is what they said:
    "During review we were prompted to provide consent to use the microphone, however, we were not able to find any features or functionality that use the microphone for audio recording. The microphone consent request is generated by the use of either AVAudioSessionCategoryRecord or AVAudioSessionCategoryPlayAndRecord audio categories. If you do not intend to record audio with your application, it would be appropriate to choose the AVAudioSession session category that fits your application's needs or modify your app to include audio-recording features."
    Is this a setting I can control from Flash/AIR? I have no idea!
    Thanks very much,
    Fiona

    Hi Pahup
    Just wondering, in my case where I do use the microphone and I have it set in my app.xml under InfoAdditions UIRequiredDeviceCapabilities,
    could it be (hopeful here) that the next Air version prompt for the permission on first app launch?
    At the moment, the prompt is only coming up when I use the microphone and because I want that to happen earlier, the only way I can think of doing this is by faking the need for mic at app start.
    Thanks!
    Melissa

  • How do I create a reader extended quiz that cannot be saved after submitting form

    I'm trying to creat a quiz (using a form) that can be submitted via e-mail from the client. I cannot use "distribute form" as this will be used in a factory environment on a shared computer. How do I make the form so the quiz is not saved with the answers filled in?

    With FDF, the person reading the file has to have Acrobat. AA7 sounds write, but at this point most folks have that (except for folks like me who have a different version of Acrobat on each machine with 4 through 9).
    With Reader, folks can submit a FDF file by e-mail (not preferred and prone to client setup issues) or a web script. You can also use the FDF Toolkit (Adobe download) to manipulate the submitted FDFs if desired. I do not believe that Reader can import the FDF file, but I do not have Reader installed to check on that (actually I could do it at home with my old desktop that has Reader on it -- but no time soon). As far as filling the form out and submitting it with a FDF file, there should be no problem with Reader. As to how far back in Reader versions this is true may be another question. One of the issues deals with keeping out all of the newer features in your form. You might do that by using the Save as -- Reduce File Size or PDF Optimize to put it in a prior version. Be sure to check your form afterwards to be sure it is still functional.
    FDF is the standard data output for AcroForms (Designer creates XML forms). The use of the data submission avoids the need to activate Reader Rights that has EULA limitations on the use.
    I will let others address the distribution and submission issues, but I think the answer is yes.
    For FDF based forms, the form is developed entirely in Acrobat, not Designer. Many folks automatically head to Designer through the forms menu, but it is not necessary. Designer has some advanced features that are useful for some situations, so you have to look at the tradeoffs if you go there. Most needs can be satisfied by AcroForms (forms directly in Acrobat). I have always felt more control of an AcroForm, but I honestly can not give a good comparison. George Johnson gives a lot of comments on forms and can probably direct you to a good comparison or answer specific questions better than most of us. He gave your first response on this discussion. Hopefully this clarifies things a bit.

  • Is there anyway to change Info.plist settings and use Flash Builder 4.6 to package the iOS app?

    Hi there,
    I've tried to package my app with the latest Xcode 4.5 (version 19 Sep 2012) iOS 6 SDK, Flash Builder 4.6, Flex SDK 4.6 with Air 3.5 Beta overlay.
    and unzip the .ipa file and i found the following automated settings on the Info.plist file was wrong:
    <key>DTPlatformVersion</key>
            <string>5.1</string>
            <key>DTSDKBuild</key>
            <string>9B176</string>
            <key>DTSDKName</key>
            <string>iphoneos5.1</string>
    According to the Adobe specs, these settinsg are unchangeble, is there anyway to change these values to produce .ipa file that with iOS 6.0 settings with Flash Builder 4.6?
    I believe this cause the following appstore submission issue with the iPhone 5 4-inch display splash screen image [email protected]:
    Invalid Launch Image - You app contains a launch image with a size modifier that is only supported for apps built with the iOS 6.0 SDK or later.
    Many thanks,
    A

    Not everyone here was involved in the conversations that led up to this file, so here are some extra clues:
    In your AIR3.5 folder (or whatever you named the folder) is a lib folder. Inside that is the current adt.jar file. Rename that in case you have to go back to it, and drag the supplied adt.jar file into the lib folder. Now publish your app.
    You won't even need to quit Flash or Flash Builder.
    Once you have the new IPA, go through the usual upload steps to the App Store, using Application Loader, and the file should process ok in iTunes Connect. Note, you will be asked to provide iPhone 5 screenshots.

  • Frequent error on feed posting - iTunes server problem?!

    Since last friday iTunes server has a frequent problem accepting feeds for review. I had the same experiences as mentioned before. All the messages in this board point to one thing:
    iTunes server - mainly error 5002
    Can someone of Apples staff PLEASE solve this?
    We do not know where we could come up with this, as there is no smart user help line at the apple site...

    Please see this announcement:
    New Podcast Submission Issues
    "There is currently an issue with the podcast submission process; it is not possible to submit podcasts for review. When the problem has been fixed, this message will disappear and you should be able to submit podcasts via the usual process."

  • Application loader error -19011

    i developed my application and tested it in real device now i am ready to send it to Apple Store. but i have a problem. when i try to send it over application loader it gives a warning and i cant send it. here is the warning code "The signature was invalid, or it was not signed with an Apple submissiong certificate -19011". i renewd my distrubition certificate and provisining file. but still i get that error. what can else do more ?

    Follow the walk-thru and links in TN 2250 (recently updated) and TN 2294 Code Validation and Submission Issues for iOS (recently added). Be sure your app's status is 'waiting for upload'.

  • Random blank screen in SRM 7.0 with IE 10 punching out to catalog

    Hi -
    After 4 days of insane hours testing, we're running into a complete brick wall with SRM 7.0 and IE 10.  We have a Punchout Catalog that loads the initial page, but the second the page is submitted to go to the second page inside the catalog, the page throws a blank white screen and you can't continue.
    We've more or less ripped the catalog down to bare bones to see if we can get it to submit a form, which we have a couple of times, but then we've had the same code fail other times.
    Its worth noting the following:
    1) SSL is turned on.
    2) we currently use this catalog in production with IE7/8 without any problems.
    3) the catalog is deployed hundreds of times around the world and this is the ONLY instance where anything of the sort is happening.
    4) if you reference the same catalog outside of SAP, with the same browser, it works flawlessly.
    I'm at a loss.  Please...anybody...help?

    I'm adding additional information here guys.  I made a more complete post elsewhere.  Here it is:
    Hi -
    One of our customers has been standardized on IE8 for punching out to our catalog.   They want to move to IE10, but we're having really bizarre issues during the testing phase.  As a prereq, please note that the way this solution works is that they start their session inside SAP, punchout to our e-catalog, but the site retains a "frameset" (a traditional frameset...not iframes/ajax div etc) with the top frame being a way to return to the SAP system, and the bottom frame being the catalog.  The bottom frame is encoded and we don't really have any way to know if its manipulating our catalog code, or what.
    ISSUE: In IE8, there are no issues with the system.  They use our shopping cart, add things to the cart, go to the review cart on the next page, and punch the data back into SAP.  In IE10, it blank screens on the second page, almost like a custom SAP 404 error - just completely blank...when you view source, it IS a 404 "this page cannot be displayed", but the URL that is given is for the internal SAP system, rather than our catalog (which it SHOULD be trying to look for a page on our catalog rather than an internal SAP page.  So its more or less like it doesn't like something on our catalog page, environment, whatever...and then redirects to a internal SAP page that doesn't exist/isn't working correctly).  Every time anything is clicked on the page (form submission, link, etc) that has to refresh the entire page/frame, the system white screens.  We are using iframes (yes, I know .  Ajax issues with IE8 was the driver there, IE8 was a requirement for our customer due to SAP...) to submit certain datapoints on the page, and we don't have any problem submitting to the iframe.  The second you submit to the whole page (or frame, I guess, if you want to look at it that way), white screen/404 issue.
    FACTORS:
    • It works fine in IE8.  It also works perfectly in IE10 OUTSIDE of the frameset SAP is generating.  Even inside of the customers secure environment.  The second SAP gets involved, the issue occurs.  We've never seen this issue with any other deployment of anything, anywhere...other ERPs, other browsers, etc.
    • SSL:  We managed to get the testers to get past the first page by turning off SSL, but they had to work their way outside of the traditional security in SAP as well so I'm not sure if this has any relevance at all.  But SSL compatibility with SAP or frameset as it pertains to IE10 was a thought process.
    • It doesn't seem to be a form submission issue.  We initially thought it might have something to do with the way IE10 interprets frame ID as we were submitting to _self, etc, but turns out traditional links don't work either with no sort of target information.
    • It's definitely on the page load itself, not on the submission of form data to the page, when the white screen happens.  We noticed that half of the page would load for a split second before it white screened.  Initially we thought it was based on something that was being sent, but its definitely past any header submissions or form posts.
    • We pretty much broke apart the entirety of the code and weeded out all kinds of factors and tested them independently and in different combinations...so extensively that I'm almost positive it isn't a traditional coding issue. The result pages ("second page") we set for the tests had almost no content at all...all of which is traditional HTML that has been supported by every browser since the dark ages.  We could not find any true consistent patterns.  Sometimes the user could make it to the second page, other times not (only on the tests, never on the actual catalog), but usually it was the same for all test scenarios (so if we had 9 test scenarios, they'd all fail, or they'd all succeed).
    Conclusions thus far:
    • We're almost positive it isn't code related. However, it could absolutely be caching related?  Although we have the user clearing caching almost every page test, I'm not sure if that clears everything like page load over SSL or something of that nature?
    • Clearly there is some major difference between IE10 and IE8 and how they interpret the same environment.  This might (probably is) just be a SAP issue.  Could it be our SSL type?  What is interpreted differently in those scenarios between the two browsers inside the same SAP wrapper?
    Anything else you can think of would be greatly helpful.  We've been testing for countless hours....we have a really technically advanced team...really can't catch a break on this one or find any consistencies. If SAP wasn't a factor, we'd have this solved in 15 minutes.  I'm not really sure what else to explore since the SAP environment is in play.  Thanks for your help!

  • App distribution failed

    I want to distribute my app to App Store.
    1. I found the below error during validaion (after clicking Product -> Archive -> Validate in Orangizer). I am using Xcode4 for development.
    "Application failed code sign verification. The signature was invalid, or it was not signed with an iPhone Distribution Certificate."
    2. Under "Code Signing Identity" in "Targets" pane, I found the below error.
    "iPhone distribution (does not match any identity/profile pairs)"
    My app is running properly in my IPod touch device as I can select "IPhone Developer (currently matches ....)" under
    "Code Signing Identity" in "Targets" pane.
    I spent more than one week to seek solution but in vain.
    Could anyone give me an advice?
    Your help is much appreciate.
    hifi

    Follow the walk-thru and links in TN 2250 (recently updated) and TN 2294 Code Validation and Submission Issues for iOS (recently added) and iTunes Connect Help (new).

  • Application failed codesign verification. The signature was invalid, or was not signed with an Apple

    Folks ,
    I'm developing and iOS app in Flash but when I'm gonna upload it via application loader this error pop up "Application failed codesign verification. The signature was invalid, or was not signed with an Apple submission certificate."
    I've renew my certificates, etc for several times but still have a same problem,
    look to get your suggestion

    Follow the walk-thru and links in TN 2250 (recently updated) and TN 2294 Code Validation and Submission Issues for iOS (recently added) and iTunes Connect Help (new).

  • Question about Distribution Application to App Store

    hi all,
       hope can help me for Distribution ipad application to app store use application loader.
      here is Err message:
         Application failed codesign verification. The signature was invalid, or it was not signed with an iPhone Distribution Certificate.
        bellow is bulid Info:
    ProcessProductPackaging "/Users/liujxyxhama/Library/MobileDevice/Provisioning Profiles/08D746A0-F92E-4007-8C5A-C65F35EBD77E.mobileprovision" /Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan-adevzckbhrtwnjgb ngqlwhroxshi/Build/Products/Debug-iphoneos/iCaidan.app/embedded.mobileprovision
        cd "/Users/liujxyxhama/Desktop/iCaidan ios5/iCaidan"
        setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/u sr/bin:/bin:/usr/sbin:/sbin"
        builtin-productPackagingUtility "/Users/liujxyxhama/Library/MobileDevice/Provisioning Profiles/08D746A0-F92E-4007-8C5A-C65F35EBD77E.mobileprovision" -o /Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan-adevzckbhrtwnjgb ngqlwhroxshi/Build/Products/Debug-iphoneos/iCaidan.app/embedded.mobileprovision
    CodeSign /Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan-adevzckbhrtwnjgb ngqlwhroxshi/Build/Products/Debug-iphoneos/iCaidan.app
        cd "/Users/liujxyxhama/Desktop/iCaidan ios5/iCaidan"
        setenv CODESIGN_ALLOCATE /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
        setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/u sr/bin:/bin:/usr/sbin:/sbin"
        /usr/bin/codesign --force --sign "iPhone Distribution: Yin Hai Bo" --resource-rules=/Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan -adevzckbhrtwnjgbngqlwhroxshi/Build/Products/Debug-iphoneos/iCaidan.app/Resource Rules.plist --entitlements /Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan-adevzckbhrtwnjgb ngqlwhroxshi/Build/Intermediates/iCaidan.build/Debug-iphoneos/iCaidan.build/iCai dan.xcent /Users/liujxyxhama/Library/Developer/Xcode/DerivedData/iCaidan-adevzckbhrtwnjgb ngqlwhroxshi/Build/Products/Debug-iphoneos/iCaidan.app
    CodeSign Info:
    uminami-inmatoMacBook-Pro:~ umihain$ codesign -dvvv icaidan.app
    icaidan.app: cannot find code object on disk
    uminami-inmatoMacBook-Pro:~ umihain$ codesign -dvvv /icaidan.app
    /icaidan.app: cannot find code object on disk
    uminami-inmatoMacBook-Pro:~ umihain$ codesign -dvvv /icaidan.app
    Executable=/icaidan.app/iCaidan
    Identifier=com.XXX.XXX
    Format=bundle with Mach-O thin (armv7)
    CodeDirectory v=20100 size=6108 flags=0x0(none) hashes=297+5 location=embedded
    CDHash=036f32c0283ad479d4d4639132c83a983ef947dc
    Signature size=4273
    Authority=iPhone Distribution: XXX
    Authority=Apple Worldwide Developer Relations Certification Authority
    Authority=Apple Root CA
    Signed Time=2012-1-19 下午06:10:05
    Info.plist entries=30
    Sealed Resources rules=3 files=200
    Internal requirements count=1 size=144
    uminami-inmatoMacBook-Pro:
    the question is trouble me for some days. and hope can help me soon .
    thanks .

    Follow the walk-thru and links in TN 2250 (recently updated) and TN 2294 Code Validation and Submission Issues for iOS (recently added).

Maybe you are looking for

  • Issue in confuguration of Kerberos authentication

    Hi all We are trying to configure Kerberos authentication for single sign-on on a SAP WAS 6.40 Java System. We configured the Kerberos using SPNEGO wizard. After configuring when we tried to login to UME, but it prompted for Username and Password whi

  • MacBook Pro (9,2) Thunderbolt Port does not project mirror image correctly

    Scenario: Using an Apple Mini Display Port to VGA adapter MacBook Pro (9,2) Thunderbolt port Various projectors Epson 450w Epson 460 Epson PowerLite 45+ Using Mirroring setting in Display preferences. Symptoms: Inserting the Apple Mini Display Port t

  • How to Extract the selected line in alv?

    Hi,   I am learning ABAP and i have a doubt.It is as follows. In interactive reports, by clicking on a ROW we can display the line by using SY_LISEL in AT LINE_SELECTION event . Now i want to have a pop up window when we click on a selected row of AL

  • Report Customization URL Links..

    Hi I am currently setting up URL Links on Portal to customize reports.. e.g. http://portal.mywork.com/pls/portal30/SCHEMA1.DETAIL_RPT.show?p_arg_names=region_id&p_arg_values=7&p_arg_names=_region_id_cond&p_arg_values=%3D however one of the reports is

  • How to use a java version on a CD application?

    i need to specify the location of a version of java on a cd, meaning that i want the java applet on the cd to use the version of java that i will supply on the cd, regardless of what is on the machine itself. can i do this? and how? thanks