Hello. I'm a bit new to all this and you guys hav...
# help
r
Hello. I'm a bit new to all this and you guys have helped me before - can anyone tell me...My code uses Netty HttpClient object to contact a restservice running on a localhost, via a unix domain socket file on the localhost....can I use WireMock to mock this Service and do my integration tests? At the moment I'm trying to connect the Netty object to the "stubFor" service, but the Netty classes are reporting a "Unsupported Channel Type: Domain Socket Channel" Error and stackTrace. I'm wondering whether I can set somesort of dummy socket / file listener on the WireMock Config side....I'm guessing it's a no go since the documentation mentions nothing about it. (background - i'm migrating code which just used Spring RestClient, (where all my integration with WireMock worked) to using Netty objects and a unix socket file)
t
WireMock can listen on the loopback adapter address i.e.
localhost
/
127.0.0.1
but it doesn’t support unix domain sockets at the moment.
r
ok thanks.