As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to write my own SSL socket (CSocket ansestor) with server side certificate validation using Microsoft CryptoAPI.
Can you tell me which book will help me (or any other user friendly source of information)?
This pointer might also help, although it is not a book.
CAPI
I recommend SSL and TLS by Eric Rescorla (author of ssldump) to get a really good understanding of SSL. It provides a great introduction to the protocol and the problems it solves, with the option to go as deep as you want into the details.
I would also strongly recommend not writing your own implementation unless you really have to.
Library CSslSocket - SSL/TLS enabled CSocket
and how it works Creating a Secure Connection Using Schannel
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm really amazed with reactive extensions library created by Microsoft and the MVVM framework 'reactiveui' build on top of it. I would love to use it in my project, but I cannot find any examples of using it in standard applications. I've seen Paul's (creator) blog posts, but what I need is not samples of codes, but sample application.
I want to build windows phone7/ windows 8 application with Reactive-UI, but I would like to know how to exactly use it in the there (not dry 3lines of usage example).
Please let me know if you know any open source examples, where Reactive-UI has been used.
You can check this GitHub repo
In the ReactiveUI.Sample.WP7 folder you can find the Sample application.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I think this is not the appropriate site to ask this question, but I don't have any choices because Google can't answer my question. Or if there is the WOT evaluation is very low. So legitimacy can't be assured.
Is there any free SMS API/Gateway you can suggest? Because our thesis (E-commerce) have SMS Features. Thanks
There are some free “email SMS” gateways that some networks (a relatively small number) provide and they are quite legitimate but...
These gateways accept the lowest priority traffic and operate very slow
and are not suitable for commercial text marketing. Some do appear to work http://en.wikipedia.org/wiki/List_of_SMS_gateways but be warned they are subject to change and usually unsupported by the networks.
You would need any mobile you sent to, to opt into your service.
There are some wordpress plug ins that use free email to SMS gateways like the following
http://wordpress.org/extend/plugins/mediaburst-email-to-sms/
They rely on the wordpress community of users to keep them updated on which networks are working at that time.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm starting to learn network programming in C++ and since the standard library doesn't support networking, I have to resort to one of these. Which do you think is simpler and thus, easier to learn?
They do different things.
If you're looking for HTTP, FTP, and support for a slew of other protocols, then use libcurl. If you want to directly use sockets and implement all your own protocols, then use Boost Asio.
A third choice would be to use the Pion Network Library, which is built on top of Asio. It only supports HTTP, though, and for clients is more of a building block than a ready-made solution.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm a Ruby programmer and need to learn RPG IV because of my current project. I want to learn primitive types, data structures, control flows, architecture etc. Online resources are as good as paper books.
What book or online tutorial should I start with?
This Red Book from IBM is still quite relevant today.
IBM i Information Center is the source for the actual documentation.
RPG-L is a great mailing list with hundreds of helpful people to answer all of your questions.
Another link I knew was out there, but couldn't find at first was from Scott Klement who is well known in the IBM i community.
You can run JRuby natively on the iSeries if that's your primary skill set.
There may be some pushback if you have some stodgy graybeards that are afraid of new technology stacks.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I am currently working on software that must emit SNMP traps for SNMP versions 1 & 2 and possibly v3 in the future. I have downloaded several and found them to be either too complex or too simplistic. All I want is to view traps and analyze the data structures within them, and the ability to import my custom MIB's. The best I have found so far is ireasonings MIB Browser, but would be greatful for any nice alternatives.
netsnmp - should do everything you're after, with a variety of language bindings to suit every taste.
The only monitoring tools I've used that utilize SNMP monitoring are Nagios, Zenoss, OpenNMS, and the proprietary product from my company - but they're for full network monitoring.
How many devices are you looking to monitor? If it's only a couple, #Andrew's suggestion of netsnmp may be sufficient.