Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
173 views

What is the difference between .resolve() and .promise()?

I'm digging into jQuery's deferred features. I've tried several examples on the internet. I understood its concept, but I don't understand the difference between resolve() and promise(). What are ...
7
votes
2answers
373 views

URL's not being resolved when in UserControl (ASP.NET)

If I pass the derived class testA a PlaceHolder that contains a Hyperlink, with a url that starts with a tilde, it resolves it correctly. However, when I pass testB (identical apart from it ...
6
votes
2answers
104 views

Clojure: resolve declares symbol

I get some weird behaviour when checking if a symbol can be resolved. user=> ok CompilerException java.lang.RuntimeException: Unable to resolve symbol: ok in this context, ...
5
votes
7answers
1k views

C++ - statement cannot resolve address for overloaded function

When I types the following as a stand-alone line: std::endl; I got the following error: statement cannot resolve address for overloaded function Why is that? Cannot I write std::endl; as a ...
5
votes
5answers
1k views

In C#, how do I resolve the IP address of a host?

How can you dynamically get the IP address of the server (PC which you want to connect to)?
4
votes
3answers
806 views

Java URI.resolve

I'm trying to resolve two URIs, but it's not as straightforward as I'd like it to be. URI a = new URI("http://www.foo.com"); URI b = new URI("bar.html"); The trouble is that a.resolve(b).toString() ...
4
votes
3answers
307 views

How to speedup perforce auto resolve?

I would like to know how to speedup the perforce auto resolve when doing integration (merge yours and theirs if no conflicts exists). Currently is taking hours for ~5000 files when running it using a ...
3
votes
3answers
458 views

Can class_addMethod in Objective-C work only on a specific instance?

I am trying to write some dynamic code where a user can try calling a method from a specific instance of a class and have it be resolved at runtime. The implementation to retrieve the information ...
3
votes
2answers
119 views

Getting variable by name in C#

Is there a way to get the value of a variable just by knowing the name of it, like this: double temp = (double)MyClass.GetValue("VariableName"); When I normally would access the variable like this ...
3
votes
2answers
1k views

issue with resolving activity for an intent - resolveActivityInfo()

I am using resolveActivityInfo to determine if my app was set as a home launcher: PackageManager pm = getPackageManager(); Intent intent = new Intent(Intent.ACTION_MAIN, null); ...
3
votes
1answer
1k views

Resolving protected resources with Flying Saucer (ITextRenderer)

I'm using Flying Saucer to create a pdf from xhtml, hosted on a tomcat server. Most of the images included in the pdf are publicly available (logos and so on), but some of them are protected behind a ...
3
votes
2answers
503 views

How to avoid copying dependencies with Ivy

I'm looking into using Ivy to manage dependencies but wow - that thing really likes to make multiple copies of jars! It spreads like the ivy in my back yard and is just as undesirable! Is it ...
3
votes
4answers
4k views

Resolve Hostname Error When Accessing Subversion

I get the an error when attempting to do the following commands in Subversion: update, commit, log, list, blame etc. However, diff and info work. The error is the following when using any desktop ...
2
votes
1answer
230 views

how to resolve the issue if application contains an invalid value in adobe flex mobile development?

i am new developer to work on adobe flex mobile development.I have try for SQLite in a sample application on Employee directory.I have implemented code for it then i have lunched the application in ...
2
votes
1answer
297 views

InetAddress.getByName fails behind proxy

I'm trying to resolve a host name to its' corresponding IP. My environment is a mac in a corporate network behind a proxy server, which is configured with a .pac file via the system preferences ...
2
votes
3answers
344 views

Perforce: Linux based 3-way merge/resolve tool?

I'm looking for a Linux-based tool for 3 way merging/resolving, using Perforce. I'm familiar with vim/vimdiff, but I don't know how/if they can be used for 3 way merging. In either case, do let me ...
2
votes
2answers
146 views

IoC Container Unity is messing with me

There is a possibility I'm not understanding how it's supposed to work. Where I start my app I do this: IUnityContainer container = new UnityContainer(); ...
2
votes
2answers
119 views

Relative URL not working in System.Web.UI.UserControl

public class foo : System.Web.UI.Control { public foo() { var a = new HyperLink(){ Text="Test", NavigateUrl="~/abc.aspx"}; this.Controls.Add(a); } } The above code works ...
2
votes
1answer
431 views

Dns.GetHostEntry error conditions and resolution methods

I have a very specific problem concerning Dns.GetHostEntry: A service uses Dns.GetHostEntry to retrieve all IP Adresses of a host, using the name of of the host. This has always worked fine. At a ...
2
votes
2answers
92 views

SVN infinite loop of failures (committing a file)

I am trying to update my changes to some python work onto an SVN server. When I attempt to commit the file to the svn, I get an error that my folder is out of date: "Transmitting file data ...
2
votes
3answers
690 views

Systematically resolve conflicting styles in css

I have some stylesheets from different sources in my web project. I want to harmonize them. Some styles I need from the one, some from the other. Is there a tool or method how to systematically ...
2
votes
2answers
539 views

.NET substitute dependent assemblies without recompiling?

I have a question about how the .NET framework (2.0) resolves dependent assemblies. We're currently involved in a bit of a rewrite of a large ASP.NET application and various satellite executables. ...
2
votes
3answers
1k views

How does Unity.Resolve know which constructor to use?

Given a class with several constructors - how can I tell Resolve which constructor to use? Consider the following example class: public class Foo { public Foo() { } public Foo(IBar bar) ...
2
votes
3answers
3k views

How to merge using Meld on Linux

I want to resolve some conflicts of an SVN file using Meld. I'm using the Head version and my version to resolve the conflicts. I am unable to find how to do the merge operation and resolve the ...
2
votes
2answers
138 views

Is there any tool that will resolve and hardcode every included file of a PHP script?

I would need a tool, if it exists or if you can write in under 5 mins (don't want to waste anyone's time). The tool in question would resolve the includes, requires, include_once and require_once in ...
2
votes
2answers
554 views

Perforce auto resolve (on a pending changelist) from the command line?

I want to safe resolve all the files in a pending changelist. Currently, the only way I know to do this is to pass p4 a list of files. SET CHANGE_NUMBER=default SET CHANGE_FILES=files.txt DEL ...
2
votes
2answers
1k views

Resolve Windows drive letter to a path (subst and network)

I wonder if there is a universal way of resolving a path using a drive letter (such as X:\foo\bar.txt) into its equivalent UNC path, which might be one of the following: X:\foo\bar.txt if X: is a ...
1
vote
1answer
34 views

how to register collection of generic interfaces in autofac

Does anyone know how to get this property populated by autofac: public IEnumerable<ITransactionProcessor<TransactionBase>> TransactionHandlers { get; set; } with these two concrete ...
1
vote
2answers
43 views

Perl, resolving link download name

I am trying to write a script in Perl that generates URL list from web page, than goes over URL list and downloads the linked files. the problem is that the generated URL's links look something like ...
1
vote
0answers
31 views

Resolving website name correctly in Tomcat

My httpd file in Apache as proxy looks like below: <IfModule mod_proxy.c> ProxyRequests On ProxyPass /SYL http://www.mywebsitename.com:8080/SYL ProxyPassReverse /SYL ...
1
vote
3answers
99 views

Cannot find certain import on Java

I am working with an example of a simple JSF and I am using NetBeans. With NetBeans, I can't seem to resolve these imports import javax.inject.Named; import javax.enterprise.context.SessionScoped; ...
1
vote
1answer
202 views

NestableException cannot be resolved when using apache.commons.configuration

Im using the following: import java.util.Collections; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.apache.commons.configuration.XMLConfiguration; and i ...
1
vote
3answers
97 views

C# IUnityContainer resolve method

I've created a simple PRISM application with a standard bootstrapper inherited from UnityBootstrapper. The UnityBootstrapper in turn has the public property IUnityContainer and this interface has the ...
1
vote
1answer
108 views

Autofac resolve question about keyed registration via IIndex

This is a follow-up question to Configuring an Autofac delegate factory that's defined on an abstract class. I've implemented the suggestion of using IIndex<K,V> that @Aren made in his ...
1
vote
2answers
75 views

How to resolve an xml element using idref

Given some sample data.xml file: <?xml version="1.0" encoding="utf-8"?> <data> <categories> <category id="google"> <name>Google</name> ...
1
vote
2answers
37 views

What namespace is CCiModuleCache in for the latest release of Gallio?

I have some old code I'm trying to compile with the class CciModuleCache being instantiated in the code. It doesn't resolve with the latest version of Gallio. I still get the red curly underlines ...
1
vote
0answers
129 views

Map hostname without editing Hosts file [closed]

Apparently I downloaded some program and ran it, now whenever I go to some specific websites (http://example.com), it is redirected to the advertising website. I tried to look into my Hosts file at ...
1
vote
2answers
114 views

Can autofac do partial Resolve?

I seem to need this a lot. Let's say I have a class with constructor taking several arguments. Some of these can be resolved by registering a components. But the rest are instances created during ...
1
vote
2answers
78 views

Pydev won't Resolve Dynamically created Attributes

Greetings SO, I have a weird problem that I don't seem to be able to solve: I am working with the pydev plugin with eclipse Helios on Windows XP (if it matters). I have a module which contains a ...
1
vote
1answer
45 views

module class's resolvemethod messes up on overridden methods

I have a derived class with a method that overrides the base class's method, (like this) but module.ResolveMethod(token, typeArguments, methodArguments) gives me a MethodBase with a declaringType of ...
1
vote
1answer
374 views

how to resolve file path reference to a file in asp.net mvc

hi how to resolve file path reference to a file in asp.net mvc. Suppose I have an image file in the content/image/img.jpg". How do i get the physical path of the file in asp.net mvc.
1
vote
3answers
146 views

Downloading file with PHP. How to get FILENAME?

I need to download files from remote server with my PHP script. The problem is that the links I recieve look like "example.com?download=12345". So I want to save the file with correct extension and ...
1
vote
2answers
1k views

Resolve virtual path in MVC

Hi, I got a adress like this : ~/Content/Files/AdImages/20/20_thumb.jpeg, I need this to be resolved. This was done in ASP.net with Control.ResolveUrl(). According to this article ...
1
vote
1answer
263 views

How to resolve an user repository using Windsor IoC at the start of the application?

I get an error message "Object reference not set to an instance of an object." when I try to use an UserRepos repository. Question is how can I resolve user repository at the start of the application ...
1
vote
2answers
330 views

django cross-site reverse a url

I have a similar question than django cross-site reverse. But i think I can't apply the same solution. I'm creating an app that lets the users create their own site. After completing the signup form ...
1
vote
1answer
78 views

Is it possible to set Android apps to connect to dev servers?

When building desktop or web apps, its easy to add fake hosts file entries so apps will connect to dev servers instead of production ones - is something similar possible for Android apps?
1
vote
3answers
484 views

How to know full paths to DLL's from .csproj file?

I wonder if there is some way to know full paths to the dll's that are listed in .csproj file. The most interesting for me is to resolve paths to default dll's like System.Xml.dll, System.Data.dll ...
1
vote
2answers
627 views

C# - How to retreive the target of a Junction or Symlink with a standard user

I am trying to get the target of a junction in my program, but the only way I managed do it is: Requesting Backup privileges p-invoke CreateFile with special parameters to get a handle to the ...
1
vote
1answer
456 views

Castle Windsor ResolveAll that throws when any of registered services cannot be resolved

It seems that current behaviour of Castle Windsor (2.0) method container.ResolveAll(Type type) is to ignore all services that cannot be resolved due to missing dependencies. What is recommened way ...
1
vote
2answers
2k views

Subversion resolve all conflicts quickly

When I have several conflicts, is there a way to resolve them all by just telling SVN to keep the version that is in the repository? Unfortunately, we're still using 1.4.

1 2