Forum Replies Created
-
AuthorPosts
-
November 23, 2012 at 9:37 AM in reply to: how to change encoding in Schema for Special Character? #25928
I have the same problem
TITLE: BizTalk Server Administration
——————————
Could not store transport type data for Primary Transport of Send Port 'SendPort' to config store. The specified transport handler has been deleted from the SSO store. The local, cached version of the BizTalk Server group configuration is out of date. You must refresh the BizTalk Server group configuration before making further changes. (Microsoft.BizTalk.ExplorerOM)
For help, click: go.microsoft.com/fwlink
When am trying to start my applicatn am geting this error message. please let me know how to solve it
Are you deploying it via Visual Studio. If yes then check the SQL settings in Project properties and you have access to the SQL Server.
Use OleDB provider for TeraData.
November 21, 2012 at 7:42 AM in reply to: Extracting Body,Inline Images and attachments from Email by using POP3 in Biztalk #25924Hi ,
Sorry for the late reply.
First you need to configure Pop3 Adapter to recieve the email from the mailaddress.
The Email Message coming into BizTalk will be a MultiPart message with diffeent parts corresponding to Image/Attachment.
This should help.
http://www.biztalkgurus.com/…/how-to-split-received-email-attachments-in-biztalk-2006.aspx
Use a EDI Send Pipeline with File Adapter on the SendPort.
Configure the SendPort/File Adapter to the Sample folder.
Anyday BizTalk 2010 would be better.
Go through these tutorials first. It will clear things about how EDI works in BizTalk world.
You can read more here.
msdn.microsoft.com/…/bb226440.aspx
Answers are below
1. Yes BizTalk supports any Adapter to receive EDI files as EDI Validations/conversions are now handled at Pipeline level.
3. Credentials can be validated inside the Orchestration.
If you want full control over the message then its good to get it into the Orchestration.
You can use Request-Response HTTP Receive Port. So the source will be waiting for a response.
Add a Header section to the Canonical Schema which has a field called "Destination" and promote it as Property field.
Map this field in the Incoming Map.
So, basically, when a message arrives, the receive pipeline is executed, then the map is executed and at the end, the XML disassembler is executed by the transformation engine to get all promoted fields in the destination message promoted
Adapter provided in BizTalk Adapter 2010 does support the following Oracle versions
Oracle 9i (9.2.0.2)
Oracle 10g (10.1.0.2.0 & 10.2.0.1.0)
Oracel 11G Release 2
November 19, 2012 at 6:11 AM in reply to: Biztalk 2A1 MSG picked up but not processed by BizTalk Application1(Rosettanet) #25919Hi,
If I read the error details, then I can cleary see the following:
Details:
Finding the document specification by message type “schemas.microsoft.com/…/Pip2A1ProductCatalogInformationNotification.dtd failed. Verify the schema deployed properly.
I’m not familiar with DTD schemas but it sounds like your DTD schema it not present in BizTalk server. Can you find it under All Artifcats/Schemas?
Why don’t you use an xsd schema? You can convert the DTD (depricated) to an xsd schema.
using Biztalk 2010 utilities to convert DTD files to XSD files
Regards
November 19, 2012 at 5:18 AM in reply to: Biztalk 2A1 MSG picked up but not processed by BizTalk Application1(Rosettanet) #25918anyone?
November 19, 2012 at 12:51 AM in reply to: Can deploy Map and Schema to existing BizTalk solution? #25916November 18, 2012 at 8:48 AM in reply to: BizTalkMessageBox_Log is Crossing 80GB in Production Environment #25915Hi,
When the log file is extremely large, then this is signal that something is wrong with your biztalk (sql) servers and you should investigate this. When time is not your friend, you could shrink the log file by using the following command. Make sure that you have stopped the host instances and the sql server agent!
sp_helpdb ’BizTalkMsgBoxDb’
ALTER DATABASE BiztalkMsgBoxDb
SET RECOVERY SIMPLE;
GO
DBCC SHRINKFILE (BiztalkMsgBoxDb_log, 1);
GO
sp_helpdb ’BizTalkMsgBoxDb’
GO
ALTER DATABASE BiztalkMsgBoxDb
SET RECOVERY FULL
GO
November 18, 2012 at 8:10 AM in reply to: BizTalkMessageBox_Log is Crossing 80GB in Production Environment #25914Hi, Thanks again for your kind response, I verified backup job is configured correctly. If I shrink the BizTalkMsgBox_Log database to some 10GB or 15GB. Is that ok?
Hi,
Do you mean the old (depricated) Oracle adapter of the new one, using the WCF binding?
The WCF Oracle adapter supports 10g. If you need more information, let me know.
Regards
-
AuthorPosts