One of the tricks to getting custom file names out of the HIPAA Accelerator is to add an extra component in the orchestration.
These are the steps I took to get a custom filename generated from the HIPAA_EDI adapter.
- Created a property schema with a element defined as a string and have it be a context property
- Create an schema with the delimiters that will be defined in the HIPAA_EDI send port with an element that repeats 30 times
- Create both a flat file send pipeline and receive pipeline using the schema defined in step 2
- Create a single element and associate this element with the element defined in step 1
- In the orchestration, assign a variable a time
- From that assigned time do three things in a message assignment
- Assign the BHT_05 from the variable
- Assign a string variable the date as a string in HHMMSSDD format
- Assign the message with the context property created in the property schema
- Create a Correllation Type set to the context property
- Create a Correllation Set defined from Step 7
- Initialize the Correlation Set in the send shape
- Have a recieve shape using the message created in step 2 and have a following correlation set
- Assign the recieved message to a new message and assign the FILE.ReceivedFileName to whatever you want the filename to be
- Send the newly created message out
- Deploy
- Create a temporary folder that you assign the HIPAA_EDI adapter to write to
- Assign a recieve location to the the folder created in step 14
- Use the recieve pipeline created in step 3
- Create a send port using the pipeline created in step 3
- In the file name use %SourceFileName%
- Set the directory to the real directory where the HIPAA file is to be placed
- Bind the logical ports to their respective physical ports
Comments Off
The experts in Redmond have released a troubleshooting guide that might keep you from doing Google searches so much and accidently finding my site!
Comments Off
In setting up the InfoPath forms Server, I successfully installed the SharePoint services application. I then installed and started to configure the InfoPath forms server. I got to the 8th step and it eventually time out stating that it could not connect to the Microsoft##SSEE database, that I needed to make sure that remote connections were enabled.
I went to this KB article and configured the SSEE database for remote connections. I was still getting the error on configuration.
What I ended up realizing was that the SSEE database is an orphaned database that should not be installed. I then needed to uninstall the database and re-configure the forms server. Here are the steps to uninstall the Microsoft##SSEE database:
- In the registry browse to this location: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
- Click on each of the sub folders {GUID} on the left hand column and look at the display name on the right until you see “Microsoft SQL 2005 embedded Edition…”
- Copy the value that is stored as the UninstallString (for example: MsiExec.exe /X{0F51A262-1ADF-4914-B448-78AC58C4178A})
- Open up a command prompt and paste the value and add to the end of the string ” CALLERID=OCSETUP.EXE”
- Example c:\Temp\MsiExec.exe /X{0F51A262-1ADF-4914-B448-78AC58C4178A} CALLERID=OCSETUP.EXE
Comments Off
A client I have been working at has a very large message (150 mb message) that needs to be passed through BizTalk from the results of a stored procedure.
I was continually getting System.OutofMemoryException in the event log.
I read through this article and also this one both sites options did not appeal to me.
Another option is to use custom XSLT instead of the code inside of the map (which seems to stream the entire message into memory).
The solution is actually very easy:
- Create your map
- Inside of the mapper, create all of your links, functiods and everything
- Validate the map
- Take the XSLT that is generated and add it to your project
- In the mapper grid, point to the xslt (by following these instructions)
- Deploy it
It does not process the file very quickly, but it does not error, and I get the output.
Comments Off
A co worker asked me how she could take dlls that were developed by a third party and use them in BizTalk; that requires that they be compiled as strong named assemblies (which they weren’t).
This can be done by using the Type Library Importer. An example is here on how to use Tlbimp.exe.
Comments Off