I’ve been through many integration projects and I think now I’ve found a product more complicated than BizTalk. For the last 6 weeks internally we’ve been ‘rolling out’ (more like dragging through the mud) an OCS/UM setup – it now finally works!!!! (Inbound/outbound and UM Voicemail). OCS – goes from 1 sever to 3! In this post I’ll aim to take you through linking a working OCS system to a Trixbox connected to MyNetFone (SIP Trunk provider). After countless weeks, forum posts and beyond weird error messages – I’ll simplify it for you. Me – no OCS, SIP, Trunk, Asterisk expert – great developer, can look at network packets if I *really* have to. I’m assuming you have OCS setup for IM and A/V between Communicator clients. The OCS Mediation Server is where we are going to focus a little bit also. Ok – what I wanted to do…this sounds simple. The Aim: - OCS (Mediation Server) connecting to my Virtual PBX ‘PSTN’ so phone calls can go inbound and outbound.
- Create SIP Trunk ‘connection’ to our SIP Trunk ‘provider’ – in our case MyNetFone.
SIP Trunks are similar to regular VOIP Accts, but a trunk allows you to have multiple voip numbers running over it. Similar to Proxy Servers for ‘http’ connections.
Generally speaking the SIP Trunks going externally need some form of authentication with the external SIP Trunk provider. This can come in many forms from username/pass, to special ‘secrets’ being passed in certain packets.
This took me some time to get right. - Each user will be assigned a phone number (from the SIP Trunk) and all devices/phones/users will be managed by OCS.
The Problem(s): - OCS talks SIP/TCP and ‘the rest of the world’ talks SIP/UDP. Some translator is needed here – raging debates about this, but essentially we’re dealing with the last 40 odd years of the evolution of telephony systems.
In short – get Trixbox 2.8… based on Asterisk 1.6 this DOES the translation. (Trixbox performs a huge array of functions, but with OCS in place we really need it only to do about 5% of it’s feature set – hence alot of the menu items we needed worry about) - The bits you’ll need before you start:
- IP:X = IP address of your Mediation Server (if your server has multiple IP Addresses select the IP Addr that will be sending out (eventually) your Trixbox
- IP:Y = IP address of your new Trixbox Server (to install)
- External SIP Trunk Details (or VOIP acct details)
- OCS 2007 R2 Resource Kit Tools installed on the Mediation Server - http://www.microsoft.com/downloads/details.aspx?familyid=9E79A236-C0DF-4A72-ABA6-9A9602A93ED0&displaylang=en
- great log analyser tool called snooper.exe - Putty.exe – this allows you to ‘rdp’ onto your new Trixbox (as this is a linux box)
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
- Plan of Attack – what I’ll walk you through below.
- Installing Trixbox – taking a fresh install and configuring.
- Turning on SIP/TCP support in Asterisk 1.6
- Creating 2 SIP Trunks in Asterisk 1.6
- Configuring the Next Hop Properties in OCS Mediation Server
- Check the Settings in the Asterisk World.
- Creating the Routing between the 2 Trunks by editing the Extensions_Custom.conf file.
- Sample successful outputs.
- Installing Trixbox
This piece is pretty simple – for our test case I installed this onto a Virtual Machine (in practice it’s generally advisable to install this on a physical machine, as the trixbox needs to use codecs and encode/decode which a typically time dependent)
It’s an ISO so install it as you would any other ISO – it in a unix box but don’t be nervous, the Trixbox guys have put a great web interface over alot of the underlying stuff.
Important to note: Seeing Trixbox is open source and is based on another product called ‘Asterisk’, which in turn has components such as FreePBX and others, sometimes reference material for FreePBX may be applicable to your Trixbox.
NOTE: I called my trixbox = xlator
Installation Complete: Once initial installation is complete (if installing to a VHD the size is around 6GB), you should be able to go a browser and do:
(at some point you’ll probably want to change your ‘root’ password and also a user called ‘maint’ which is used in the webinterface to perform admin tasks)
http://xlator (the default install will also setup https://xlator for you)
As shown, we’re interested in switching to ‘maintenance mode’ clicking switch in the top left hand corner. - Configuring the Trixbox environment
- As I mentioned earlier, we’ll only use about 5% of what Trixbox does. There’s some really key areas to make sure are setup and I’ll show you what they are.
- Turning on SIP/TCP capabilities for Asterisk
Currently this isn’t a web interface checkbox, we need to modify a file called sip_general_custom.conf found in the /etc/asterisk directory. (the web interface has web config editor which we’ll use later with so many config files we can edit, *unfortunately* SIP.CONF isn’t one of them. - Fire up Putty.exe (from your windows client) and type the address of your Trixbox in
and hit OK, (you may be asked to OK a Security Token with the remote machine – part of SSH, just OK that) - Login with root and the password you setup during the install. (welcome to the world of command lines – brings back the uni days, grep, ls, chmod…. gee how I missed it)
- cd to the /etc/asterisk directory as follows
- Type nano sip_general_custom.conf and add the following lines:
Press Ctrl-X then Y then press return to complete the save (pretty simple here really) - Type cd /root to return back to your home directory.
- Listen to Asterisk with the Command Line Interface. This is sort of the interactive debugger in Asterisk.
type asterisk –r
this will show you what asterisk is doing when it receives calls and trys to dial them out.
sip set debug on – lets you see what’s happening with SIP packets. sip set debug off – turns if off.
*** VERY VERY HANDY when trying to establish connectivity ***
- (another folder of interest is the LOGS directory /var/log/asterisk – handy to keep in mind, but the web interface lets you see the logs)
- Add your OCS ‘Connection’ or SIP TRUNK
- From the Admin Web Interface select PBX Settings (this and PBX Status are the 2 main areas we’ll go into)
- On the next page under Basic (on the LHS Menu) select Trunks
- Select Add Trunk –> Sip Trunk and fill in as follows:
- Leave everything blank or default except for the following sections:
- Key information above:
- Trunk Name – Connect-with-OCS. This name is used later to basically ‘route’ incoming calls from our ‘external’ SIP trunk to internal. (you can call it your own name if you like – just keep things simple)
- context=from-Super-OCS. In all my troubles, contexts in Asterisk are the solution. This I set so that it won’t conflict with any other ‘system’ contexts (e.g. from-pstn, from-internal).
When a call is received via the trunk, in our case from OCS mediation server sending out, Asterisk will associate a context with it (if not, you’ll get ‘received number from an unknown peer’)
The key here is that we will create a section in a config file that will allow us to define *exactly* what happens around this context. (this piece took another week) - host=10.1.1.30 – this should be the IP Address of YOUR MEDIATION server. Asterisk will use the IP address of the incoming SIP request to try and associate it to a context, without this entry, your request will come from unknown.
- Inbound/Outbound – inbound messages are messages received at Trixbox FROM OCS. Outbound Messages are messages send to OCS FROM Asterisk. They are then given a context and any other details needed.
- Save the above configuration by going to the bottom of the page and clicking Submit Changes.
- You should have your first Trunk (don’t apply changes yet, we’re creating another Trunk)
Notice these names above (I’ve got the 2nd one added too, you’ll have 1 at this point)
Later we will ‘Dial’ calls out to these trunks with syntax like: Dial(SIP/<the number/extension>@Connect-with-OCS)
(took me 2 days to find that gem)
- Creating your External Trunk – MyNetFone (in my case)
This is where alot of the magic happens for the REGISTER SIP packets – if you have trouble with your external provider, sit with SIP SET DEBUG ON in the ‘asterisk –r’ interface in the PUTTY app to try and make heads or tails of it.
Also you can see failures in the logs and your SIP Trunk won’t be registered in the PBX Status screen. - Click on Add Trunk –> SIP Trunk
- Fill it in as follows (for MyNetFone) (took me a bit of trial and error)
- General Settings
- Outbound CallerID: "61555555555" <sip:61555555555@<your public IP>
the 6155… number *should* be replaced with your own number allocated to your TRUNK.
Your public IP is potentially NAT-ed from your Trixbox to the outside world. The web admin will show you your Public IP in the Top RH Corner. - Never Override CallerID=checked
(I’m currently still playing with this setting, but this works for now) - Rest defaults until
- Outgoing Settings
- Trunk Name=MyNetFone (important to remember your name)
- PEER DETAILS
disallow=all allow=alaw&ulaw authname=61555555555 canreinvite=yes dtmfmode=rfc2833 host=sip20.mynetfone.com.au insecure=very nat=yes pedantic=no qualify=yes type=peer username=61555555555 fromdomain=sip20.mynetfone.com.au context=from-MyNetFone - Note the context=from-MyNetFone which is one of the most important things here.
Also the ‘canreinvite=true’
Note: 61555555555= should be replaced with <your user name or phone number> - In honesty this section took me about a week to work out – nat on, off?? tweaks here and there. You’ll see other posts that include ‘secret=…’.
My setup didn’t require this.
- Incoming Settings
- User Context=from-MyNetFone
- USER DETAILS
canreinvite=yes fromuser=61555555555 insecure=very qualify=no type=peer username=61555555555 host=sip20.mynetfone.com.au context=from-MyNetFone Note: 61555555555= should be replaced with <your user name or phone number>
- Registration
- Register String = 61555555555@sip20.mynetfone.com.au/61555555555
- Click Submit Changes to save your work.
- Click Apply Changes to apply changes
- You may get a warning – continue with Reload.
- Well done – at this point we’ve setup 2 trunks and we now need to ‘route’ calls between the two.
Trawling the forums, if you set the context to from-internal any call received on the Trunk, Asterisk will examine all other trunks for a possible match. Let’s not confuse the issue right now :) - Let’s Config OCS Mediation at this point – we can really do this any time, but the screen shots I’m showing you shortly will have OCS Mediation plugged in. So let’s do it.
- Jump onto your OCS Mediation Server and open up the OCS Server Admin tool as follows:
- Points to Note here: we’re interested in the next hop settings.
- Right Click on your Mediation Server and select Properties.
- Configure as follows:
- Under PSTN Gateway next hop – the address: xlator
(you should have internal DNS resolution to your trixbox) - Click OK and restart the Mediation Service (right click on the server and select stop, then start)
- Let’s flick back to the Web Admin of the Trixbox to see how things are going.
- Check that all things are setup and working – mainly your Registrations.
- The Web Admin in Trixbox gives a detailed view of what’s going on, also your Putty.exe session should be chatting away nicely – what it means, is another story!
- From the Web Admin –> PBX –> PBX Status to see something like…
The Key areas that you need to keep an eye on are: - SIP Peers – make sure that under Hosts there are no Unknown(s), as call routing won’t work the way I’ve outlined.
- Our connection with OCS doesn’t need to be registered.
- Our External Registration *should* be Registered by now – if not, go back to your trunk and configure the Outbound Settings and the Register String at the bottom of that page. ** DON’T MOVE ON UNTIL THIS IS COMPLETE **
- If you’ve set your dialing rules up in OCS on the Mediation Side, you should be able to dial a number and see activity in the Trixbox logs and in your Putty Terminal.
- Almost there…..
- Setting up Call Routing between our two worlds.
At this point we could setup a bunch of extensions, inbound routes, outbound routes etc – and I did do that the first time through (10 users, 10 numbers, inbound routes etc etc – just pain).
I thought there’s got to be a better way and here something that took 1 week to figure out – Trixbox forums are a great place to start with all of this, but they tend to be focused around building Trixbox out as the ‘OCS equivalent’, setting up receptionists, etc etc. I found I was spinning my wheels alot here, make a tweak, doesn’t work, read the forum, make another change, go back and redo a change etc.
Here’s the simplest solution I’ve found: (for the code syntax – this was a great place to start) - From the Web Admin select PBX –> Config File Editor and select extensions_custom.conf
(you will have to scroll down this list, but it’s there) - Scroll to the bottom of this file until you find the line
#include extensions-away-status.conf - Insert this code above that line.
- Setup OCS/Communicator clients Dialling OUT
[from-Super-OCS] exten => _X.,1,Answer exten => _X.,2,Dial(SIP/${EXTEN}@MyNetFone,,tr) - What does this do??? yeah good question…had to ask myself that as well.
Ok – hopefully you recognise the from-Super-OCS text in []. Remember from our OCS Trunk, anything that Asterisk/Trixbox receives FROM OCS via that Trunk was associated with this Context.
So what we’re saying here is that “If you have a message from from-Super-OCS do the following steps” - exten => _X.,1,Answer
exten = something to do with when Asterisk goes searching for the right extension that matches the one that it has been given.
_X. = saw this on a few other config files, it’s part of a dialing plan, X=any digit, . = any number of following digits.
This will match *all* numbers dialled.
_ = no idea (maybe some pattern match)
,1 = believe it or not, this is how we say “run me 1st”
Answer = predefined function or application that will pickup the call. We can then work out what to do with the call. - exten => _X.,2,Dial(SIP/${EXTEN}@MyNetFone,,tr)
_X. = match all numbers.
,2 = run me 2nd
Dial(SIP/${EXTEN}@MyNetFone,,tr) = here we’re dialling a SIP trunk – called SIP/MyNetFone. Later if you look at your SIP TRUNKS page, you’ll see your Trunks listed this way.
What I wanted was SIP/<number to dial>@<outgoing trunk name>
${EXTEN} = variable that holds the ‘extension’ dialled from the communicator client. This is the phone number.
NOTE: sometimes parties at the other end of the trunk want a certain dial prefix e.g. +61… you could use something like: Dial(SIP/+61${EXTEN}@MyNetFone)
The '+61’ & ${EXTEN} get appended together in the above line.
,,tr = something to do with allowing the calls to be transferred.
I originally didn’t have this, and my inbound calls to OCS worked, then when I tried to transfer them the Exchange UM Voicemail, they hung up.
I added this in for inbound and Exchange Voicemail worked, so I figured it can’t hurt for outgoing.
How fiddley is all this stuff!!!
- Setup External Calls Coming to OCS
According to my OCS Expert buddy Dan, our internal OCS setup is such that all extensions have a +61… appended to them. the ‘+’ in ‘+61’.
Checking on the ‘asterisk –r’ interface, MyNetFone will pass 02… and not +612…. So I needed to do a little tweaking of these numbers.
Here’s the result :) - Below the code you’ve added above add this.
[from-MyNetFone] exten => _0X.,1,Set(numDialled=+61${EXTEN:1}) ;get all but the first digit from the Extension dialled. exten => _0X.,2,Set(__FROM_DID=${EXTEN}) ;sets a global variable. exten => _0X.,3,Answer exten => _0X.,4,Dial(SIP/${numDialled}@Connect-with-OCS,,tr) exten => _X.,1,Set(numDialled=+61${EXTEN}) exten => _X.,2,Set(__FROM_DID=${EXTEN}) exten => _X.,3,Answer exten => _X.,4,Dial(SIP/${numDialled}@Connect-with-OCS,,tr) Note: firstly from-MyNetFone in the above code, once again this is the context from our corresponding Trunk. exten=> _0X.,1,Set(…) = the _0X. here will match all the numbers passed to us from MyNetFone with a ‘0’ at the front. e.g. 02… – so I need to strip the ‘0’ off and add +61(0)2…
Here I created a local variable called ‘numDialled’ to hold the translated number. You can see the ‘+61’ added to ${EXTEN:1}.
${EXTEN:1} = give me all numbers except the first. - Your file should look like this now:
[from-Super-OCS] exten => _X.,1,Answer exten => _X.,2,Dial(SIP/${EXTEN}@MyNetFone,,tr) [from-MyNetFone] exten => _0X.,1,Set(numDialled=+61${EXTEN:1}) ;get all but the first digit from the Extension dialled. exten => _0X.,2,Set(__FROM_DID=${EXTEN}) ;sets a global variable. exten => _0X.,3,Answer exten => _0X.,4,Dial(SIP/${numDialled}@Connect-with-OCS,,tr) exten => _X.,1,Set(numDialled=+61${EXTEN}) exten => _X.,2,Set(__FROM_DID=${EXTEN}) exten => _X.,3,Answer exten => _X.,4,Dial(SIP/${numDialled}@Connect-with-OCS) #include extensions-away-status.conf
- Click on Update to save the file.
- Click on ReRead Configs from the top menu. You may need to scroll to the top.
- You’re Asterisk/Trixbox is ready to go!
- What Successful Calls Look like here: (you can get these from your Putty session, running ‘asterisk –r’
- OCS client going OUT
I’ve scrubbed the actual number dialled, but you can see where the number appears, the fact we Answer, and then Dial.
Also where the ‘Contexts’ appear.
- Inbound to OCS
In conclusion:
Hopefully this will help unravel the huge mystery on how to connect these systems together. There’s many other ways this can be achieved, and I’d love to say it’s the silver bullet for this, but there’s just so many factors in your solutions. This should certainly get you a large step down that path. Good luck. Mick.
Folks if you’re wanting to check out some of the things coming down the pipeline, check out these….
All available from the SharePoint 2010 site
SharePoint Office 2010 snippets (finally make calls from Communicator Mobile :)

This was being sent around our office today that I thought I’d just have to share with you…. My first thought was ‘photoshop’….but one of the South African born Girls here swears black and blue that this is normal. Everything about this picture is wrong…at any point the goat could say “forget this…I don’t have the right shoes on” (he would probably bleat it out to his mates) Just goes to show….we’re limited only by our own minds… Thought for “Micks Day”
Hi folks, been a little quiet on the blogging front lately as myself and other BizTalk Industry experts have been busy creating a Series of Webcasts focused on BizTalk 2009 features.
I came up with this idea 3 months ago and we’re finally almost through the other side – all the guys gave up their own spare time to share their field expertise and knowledge. The line is great! comprising of MVPs and field experts whom have got runs on the board. I hope you enjoy the series, there’s a couple that are still to come, but we can’t hold it back any further. You can see them all here - http://cloudtv.cloudapp.net/Default.aspx?category=BizTalk (Alan Smith has been very kind to offer hosting) – NOTE: not all the webcasts here are part of the Series, most are :) (I’m working on getting a sub-category) | Name | | Title | Cloud TV Link | PowerPoint | Demo Code | | Richard Seroter | 
| Lap Around the ESB Toolkit 2.0 | 
| | | | Mick Badran | ![clip_image002[1] clip_image002[1]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0021_thumb.png)
| Integration With SharePoint from BizTalk | 
| 
| | | Mick Badran | ![clip_image002[2] clip_image002[2]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0022_thumb.png)
| Implementing BizTalk RFID Mobile Solutions | 
| 
|  | | Kent Weare | ![clip_image002[3] clip_image002[3]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0023_thumb.png)
| Creating a Highly Available BTS 09 Environment | 
| 
| | | Kent Weare | ![clip_image002[4] clip_image002[4]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0024_thumb.png)
| All you need to know about the SAP Adapter | 
| 
| | | Alan Smith | ![clip_image002[5] clip_image002[5]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0025_thumb.png)
| Improving BizTalk Orchestration Performance | 
| | | | Alan Smith | ![clip_image002[6] clip_image002[6]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0026_thumb.png)
| BAM Essentials Part 1 - Activities | 
| | | | Alan Smith | ![clip_image002[7] clip_image002[7]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0027_thumb.png)
| BAM Essentials Part 2 - Views | 
| | | | Thiago Almeida | ![clip_image002[8] clip_image002[8]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0028_thumb.png)
| All you need to know about the SQL Adapter | 
| 
|  | | Miguel Herrera | Field Expert | All you need to know about the Oracle Adapter | (direct link)
|  | | | Mark Brimble | Field Expert | HL7 Revisited, a look at the HL7 accelerator |  Direct Link
| 
| | | Zeeshan Shan | Field Expert | BizTalk…Creating Value in the Developer World | (coming soon) |  |  | | Mike Stephenson | ![clip_image002[9] clip_image002[9]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image0029_thumb.png)
| ALM Part1 – All about Tesing |  Direct Link
| 
| | | Mike Stephenson | ![clip_image002[10] clip_image002[10]](http://blogs.breezetraining.com.au/mickb/content/2009/UnofficalLaunchoftheBizTalk2009LightandE_1C5/clip_image00210_thumb.png)
| ALM Part2 – Implementing an Automated Build Process with BizTalk Server 2009 including the build server and continuous integration together |  Direct Link
| 
| | | Scott Scovell | Microsoft Virtual TS | Implementing BizTalk RFID Solutions |  Direct Link
| 
| | | Scott Scovell | Microsoft Virtual TS | EDI teaching the old dog new tricks with BTS 2009 |  Direct Link
| 
| |
He lives in NZ…he loves Auckland and he successfully got married last year… Ready to take on the world – I want to congratulate one of the hardest working BTS experts I know… He puts in a tremendous effort for the local community and is always ready for new ideas. Well done mate and a big congrats from this Aussie!!! Thiago Almeida – BizTalk MVP!!!!!

I got a message from my colleague Scotty showing off some new app for his iPhone. This new app was showing that he could bring up on his iPhone some xbox 360 live info. I thought damn that would be nice to have on my HTC Touch phone….so I went searching… and came up trumps! Where it all happens is here - http://www.zumobi.com/getzumobi/xbox/
Click on the appropriate link and you’re well on your way! - from my htc phone and finally after install… 
Well folks – that pain point SPAM, it’s normally pills, sniffers, adding inches, removing inches…
Lately I’ve been getting…”Just confirming for the online event X that is happening in 2 days <blurb> Click Here” This latest one I had to share with you…
Essentially the SPAMMERs formula is… <Send Email><Add Words to Make User Click><Provide Dodgey Links that will track you for life><End Email> Sent from a gmail acct (that makes it real… :)
----------------------- Princeton Global Networks <http://rm.resultsmail.com/customers/BGInc/img/new%20logo.jpg> Dear Mick Badran, It is my pleasure to inform you that you are being considered for inclusion into the 2009/2010 Princeton Global Networks "Honors Edition" of the Registry.
The 2009/2010 edition of the Registry will include biographies of the world's most accomplished individuals. Recognition of this kind is an honor shared by thousands of executive and professional men & women throughout America and the World each year. Inclusion is considered by many as a very high mark of achievement. Upon final confirmation, you will be listed among a select few of accomplished individuals in the Princeton Global Network Registry. There is NO cost to be included in the Registry as a basic listing. For accuracy and publication deadlines, please complete your application by using the link provided below and submit your information to us at the earliest opportunity. http://www.formdesk.com/pgn/New (Link has been modified as it contained GUIDs that I reckon verify my addr)
On behalf of the Managing Director, we wish you continued success. Sincerely, <Bugs Bunny> Editor in Chief
Ok – during these more challenging times (who doesn’t love trying to get that Suduko puzzle of life out). Breeze went into bat for you – my passion and first love (or should I second love – my wife could read this) – the Student!!
Microsoft and Breeze Partner to bring you…
Microsoft and Breeze are bringing you this special SharePoint Training offer during June & July only. This is part of a campaign to help businesses use their existing Microsoft technologies to gain business efficiencies during these economic times. Being better connected internally as well as externally can save businesses’ time and money. I will show you how Microsoft Office SharePoint Server 2007 can help you achieve just that as SharePoint 2007 has some features we think you shouldn’t live without!
I will focus on delivering a ‘real world’ experience as well as having a strong training component. The things I instruct on have to work for me in the field as well!
This four day, intense workshop is designed for IT Professionals and Developers needing effective skills transfer for the new products and technologies delivered with Microsoft Office 2007.
You will have the opportunity for 'hands-on' experience to Develop, Customise and Integrate solutions on the Office 2007 Platform as well as gain experience from the field. This course has been heavily subsidised by Microsoft at a cost of $1300 ex GST (RRP $2480 ex GST) and is filling up quickly. For more information and registration go here: https://www.microsoft.com.au/events/register/home.aspx?levent=344938&linvitation -----end the blurb ----- Note – Microsoft Partners can use their Readiness training $$ towards this course.
Chances are you’ve got the technology, got the MOSS environment and now needed to extend and explore.
What a great deal…I’ve still kept my first born ;) See you there… Mick.
Hi folks, Much more of the BTS09 material (documentation etc) is starting to appear in the masses from MS. Grab it Here and there are a bunch of others you’ll love to get also. BizTalk 2009 Posters p.s. I’ve also added all the Install Guides and all the PDF posters within the ‘CSD Bits’ Mesh Folder. Cheers, Mick.
My good friend Chris Vidotto a once fearsome BTS warrior came up with the good oil on this. The BPA tool now supports bts09, sql08 and win08 in one update, as well as all the previous environments. The tool will go through and examine your environment in accordance to a predefined set of rules (shipped with BPA) and report back accordingly.
Grab it now… from HERE Mick.
Hi folks – from a previous post where I fudged a DLP-RFID1 x64 driver, I’ve now tracked down ‘proper’ 64 bit version of the DLP-RFID1 Reader. Here it is here - 1. From this page http://www.ftdichip.com/Drivers/VCP.htm download the CDM 2.04.16.exe which does the trick. 2. Double click on the above EXE to install the drivers (the EXE will detect your OS is x64) – the driver is then installed on the machine, but not auto assigned to your RFID1 device. 3. From Device Manager, right click on the DLP RFID1 Reader and select ‘Update Driver’, select ‘Browse on My Machine’ and ‘Select from a List’ (near where you say ‘have disk’). 4. From the Manufacturer list select ‘FTDI’ and select the very top Driver on the RHS (USB Serial Converter) 5. Unplug and replug your RFID1 Device – and viola! all good. 6. Run this Test app RFID1Demo.exe to make sure all is good from http://dlpdesign.com/rfrdr/ NOTE: On my machine I still have an unknown Serial device in Device Manager, but all works none the less. 
First time I’ve got this error… Wonder why 30 secs is the key.
I think I might put the 30 second retry on my application exceptions :) 
|