Validating Receipts of Mac App Store Purchases including In-App Purchases

For next prerelease we have something new.
We add three new classes: AppReceiptMBS, AppReceiptIAPMBS and AppReceiptVerificatorMBS.

The AppReceiptMBS class allows you to load the receipt from within your own app or from a given file. You can query identifier, app versions, various dates like purchase date or expiration date. Using the AppReceiptIAPMBS class we provide an array of the in-app purchases. For each in-app purchase you can query details like product identifier, purchase or cancellation dates, quantity or the transaction identifier.

Our AppReceiptVerificatorMBS class can verify if app receipt is valid. Either you pass in a receipt, bundle identifier and app version to check if some receipt file is valid for a given app. Or you just ask if the application's own receipt is valid.

We hope this helps Xojo developers using the Mac App Store. As we also have the whole StoreKit framework covered from Apple, you can use the MBS Plugins for a complete In-App Purchase solution.

Plugin will be available soon as part of pr8 or if you like to try it on the weekend, I could email you a copy.

Research Triange Park Group Meeting

we just go notice about a Xojo developer meeting in North Carolina, USA:

Are you in the RTP, North Carolina area? Join @Patrick McCabe and other Xojo devs at the next meeting, 7PM September 8th 2014 at Rally Point Sports Grill!

Jay is going to give a short explanation and demo of Database's in Xojo.

Address for Meeting:
Rally Point Sports Grill
1837 N. Harrison Ave
Cary, NC 27513
(919) 678-1088
rallypointsportgrill.com

It is located right off Interstate 40, in the shopping center across from SAS. They have a private room which is reserved for the group, the room is located to the left when you enter the restaurant.

Join the group for updates on all meetings: groups.google.com/forum/#!forum/rtpnc-xojo-usergroup


MBS Xojo Developer Conference in three weeks

Just three weeks left until the conference starts. If you like to attend, please register soon. We already have participants from 10 countries and the hotel will soon run out of available rooms.

Stéphane Pinel will be present and talk about this topics:

Keynote
  • What happened in 2014
  • Xojo 2014r3, the iOS take off
  • Works in progress
  • What's next?
  • Q&A
Xojo for iOS in deep
  • iOS support in the IDE
  • Introducing the new Xojo Framework
  • Extending iOS support using Declares
Social networks from Xojo
  • When/Why using social networks from your apps?
  • How to do it?
  • Live examples with Twitter & Facebook
The dates:
17th - Xojo Training in German
18th and 19th - MBS Xojo Conference in English
20th - Xojo Training in English

Tip of the day: Weak Property pattern

Often we have to keep properties with references to other objects, but want to avoid circle references causing memory leaks. So we have to have a clear reference tree from root object to child objects. If we want a reference from child back to parent, we need to use a weak reference.

Other use is if you have two windows where one window needs to reference other, but one of the windows should be able to get away without leaving a reference to a dead window. Sometimes we have trouble as a window was closed already, but we have a reference to it. Accessing it causes an exception as controls are dead already.

So how to make a weak property?

First you create the normal property, e.g. test as window. Next you select it to convert it to computed property. The private property created by Xojo now changes type to WeakRef. The setter changes to this:

Sub Set() if value = nil then mTest = nil else mTest = new WeakRef(value) end if End

As you see we now create a weak Reference for the given value. If value is nil, we don't need the weak reference, so we set to nil.
For the getter, we simply take the value from WeakRef the value and return it. We use a variant for easy casting:

Sub Get() if mTest <>Nil then dim v as Variant = mTest.Value return v end if End

The property can now be used like other properties. You don't really notice it is using a weak reference. Just you have to prepare for the case the property is suddenly nil.

MBS Xojo / Real Studio Plugins, version 14.3pr7

New in this prerelease of the 14.3 plugins:
  • Added JPEGData and PNGData to CGImageMBS class.
  • Added MemoryBlock.ConvertRGB12BitTo8BitMBS.
  • Added PDFDocumentMBS.appendPage.
  • Fixed JSONMBS.Constructor. Now creates an empty JSON object. If you need an array node, please use JSONMBS.NewArray.
  • Added containerURLForSecurityApplicationGroupIdentifier and containerFolderForSecurityApplicationGroupIdentifier to NSFileManagerMBS class.
  • Added WindowsTimerMBS class for high resolution timers.
  • Fixed AUPlayerMBS.Pan for older Mac OS X.
  • Added AUPlayerMBS.UseNewTimePitchUnit property.
  • JSONMBS now passes through \u0000 as it can't handle chr(0) in a string.
  • Added JSONMBS.ToString as property.
  • Added DragItem.NSDraggingInfoMBS function.
  • Improved NSDraggingInfoMBS class.
  • Changed NSScrollViewMBS to have properties visible in debugger.
Download: macsw.de/plugin/Prerelease. Or ask us to be added to our shared Dropbox folder.

PS: In newer plugins, the WindowsTimerMBS class got renamed to TimerMBS.

New Timer for Windows

If you use a normal Xojo Timer in your project, you can use periods down to around 16 ms. Even if you select 5 ms, you get about 16 ms. More than 60 action events per second are not possible. See this test project which measures what we get for a timer with 5 microseconds:



Now with next MBS Plugins, we have already prepared a replacement class: WindowsTimerMBS.
This class can provide an action event on main thread much closer to the 5 ms target as you see in this screenshot:



Of course timer can only fire if main thread is not busy, so if you do too much code in action event, the next event may be delayed.
I hope this makes a couple of Xojo developers happy, for example if you want to measure values 100 times per second on a serial port.

PS: In newer plugins, the WindowsTimerMBS class got renamed to TimerMBS.

MBS Xojo Developer Conference in 4 weeks

Just four weeks left until the conference starts. If you like to attend, please register soon. We already have participants from 10 countries and the hotel will soon run out of available rooms.

We still have seats available for training in English and German.

Recently we added a new session about Extending the Framework from Tobias Bussmann. He will also show their huge web app for the Swiss Academy of Sciences made with Xojo.
Finally a few days ago we added a session be Valdemar de Sousa about In-App Purchases in the Mac App Store.

Hotel in Koblenz is reserved for 17th to 20th September 2014.

17th - Xojo Training in German
18th and 19th - MBS Xojo Conference in English
20th - Xojo Training in English

Tip of the day: Autohide scrollbar

If you put this code in a textarea's open event, you get a modern small auto hiding scroll bar:

dim n as NSScrollViewMBS = me.NSScrollViewMBS n.scrollerStyle = NSScrollerMBS.NSScrollerStyleOverlay n.verticalScroller.controlSize = NSScrollerMBS.NSSmallControlSize n.verticalScroller.knobStyle = NSScrollerMBS.NSScrollerKnobStyleDark n.scrollerKnobStyle = NSScrollerMBS.NSScrollerKnobStyleDark n.verticalScroller.scrollerStyle = NSScrollerMBS.NSScrollerStyleOverlay

As you see plugin provides for a lot of framework classes a function to quickly get the plugin counterpart. For Textarea, we provide quick access to NSTextViewMBS and NSScrollViewMBS objects. And on the scrollview the plugin provides all the accessors and constants to do this.

MBS Xojo / Real Studio Plugins, version 14.3pr6

New in this prerelease of the 14.3 plugins:
  • Added XML parameter for WinSpeechMBS class, so text can embed xml commands to control voice.
  • Fixed a bug with PictureMBS, clipping and VM mapped files.
  • Added Audioformat parameter to SpeakFile method in WinSpeechMBS class.
  • Added SQLAnywherePreparedStatementMBS.kTypeNull and SQLPreparedStatementMBS.kTypeNull.
  • Changed SQL Plugin to raise UnsupportedOperationException if you call SQLDatabaseMBS TableSchema or FieldSchema functions.
  • Changed SQL Plugin to raise UnsupportedOperationException if you call update, edit, delete or deleteAll methods on a RecordSet.
  • Added FileListMBS class constructor parameters to filter items on Windows.
Download: macsw.de/plugin/Prerelease. Or ask us to be added to our shared Dropbox folder.

Tip of the day: Windows Notifications

In 2012 we added to our plugins a WinNotificationMBS class. This class was designed to send and receive broadcast messages on Windows between running apps. This way a helper app can send status updates easily to main app. Without the need to setup IPCSocket or other ways of communication.

Now Windows also sends a couple of messages to everyone about certain things. Like you can get a WM_DISPLAYCHANGE message whenever the display setup changed. Also the WM_DEVICECHANGE message informs about devices coming and going.

To use this, get a subclass of WinNotificationMBS and add the GotNotification event. Now listen for messages WM_DISPLAYCHANGE (&h7E) and WM_DEVICECHANGE (&h0219). The event will be called with those message codes so you can check state and update your app.

PS: On Mac you can also get similar events with NSWorkSpaceMBS and NSNotificationObserverMBS.

Xojo 2014r2.1

A few days ago Xojo 2014r2.1 was released. This is the final release to support Carbon as Cocoa will be the only option from 2014r3 on forward. So we are happy that the XmlDocument bugs have been fixed for Carbon target. Any other Carbon bug will probably never be fixed in the future.

For the Webkit support on Windows, Xojo went back from CEF3 to CEF1 version. The newer version had some side effects which made the older version a better choice. For our plugin, well the 14.2 plugins assume that 2014.2 uses CEF3. With 14.3 we put in an auto detect feature, so plugin can see what version of CEF is used and either use the CEF1 or the CEF3 API. So in case you use the Chromium classes from our plugins, be careful.

Database classes got some updates on MySQL, ODBC and SQLite. Like better full text search with unicode support for SQLite.

For Mac App Store the RegEx plugin was fixed, so you can submit again apps using it. See older blog post.

Please also check the blog post about the HandleSpecialURL change in this release.

For the last days, we have been using this version and it's quite stable for our projects here. So we can recommend the update.

MBS Xojo / Real Studio Plugins, version 14.3pr5

New in this prerelease of the 14.3 plugins:
  • Rewrote CPUID detection. Added new methods to CPUIDMBS class.
  • Updated DynaPDF to version 3.0.33.97.
  • Made first changes for future Mac OS X version.
  • Added AUPlayerMBS.Reset.
  • Fixed bug with DataMatrix encoding in barcode generation.
  • Updated zint library to current version.
  • Updated to Portaudio v19 20140130.
  • Updated to OpenSSL 1.0.1i.
  • Fixed problem with NSRunningApplicationMBS objects in dictionaries.
  • Added options for SQLConnectionMBS and SQLDatabase to turn on SSL for MySQL via new options: MYSQL_SSL_KEY, MYSQL_SSL_CERT, MYSQL_SSL_CA, MYSQL_SSL_CAPATH and MYSQL_SSL_CIPHER. If those are set, we pass the strings to mysql_ssl_set function.
  • Added ConnectionHandler event to SQLConnectionMBS and SQLDatabase classes.
  • Fixed GKTurnBasedParticipantMBS.matchOutcome property to be writable.
Download: macsw.de/plugin/Prerelease. Or ask us to be added to our shared Dropbox folder.

MBS Xojo / Real Studio Plugins, version 14.3pr4

New in this prerelease of the 14.3 plugins:
  • Updated LCMS2 to latest 2.7beta0 from 3rd August 2014.
  • Updated LCMS2 used for GraphicsMagick to version 2.6.
  • Fixed issue with NSFileHandlerMBS object and NSNotificationMBS.
  • Improved NSPopupButtonMBS class with more properties.
  • Changed GMImageMBS.SetImageMask to turn set matte = true to make sure we have an alpha channel.
  • Fixed bug with internal NSObject to Variant conversion.
Download: macsw.de/plugin/Prerelease. Or ask us to be added to our shared Dropbox folder.

MBS Xojo Developer Conference

The early bird offer will end 11th August and that is also the end date for the hotel contingent. Please register quickly to make sure you get a room in the hotel.
Also we still have seats available for english and german training.

Hotel in Koblenz is reserved for 17th to 20th September 2014.

17th - training in German
18th and 19th - conference in English
20th - training in English
The biggest plugin in space...

Archives

Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008