flex 4.5.1:Access file from server - blazeds

I am working on flex mobile project using flex 4.5.1. I want to get data from file (which is placed on server) only if the file is modified. I think I can use blazeds for this purpose, But I dont know how to do this. I am searching it in internet. please guide me

http://help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c46c45e7b4120d413dc14-8000.html
http://www.switchonthecode.com/tutorials/flex-using-item-renderers
hope the above links would help you.

Related

Syntax Digram DITA - EDITED

I am really struggling to make syntax diagrams work. Our company got the sources dita files from IBM. Many docs have a lot of syntax diagrams inside, and tried with the latest DITA-OT kit and it doesnt work. Can someone help me on how to get the syntax diagrams work?
I downloaded the plugins from https://github.com/robander/svg-syntaxdiagrams and put it in the plugins folder. Added the plugins to the plugin.xml file, and edited the integrator file as well, but I am not getting the output. I have done something wrong, and not able to sort it out.
Grateful if somebody help me out in this case.
EDIT: As per suggestion, i tried and it didnt work. I tried with a fresh DITA download without my company plugin, and it worked fine. So think I have a problem with my plugins and associated files. Will look more.

Zxing - Where I can find these files? zxing-all-in-one.cpp and zxing-all-in-one.h

I'm using worklight for my mobile app project. My problem is, I dont know where I can find these files (zxing-all-in-one.cpp and zxing-all-in-one.h) for barcode scanner integration with worklight in Xcode5. Since ChildBrowser plugin alreade deprecated, check this out. https://github.com/phonegap/phonegap-plugins/tree/master/iOS/BarcodeScanner
I read through this blog regarding to zxing integration with worklight.
http://sajjad-hussainsh.blogspot.com/2013/05/ibm-worklight-phonegap-barcodescanner.html
https://github.com/wildabeast/BarcodeScanner/tree/master/src/ios
This link will give you both the required files

Can not generate XML documentation help file with Sandcastle (SHFB)?

I have a C++ MFC project with only classes and no namespace.I want to create a Help file from XML documentation. I was trying to do that using Sandcastle help file builder and the visual studio generated document XML file. But each time I try to build the help file it shows :
SHFB: Error BE0033: No APIs found to document. See error topic in help file for details.
Is it not possible for Sandcastle to create documentation for this kind of project (i.e no namespace used).I am a beginner in this part so not sure if I am going in right direction at all or not. Any kind of guide is highly appreciated. Thanks.
If the classes are not public you'll have to enable DocumentPrivates and DocumentInternals in the project properties. This can be changed within the 'Visibility' section.
This FAQ answer may be helpful.

How to implement QuickFix with my c++ project

I'm new to the Fix protocol and I've been trying to find a way to implement it into c++ files starting from a XML description file. So by searching on the net they recommended me with Quickfix, what I really want to know is what do we should call QuickFix? A library or a standard or what exactly?
But my main problem is that lately I downloaded the Quickfix package then I couldn't integrate it into my c++ project even with the QuickFix documentation ( which was vague by the way !) so can someone please describe to me exactly step by step how to configure QuickFix with My Visual c++ project and how can I eventually write this code to parse my XML file:
#include "Application.h"
#include "quickfix/Session.h"
Quickfix doesn't understand XML or parses XML, except for the message bank config file which is in XML. It only deals in FIX formatted strings. You have to use a XML parser i.e. xerces, libxml++ to extract your data in the XML file and then construct a FIX message using the Quickfix library and send wherever you want to.
Fiximate is a more user friendly place to check your FIX messages for correctness. There are examples in the Quickfix library to test an application, and you would need a config file to run it, examples are provided on the Quickfix website.
FIX is a standard: fixprotocol.org/specifications
QuickFIX is a FIX engine (c.f. Library) implementing the standard.
In the source files that you downloaded there is a set of examples which you can use to understand the operation of the engine. You should use these along side the documentation.
QuickFix is a library. There are other FIX engines also available.
It simplifies the implementation by taking care of many low-level things. All a developer has to do is enhance the APIs for messages.
There are good examples for a quick start and good documentation for a beginner.
To get into more details of QuickFix, code itself is well organized.

open source C++ projects as an addon for Thunderbird

Could you will please tell me if there is open source C++ projects as an addon for Thunderbird? I need to develop one for e-mail processing. Any information on this subject is welcome. Thank you!
Enigmail comes to mind. It has XPCOM components in C++.