JBoss webservice behind Reverse Proxy, https to httpJBossAS 6 & Riftsaw: “No context found for request” when loading WSDLProxy JBoss HTTP with Apache HTTPSJava web service works on http but not on httpsApache reverse proxy root with jbossReverse Proxy and requested URL aware tomcatJBoss application behind apache ajp proxy with subdomain - duplicated contextForward proxy for webservices with SSL client certsIncluding Port number in HTTP HOST header causes Service Unavailable errormod_rewrite to serve static file based on specific query string with mod_proxyApache mod_cluster 1.2.6 and jboss 6: All workers are in error state for only one jboss web-application

My large rocket is still flipping over

Why does sound not move through a wall?

What are the advantages of luxury car brands like Acura/Lexus over their sibling non-luxury brands Honda/Toyota?

Does running exec do anything?

Sheared off exhasut pipe: How to fix without a welder?

What is a common way to tell if an academic is "above average," or outstanding in their field? Is their h-index (Hirsh index) one of them?

Page count conversion from single to double-space for submissions

Gerrymandering Puzzle - Rig the Election

Motion-trail-like lines

As a GM, is it bad form to ask for a moment to think when improvising?

All superlinear runtime algorithms are asymptotically equivalent to convex function?

Why would a military not separate its forces into different branches?

Some Russian letters overlap the next line of text when used in drop caps

Meaning of the (idiomatic?) expression "seghe mentali"

How do I allocate more memory to an app on Sheepshaver running Mac OS 9?

Can full drive backup be used instead of MSSQL database backup?

What does にとり mean?

Is there an age requirement to play in Adventurers League?

Why are the capacitors necessary for a quartz crystal?

GitLab account hacked and repo wiped

Drawing an hexagonal cone in TikZ 2D

Piano: quaver triplets in RH v dotted quaver and semiquaver in LH

The Adventures of a Chocolate Cookie

no sense/need/point



JBoss webservice behind Reverse Proxy, https to http


JBossAS 6 & Riftsaw: “No context found for request” when loading WSDLProxy JBoss HTTP with Apache HTTPSJava web service works on http but not on httpsApache reverse proxy root with jbossReverse Proxy and requested URL aware tomcatJBoss application behind apache ajp proxy with subdomain - duplicated contextForward proxy for webservices with SSL client certsIncluding Port number in HTTP HOST header causes Service Unavailable errormod_rewrite to serve static file based on specific query string with mod_proxyApache mod_cluster 1.2.6 and jboss 6: All workers are in error state for only one jboss web-application






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.



The JBoss configuration is as follows:



modify-wsdl-addres = true


wsdl-host = jbossws.undefined.host


Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration



But I can find where to force the protocol to be https in the soap addres.










share|improve this question






















  • Duplicate of stackoverflow.com/questions/32913933/…?

    – shonky linux user
    Nov 2 '15 at 3:55

















1















I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.



The JBoss configuration is as follows:



modify-wsdl-addres = true


wsdl-host = jbossws.undefined.host


Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration



But I can find where to force the protocol to be https in the soap addres.










share|improve this question






















  • Duplicate of stackoverflow.com/questions/32913933/…?

    – shonky linux user
    Nov 2 '15 at 3:55













1












1








1








I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.



The JBoss configuration is as follows:



modify-wsdl-addres = true


wsdl-host = jbossws.undefined.host


Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration



But I can find where to force the protocol to be https in the soap addres.










share|improve this question














I have deployed a JAX-WS web service hosted in a JBoss 7.1.1. The webservice is acceded by a reverse proxy. To access the service from the public internet, it has to be done by the https protocol, but the communication between the reverse proxy and the JBoss is in http. So the host present in the wsdl file is http <soap:address location="http://example.com/WS"/>and it has to be <soap:address location="https://example.com/WS"/>.



The JBoss configuration is as follows:



modify-wsdl-addres = true


wsdl-host = jbossws.undefined.host


Here is the reference for the webservices configuration:
https://docs.jboss.org/author/display/AS71/Web+services+configuration



But I can find where to force the protocol to be https in the soap addres.







jboss web-services wsdl






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 2 '15 at 20:10









Nicolás PiquerezNicolás Piquerez

63




63












  • Duplicate of stackoverflow.com/questions/32913933/…?

    – shonky linux user
    Nov 2 '15 at 3:55

















  • Duplicate of stackoverflow.com/questions/32913933/…?

    – shonky linux user
    Nov 2 '15 at 3:55
















Duplicate of stackoverflow.com/questions/32913933/…?

– shonky linux user
Nov 2 '15 at 3:55





Duplicate of stackoverflow.com/questions/32913933/…?

– shonky linux user
Nov 2 '15 at 3:55










1 Answer
1






active

oldest

votes


















0














The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).



In the webservices configuration add the following line



<wsdl-port>443</wsdl-port>


In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"



So it will look like this:



<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
secure="true" proxy-port="443"/>
...
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>jbossws.undefined.host</wsdl-host>
<wsdl-port>443</wsdl-port>
...
</subsystem>





share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f726378%2fjboss-webservice-behind-reverse-proxy-https-to-http%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).



    In the webservices configuration add the following line



    <wsdl-port>443</wsdl-port>


    In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"



    So it will look like this:



    <subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
    <connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
    secure="true" proxy-port="443"/>
    ...
    </subsystem>
    <subsystem xmlns="urn:jboss:domain:webservices:1.2">
    <modify-wsdl-address>true</modify-wsdl-address>
    <wsdl-host>jbossws.undefined.host</wsdl-host>
    <wsdl-port>443</wsdl-port>
    ...
    </subsystem>





    share|improve this answer



























      0














      The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).



      In the webservices configuration add the following line



      <wsdl-port>443</wsdl-port>


      In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"



      So it will look like this:



      <subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
      <connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
      secure="true" proxy-port="443"/>
      ...
      </subsystem>
      <subsystem xmlns="urn:jboss:domain:webservices:1.2">
      <modify-wsdl-address>true</modify-wsdl-address>
      <wsdl-host>jbossws.undefined.host</wsdl-host>
      <wsdl-port>443</wsdl-port>
      ...
      </subsystem>





      share|improve this answer

























        0












        0








        0







        The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).



        In the webservices configuration add the following line



        <wsdl-port>443</wsdl-port>


        In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"



        So it will look like this:



        <subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
        <connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
        secure="true" proxy-port="443"/>
        ...
        </subsystem>
        <subsystem xmlns="urn:jboss:domain:webservices:1.2">
        <modify-wsdl-address>true</modify-wsdl-address>
        <wsdl-host>jbossws.undefined.host</wsdl-host>
        <wsdl-port>443</wsdl-port>
        ...
        </subsystem>





        share|improve this answer













        The web and webservices subsystem configurations work together to provide the endpoint URL (and also URLs for xs:import statements).



        In the webservices configuration add the following line



        <wsdl-port>443</wsdl-port>


        In the web configuration change the scheme of the http connector from http to https and add proxy-port="443"



        So it will look like this:



        <subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
        <connector name="http" protocol="HTTP/1.1" scheme="https" socket-binding="http"
        secure="true" proxy-port="443"/>
        ...
        </subsystem>
        <subsystem xmlns="urn:jboss:domain:webservices:1.2">
        <modify-wsdl-address>true</modify-wsdl-address>
        <wsdl-host>jbossws.undefined.host</wsdl-host>
        <wsdl-port>443</wsdl-port>
        ...
        </subsystem>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 2 '15 at 3:55









        shonky linux usershonky linux user

        693711




        693711



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f726378%2fjboss-webservice-behind-reverse-proxy-https-to-http%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

            What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

            Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos