Questions tagged [resolver]

363 questions
10
votes
3 answers

Yosemite localhost resolver and dnsmasq fails offline

Setup my local dev environment similar to this post and everything was working fine but recently I am unable to access my local dev domains when I am offline. When I am connected to the internet it works fine. I'm wondering if something changed…
jamesrward
  • 121
  • 1
  • 9
8
votes
1 answer

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) will respond. However, mDNS operates on port 5353 so…
SofaKng
  • 1,063
  • 1
  • 11
  • 32
8
votes
1 answer

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 found it that it is thrown from the following…
neztreh
  • 3,971
  • 3
  • 19
  • 17
8
votes
3 answers

NGINX in Openshift - NGINX can't resolve internal hostnames

When using a variable to rewrite & proxy to an internal Openshift service within an nginx container's proxy_pass config, NGINX can't resolve the service's DNS due to a required resolver. For instance: location /api/ { set $pass_url…
ev0lution37
  • 1,129
  • 2
  • 14
  • 28
8
votes
1 answer

Asp.net core 2.0 AutoMapper IValueResolver dependency injection

I have tried most of the examples in the Google Results, Stackoverflow and in AutoMapper. But was not able to get the IValueResolverdependancy injection to work. I have below service public class StorageService : IStorageService { private…
8
votes
1 answer

How to make Angular2 wait for a promise before rendering component

First: Yes, I have Googled this beforehand, and the solution that came up isn't working for me. The Context I have an Angular 2 component that calls a service, and needs to perform some data manipulation once it receives the response: ngOnInit () { …
A. Duff
  • 4,097
  • 7
  • 38
  • 69
7
votes
3 answers

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):
Tammen
  • 71
  • 1
  • 2
7
votes
3 answers

OS/X "etc/resolver/dev" isn't working – why not?

I expect to be able to resolve the DNS name www.foobar.dev using a DNS server that's running in a VM on my OS/X (High Sierra) system because I have created an /etc/resolver/dev file containing the following one line: (specifying the VM's virtual…
Mike Robinson
  • 8,490
  • 5
  • 28
  • 41
7
votes
1 answer

Angular 2 Resolve only works once

I'm trying to make a simple Resolve that returns a user. However, in my application I need to wrap the http component with my own class, which returns a Subject as observable. My Resolver works as expected on the first user link, but when clicking…
alreit
  • 322
  • 4
  • 10
7
votes
1 answer

How To Enable Unbound DNSSEC DNS Resolver On Mac OS X 10.10.3 Yosemite

I'm using Mac OS X 10.10.3 Yosemite. Very recently upgraded from Snow Leopard (10.6.8) to Yosemite. Step A On my MacBook, I login into an Admin type privileged account. I installed the latest free XCode from the Apple App Store. With XCode, I also…
atErik
  • 923
  • 2
  • 13
  • 24
7
votes
1 answer

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 the download URL. Using ArtifactResolver and…
Thomas
  • 2,095
  • 18
  • 24
6
votes
2 answers

How do I insert an optional field as null using AppSync Resolvers and Aurora?

I have an optional String field, notes, that is sometimes empty. If it's empty I want to insert null, otherwise I want to insert the string. Here is my resolver - { "version" : "2017-02-28", "operation": "Invoke", #set($id =…
6
votes
2 answers

How to set DNS when the device is connected via Ethernet?

My android target is connect via Ethernet using static IP. I am able to connect it by using ADB, but I am not able to ping any server. Please tell me how can I configure my DNS setting so that I can ping any server.
shahooo
  • 563
  • 4
  • 14
6
votes
0 answers

Why do't the resolver threads shutdown in apache Felix

I'm trying to embed Felix in Embedded Tomcat. Everything works fine. However when shutting down the Felix framework (have deployed SCR, cm, event admin, and metatype services) it will give me a framework shutdown event. But the threads is still…
Mario Toffia
  • 510
  • 5
  • 16
6
votes
2 answers

AutoMapper - passing parameter to custom resolver weird behavior

Although I'm relatively new to AutoMapper I'm using it in a small project I'm developing. I've never had problems using it before but now I'm facing some weird behavior passing parameters to a Custom Resolver. Here's the scenario: I get a list of…
palroj
  • 151
  • 1
  • 1
  • 8
1
2
3
24 25