Hello everyone.
I wonder if you could help me with the following problem:
We have a SharePoint farm consisted of two servers with an NLB (a load balancer), a database server and an index server (4 servers in total).
The issues initially appeared when we were trying to change Search settings via Shared services provider and an error was ...
I have the following generic lifetime manager
public class RequestLifetimeManager<T> : LifetimeManager, IDisposable
{
public override object GetValue()
{
return HttpContext.Current.Items[typeof(T).AssemblyQualifiedName];
}
public override void RemoveValue()
{
HttpContext.Current.Items.Remove(t...
I have created a SSIS-package that imports a file into a table (simple enough).
I have some variables, a few set in a config-file such as server, database, importfolder. at runtime I want to pass the filename. This is done through a stored procedure using dtexec. When setting the paramters throught the configfile it works fine also when...
What is the difference between Java Build Path - Add External JARs Button and Add Variable Button Functionality,
Why its required. Please explain in detail.
...
Hi,
I'm using Apache Commons Configuration library to store my app properties.
I can monitor changes of property file using FileChangedReloadingStrategy and it works perfectly.
What I would like to do is to trigger configurationChanged event of ConfigurationListener when property file is changed.
This case works if I will try to get...
Hi,
I want to assert that my registrations are valid, i.e no dependency is missing and there are no circular dependencies.
I'd like to do that in my application (and not in a unit-test) so I'd be able to fail-fast if the configuration is invalid.
I also want to accomplish that without resolving (and instantiating) all the components - on...
I have following, very simple, XML config for PHPUnit:
<phpunit bootstrap="/_tests/TestAutoload.php">
<testsuites>
<testsuite name="Unit Tests">
<directory suffix=".php">_tests</directory>
</testsuite>
</testsuites>
</phpunit>
How to exclude certain file in this directory from test suite? I tried <e...
Im using the following guide for getting started with rails for ubuntu 9.10.
http://guides.rails.info/getting_started.html
I have installed both ruby and gem.
gokul@gokul-laptop:~$ ruby -v
ruby 1.8.7 (2009-06-12 patchlevel 174) [i486-linux]
gokul@gokul-laptop:~$ gem -v
1.3.6
gokul@gokul-laptop:~$
For rails,
gokul@gokul-laptop:...
I found that in hibernate config file we could set up parameter hibernate.default_schema:
<hibernate-configuration>
<session-factory>
...
<property name="hibernate.default_schema">myschema</property>
...
</session-factory>
</hibernate-configuration>
Now I'm using JPA and I want to do the same. Otherwise I have...
I have the following code and would like to convert a lot of code into configuration settings for WCF. As you can see, the code is using wshttpbinding.
I appreciate any help on this.
try
{
// Provides a unique network address that a client uses to communicate with a service endpoint.
Endpoin...
http://weblogs.java.net/blog/kalali/archive/2010/02/27/how-install-godaddy-certificate-your-glassfish-v3
i have followed this article .
successfully downloaded certificates from verisign .downloaded trial certificates.
now when i try to get using https:// it shows connection not found..
temporarily i have created 192.1.200.104 alias ...
can not find this option in new studio (2010)
...
By default, when you apply changes to a Bugzilla entry, the web interface advances to the next bug in your list.
I would like to disable this feature since it is almost never what I desire, planning to make further updates later. Further, I often update the wrong bug subsequently due to its changing the current bug without my noticing....
I have several different UserType's (org.hibernate.usertype.UserType) in the system. For this question I will focus on the fact that we use Joda time DateTime and its UserType, PersistentDateTime.
I have successfully bound the UserType programmatically to PersistentClass's by:
public void customize(Ejb3Configuration config) {
Iterato...
I love being able to add my own context menus to my application but I've run into a bit of a dilemma, how do I override the menu for my entire app (video player) and also provide the user ability to go into the Silverlight Configuration dialog.
For reference I'm talking about the following dialog box
http://msdn.microsoft.com/en-us/lib...
I have a WinForm app that has inside of the app's config file locations to find files for the app to use as it runs. However, the app will be installed locally for each user so it can't be hard coded. For Vista and Windows 7 the installer puts the app in c:\users\\Documents area. Under Windows XP it puts it in a different location. H...
Hi,
I'm fighting with installation SIP for Python on Mac OS X. Finally after compilation and installation when I run console form folder of SIP (locally) I can import sipconfig, but when I`m in other folder I cant - there is no module called sipconfig.
My question is - Where is folder to which I have to copy modules if I want to have th...
I believe there is a method to write a comment in a file that vim will use to override default tabbing and indent values.
Can someone point me to information about this feature and how to use it?
...
I am attempting to add a WCF web service to my project and each time I add a new web service it adds a new Service Behavior, new Service configuration, and changes the formatting of my web.config.
Is it possible to add a new WCF Web service (.svc extension) to my project without it changing my web.config file? I am willing to add the in...
Currently my setup is:
in my ear META-INF/jboss-app.xml
<jboss-app>
<service>datasource-ds.xml</service>
</module>
and datasource-ds.xml
<datasources>
<local-tx-datasource>
<jndi-name>jdbc/mydeployment</jndi-name>
<connection-url>jdbc:oracle:thin:@eir:myport:mydbname</connection-url>
<driver-class>oracle.jdbc.dri...