List webservices in JBoss AS 4 - jboss

I have some applications deployed in JBoss Application Server 4.
I need to know how to get a list of deployed web services in that application server ?
Is there any informations in the jmx-console?
thanks

You should see all deployed web services at: http://localhost:8080/jbossws/services. Update IP and port information in that address accordingly.

Related

Prevent external access to one server group in jboss?

I am running jboss in domain mode.
I have a collect of services hosted in a server group in jboss. (I have to use jboss for the time being even though it is not the correct thing to use.) 2 of the services should be accessible from different hosts (not localhost) but the rest of the services should only be accessible from localhost. Is there anyway to give access from any machine to the 2 services but not the rest of the services?
Maybe I could split the services into two server groups and some how have different access rules for the two server groups?
So found out that if you put a file called undertow-handlers.conf in the WEB-INF folder of your webapp you can restrict access to your application in this file. So you can add the following line
ip-access-control(default-allow=false, acl={'127.0.0.1 allow'})
this means only requests coming from 127.0.0.1 will be accepted.

wildfly jboss standalone configuration for microsoft azureload balancer

Can anyone tell me what configuration is needed in standalone.xml to integrate Wilfly Jboss 7 with Microsoft Azure Load balancer?
Create a web farm for the servers API in azure and route the traffic at round robin fashion to each server.
You may see the access log with the api URL.

Web app deployed in JBOSS access via LAN/WiFi

I'm new to this server stuff, a web app is deployed on jboss-eap-6.4 and it works fine on localhost. Tried to access the webapp as (192.168.XXX.XXX:8080/myapp) through lan (WiFi) but end with Connection timeout. Is there any configurations to do with jboss server ?
Please, help me to resolve this. Thanks !

WildFly 10.1 Load Balancer + Kerberos/SPNEGO

How can I add SPNEGO authentication to a WildFly 10.1 load balancer?
Background:
All nodes are running on Windows.
The nodes themselves are running on WildFly 8.2.1 (because the application is tight to it) in a Wildfly 8.2.1 domain
The load balancer is running WildFly 10.1
The nodes are registering with mod_cluster
You need to get the SPNEGO support into your application.
WildFly 8 and 9 don't have the Undertow SPNEGO integration ready (WFLY-2553) . You should either switch to WildFly 10.x, or try to use a custom SPNEGO authentication method on your worker nodes. Try to use either
servlet filter approach or this custom authenticator.
My strong recommendation is to upgrade to WildFly 10+.
There isn't much to go by in your post as to what is and is not working. This forum is more about what custom code you have created that isn't working, and we can help you there. It seems in this instance you are looking more for an approach on how to setup Kerberos authentication into your WildFly nodes through a load-balancer. As info, it doesn't matter that there is a load-balancer involved, except that you specify a VIP name for the nodes in DNS and have the VIP name be the fully-qualified DNS host part of the name in the SPN which you will need to setup in order for clients to do Kerberos SSO against the WildFly nodes. I don't know anything about WildFly specifically, but I found this link for you which may help get you started: WildFly 9 - Kerberos Authentication for Domain Management Over HTTP

Setup Wicket application/JBoss Server to use my domain URL

I just purchased a domain Url from Google Domains and I'd like to have my localhost project (Wicket app. deployed on Jboss server) to use my new domain (example.com). I have looked online for a process on doing this, but seeing as this is a very specific instance, I cannot find the proper documentation. I have made my ip addr. static, added my external IP addr. to the Google Domain website (I think this registers my domain to my ip?), and I've edited the Window's Host file to point 127.0.0.1 to example.com. What am I missing here? Is there a configuration in my wicket project's web.xml or maybe a configuration in my JBoss server? I'm using Wicket 7.0.0 (latest) and JBoss 7.0. Any help would be greatly appreciated! Thanks in advance!
I am not an network expert, but you could check if you are receiving any traffic on your JBOSS server port without application deployed, just to make sure that your firewall or any sort of Antivirus is blocking incoming traffic or not.