ragged-rigid
ragged-rigid
ragged-rigid
ragged-rigid
Category » Programming « @ www.digitalpains.net

Archive for the ‘Programming’ Category

Adding Maven Support to JBoss Developer Studio

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 »

For testing RESTful services – Mozilla RESTClient add-on

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 »
tools

Ruby On Rails: Writing something to the log.

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 »
content

VirtualStream and ReadOnlySeekableStream

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 »

Size matters, keep your BizTalk Map Project small

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 »
feed

My Favorite Maven Links

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 »
forum

What is my problem with Biztalk FTP Adapter?

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 »
tour

My Performance Notes for Biztalk Server 2006 R2

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 »

Routing Failure Exception on SOAP and WCF Receive Locations

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 »

How to make jar files include both java sources and class files with maven?

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 »
tools
language
 
content