Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

OEPE problem with Provisioning Profile/Cert

J.TarkaNov 12 2015 — edited Nov 13 2015

Using OEPE to develop mobile apps for eventual deployment to iOS.

Tutorial apps work fine when deploying to iOS simulator.  Getting an error when attempting to deploy to iPhone for testing.

Created and downloaded a Provisioning Profile:

  • Joined Apple Developer Program
  • On the Apple developer site, created & downloaded a certificate
  • Created & downloaded a Provisioning Profile (which the Apple Dev site shows as 'active')

Set up Eclipse Preferences:

  • Eclipse / iOS Mobile Provisions: pointed to Mobile Provision File
  • Have Entitled Application ID
  • Pointed to Certificate
  • Debug Configuration points to iOS Deploy Target (iTunes (for device deploy))
  • Debug points to Provisioning Profile.
  • NO ipa file designated

During Debug, the application builds successfully.

Then, the build fails:

** ARCHIVE FAILED **Code Sign error: No matching provisioning profiles found: No provisioning profiles with a valid signing identity (i.e. certificate and private key pair) were found.

Anyone know where to start to figure this out?

THANKS!!

This post has been answered by J.Tarka on Nov 13 2015
Jump to Answer

Comments

Alex Keh-Oracle

I filed an ER 29798071 for my dev team to discuss whether to implement your suggested change. I'm not hopeful though as Oracle does not implement LINQ and does not control significant aspects how it generates SQL.

user1075044

Ok, Thanks !

For information the Devart  driver generate this SQL for isNullOrEmpty :

using (var db = new BloggingContext())

{

    var blogs = db.Blogs.Where(b => !String.IsNullOrEmpty(b.Url));

    Console.WriteLine("Url = " + blogs.FirstOrDefault().Url);

}

SELECT "b"."BlogId", "b"."Url"

  FROM "Blogs" "b"

WHERE ("b"."Url" IS NOT NULL)

  AND ("b"."Url" IS NOT NULL)

FETCH FIRST 1 rows ONLY

1 - 2

Post Details

Added on Nov 12 2015
4 comments
1,195 views