Posted in 14/01/2011 ¬ 12:16 pmh.ali.sogukpinar
By default JBoss Developer Studio doesn’t come with a Eclipse Maven plug-in. To be able to install m2eclipse plug-in you need to add update sites for m2eclipse plug-in to your IDE. There are 2 update sites. m2eclipse Core Update Site: http://m2eclipse.sonatype.org/sites/m2e m2eclipse Extras Update Site: http://m2eclipse.sonatype.org/sites/m2e-extras For more information please take a look at the [...]
Read the rest of this entry »
Posted in 16/07/2010 ¬ 3:02 pmh.ali.sogukpinar
If you are building RESTful services you may find RESTClient add-on helpful during your tests. You can install the Mozilla add-on from this url. guidelines
Read the rest of this entry »
Posted in 02/06/2010 ¬ 1:38 amh.ali.sogukpinar
Ruby on Rails has build in features for writing to you application log file. You can directly use the logger object for this purpose. Following line when it is executed will print “Hello world” to you log file. logger.info ‘Hello world’ You can use different log levels fatal, error, warn, info, debug . logger.error ‘Hello [...]
Read the rest of this entry »
Posted in 18/02/2010 ¬ 2:00 pmh.alper.sogukpinar
When you write a custom pipeline component, loading entire message into memory should be avoided. If you use Memory Stream for large files, it loads entire message into memory and you may have OutOfMemory exceptions. On the other hand, VirtualStream uses Biztalk’s buffering directory after a threshold value which is specified in object initialization. In [...]
Read the rest of this entry »
Posted in 06/02/2010 ¬ 12:44 pmh.alper.sogukpinar
Whenever a map contains a scripting functoid that uses inline language like c#, BizTalk Map assembly is created in memory. The object in memory is not deleted until the Biztalk service is restarted. This means every mapping operation causes the whole assembly to be loaded into memory. That’s why we must keep maps and schemas in a [...]
Read the rest of this entry »
Posted in 01/02/2010 ¬ 11:23 amh.alper.sogukpinar
Formal Apache Maven site AvaJava Web Tutorials‘ Maven category. Really useful web site, teaches common maven configurations and tasks with screenshots and short explanations Maven: The Definitive Guide published by O’Reilly. It’s free and you can read full content of the book from the website. Both, html and pdf versions are available. partner
Read the rest of this entry »
Posted in 28/01/2010 ¬ 9:15 amh.alper.sogukpinar
My problem is BizTalk Ftp Adapter’s inability to run in 64-bit mode… Actually, this is one of the problems of the ftp adapter but I won’t write about it in this entry, I can live with it…. Out-of-the box Ftp Adapter receive location deletes files from the remote ftp site so it requires write permission [...]
Read the rest of this entry »
Posted in 26/01/2010 ¬ 10:42 amh.alper.sogukpinar
I want to share some of my notes about Biztalk Server 2006 performance in terms of programming and configuration. This is just a startup and I will try to share my future findings about Biztalk performance in this entry. I also put some related links at the end of the entry for detailed information. Change [...]
Read the rest of this entry »
Posted in 23/01/2010 ¬ 12:12 pmh.alper.sogukpinar
While you publish your Schema or Orchestration as a Webservis, You may have routing exception which is one of the many other exceptions most probably you will have A message received by adapter “SOAP” on receive location “WebService_WSUpload/WSUpload” with URI “/WSUpload/WSUpload.asmx” is suspended. Some problems that can cause this problem: The destination orchestration or send [...]
Read the rest of this entry »
Posted in 22/01/2010 ¬ 1:56 amh.alper.sogukpinar
The Maven Source Plugin creates a jar archive of the source files of the current project. The jar file is, by default, created in the project’s target directory. If you want to make a jar file which includes both java sources and class files you can use Resources element as specified below xml snippet. After this [...]
Read the rest of this entry »