Tagged Questions
The resolver tag has no wiki summary.
3
votes
1answer
780 views
How to get an Artifact download URL via Maven API?
I'm trying to create a maven plugin to generate a file with the URL to all the dependencies in a project. I have been able to get the dependencies and their artifact, but I'm having trouble getting ...
3
votes
2answers
4k views
boost::asio::ip::tcp::resolver::resolve() blocks forever
I'm trying to create something similar as this code found at the boost.asio examples.
socket.h:
class some_class {
private:
...
boost::asio::io_service io_service;
public:
...
2
votes
1answer
73 views
How does Windows know how to resolve mDNS queries?
When you install Bonjour for Windows you can resolve any ".local" mDNS name from anywhere in the system.
For example, you can "ping some_computer.local" and mDNSResponder.exe (Bonjour/mDNS Daemon) ...
2
votes
1answer
123 views
How can I use a <filesystem> resolver that doesn't copy artifacts to the cache in Ivy?
I have a <filesystem> resolver in my ivysettings.xml, along with the central M2 repository, and it all works OK. However, I was wondering whether there is a way to bypass the cache entirely for ...
2
votes
2answers
342 views
boost::asio hangs in resolver service destructor after throwing out of io_service::run()
I'm using a fairly simple boost::asio set-up, where I call io_service.run() from the main thread.
I have a tcp resolver, and use async resolve to look up an address.
When that look-up fails, I throw ...
1
vote
1answer
163 views
Boost Asio tcp::resolver: service not found
I'm trying to create an HTTP client using Boost Asio. I copied the sync client example from asio, compile, then run. Unfortunately, on my logs, it shows Service not found. When I traced the code, I ...
1
vote
3answers
365 views
How do you configure a MultipartResolver for a different maxUploadSize for a regular user vs. an admin?
I can define a MultipartResolver like this with a maxUploadSize of 10K (10000 bytes):
<bean id="multipartResolver"
...
1
vote
0answers
165 views
Boost.Asio on iPad: resolver fails on a “fresh” 3G connection
I'm using Boost.Asio (Boost 1.46) on iOS(4.3), and I've got the following issue.
When trying to resolve a host name just after 3G connection is established (eg., switch "airplane mode" off and on), I ...
1
vote
2answers
465 views
python dns.resolver get DNS record type
I am learning how to use the python dns object. Quick question as I see many examples show methods of using the dns.resolver method with the DNS record type(CNAME, NS, etc). Is there a way to use this ...
1
vote
2answers
671 views
python module import error
I am using macports to install various modules. Generally this works well, but below is an error I am getting that I am not easily resolving:
$ python
Python 2.6.6 (r266:84292, Feb 12 2011, 16:57:53) ...
1
vote
1answer
325 views
Launching Android apk from installation crashes looking for ResolverActivity?
One of my colleagues was trying to load my APK from an internal web site and then opening it from the installer. The application crashes at launch time with the following stack and referring to an ...
1
vote
1answer
275 views
Unity 2 fails to load registered type when testing with VS2010 unit tests
I have set up an Unity 2.0.414.0 container using app config.
My solution structure looks like this:
Project A: dependency factory using Unity with unity xml config file.
Project B: Several types that ...
1
vote
4answers
391 views
In Grails, how do I specify jars needed by an ivy resolver?
In a grails project I have added a custom ivy resolver per the reference docs, http://www.grails.org/doc/latest/guide/single.html#12.2%20Plugin%20Repositories .
However, this resolver requires jsch ...
1
vote
1answer
218 views
Is res_query thread-safe?
Is res_query (int res_query(const char *dname, int class, int type,unsigned char *answer,
int anslen);) thread-safe?
I think so, because it writes its answer to an user-allocated buffer (in contrast ...
0
votes
0answers
64 views
Spring MVC Exception handling ignored
I'm working on a project that uses Spring 3.0.5, and i'm having problems with setting up exception handling. The project is made of 4 maven projects, the top (WebApp) project has the exception ...
0
votes
1answer
64 views
gethostbyname() (actually, Boost Asio resolve()) segfaults EXACTLY after 2 hours (120 mins, 7200 seconds)
We have a Foo server(foo.something.org), and Bar client uses a HeartBeat thread to periodically connect() and check if its alive or not. This works fine. But every 2 hours, Bar segfaults while trying ...
0
votes
0answers
107 views
viewResolver prefix being prepended twice
I am trying to integrate Spring 3.0.5.RELEASE, Spring security and JSF 2.0.6 with Primefaces 3.0.M4-SNAPSHOT. I am facing a strange issue. I can successfully login to application and get navigated to ...
0
votes
2answers
239 views
how to retrieve nested properties in groovy
I'm wondering what is the best way to retrieve nested properties in Groovy, taking a given Object and arbitrary "property" String. I would like to something like this:
...
0
votes
1answer
1k views
Spring XML View Resolver Conifguration
I am trying to output some model data to a pdf using spring-mvc. It is not working and I was wondering if someone could offer some advice.
I have a spring-servlet.xml file that includes the ...
0
votes
1answer
424 views
Boost asio: Using IPv6 addresses in resolver::query works on Win32, but not on Linux
I am currently developing a simple server application which should be also IPv6 capable. IPv6 works fine on Windows (using MSVC2010), but it does not on Linux.
Imagine following code:
...
0
votes
1answer
1k views
Spring redirect: prefix issue
I have an application which uses Spring 3. I have a view resolver which builds my views based on a String. So in my controllers I have methods like this one.
@RequestMapping(...)
public String ...
0
votes
1answer
268 views
Replication Custom resolver changes empty strings to NULLs
We have an C# application which posts to a database which is replicated to another database (using merge-replication) and has one custom resolver which is a stored procedure.
This was working fine ...