[JBossWS] - Re: WSDL is correctly modified to use the configured https p
by rnagy
Thanks for the suggestion. We had the opportunity to test out the suggestion, but it is still setting the SOAP address location to be HTTP instead of HTTPS.
We made the web.xml changes as described in the Wiki link -- this had no discernible impact on the generated SOAP address location in the WSDL. It still uses a regular HTTP address when generating the service URL.
We did confirm that the new web.xml was being deployed, as this file was made available through the temporary expansion of the EAR file created when deploying the web service. Despite the change, we are still seeing an HTTP address being generated.
Are there any other SSL configuration resources available that discuss this issue? We've scoured most of the web resources and haven't found anything, but are curious to see if there's anything else that may be helpful.
--Rich.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4203664#4203664
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4203664
15 years, 11 months
[JBossWS] - What could cause a null Endpoint?
by kringdahl
I'm creating a new web service using JBoss 4.2.3.GA with the WS 3.0.5.GA CXF stack. The call is coming in correctly but I'm getting a NPE because of a null endpoint. The stack trace is below. I've dropped in to the debugger and verified what was already obvious that the endpoint was not being set. My question is what could cause this? Am I missing an import or maybe something else form the endpoint config? FWIW, this web service is configured via Spring. The service is bound correctly:
| 2009-01-20 17:10:17,461 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] Creating Service {http://hostmanager.service.virtualizationmanager.desktone.com/}VMgrService from class com.desktone.virtualizationmanager.service.hostmanager.VMgrService
| 2009-01-20 17:10:22,843 INFO [org.apache.cxf.endpoint.ServerImpl] Setting the server's publish address to be /VMgrService
|
And if I hit the URL with a ?wsdl on the end , I do get my wsdl definition back. Here is the endpoint configuration in my application context file:
| <?xml version="1.0" encoding="UTF-8"?>
|
| <beans
| xmlns="http://www.springframework.org/schema/beans"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xmlns:jaxws="http://cxf.apache.org/jaxws"
| xsi:schemaLocation="
| http://cxf.apache.org/jaxws
| http://cxf.apache.org/schemas/jaxws.xsd
| http://www.springframework.org/schema/beans
| http://www.springframework.org/schema/beans/spring-beans.xsd">
|
| <import resource="classpath:META-INF/cxf/cxf.xml" />
| <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
| <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
| <jaxws:endpoint id="VMgrService" address="/VMgrService" implementor="#vMgrServiceImpl">
| <jaxws:invoker>
| <bean class='org.jboss.wsf.stack.cxf.InvokerJSE' />
| </jaxws:invoker>
| </jaxws:endpoint>
|
| </beans>
|
The referenced Spring bean "vMgrServiceImpl" is in another application context file
Here is the exception:
| 2009-01-20 17:16:26,256 INFO [org.apache.cxf.phase.PhaseInterceptorChain] Interceptor has thrown exception, unwinding now
| java.lang.NullPointerException
| at org.jboss.wsf.stack.cxf.AbstractInvoker.invoke(AbstractInvoker.java:98)
| at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:56)
| at org.apache.cxf.workqueue.SynchronousExecutor.execute(SynchronousExecutor.java:37)
| at org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(ServiceInvokerInterceptor.java:92)
| at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:221)
| at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:78)
| at org.apache.cxf.transport.servlet.ServletDestination.invoke(ServletDestination.java:92)
| at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:214)
| at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:151)
| at org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:170)
| at org.apache.cxf.transport.servlet.AbstractCXFServlet.doPost(AbstractCXFServlet.java:148)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:96)
| at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
| at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
| at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
| at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
| at java.lang.Thread.run(Thread.java:619)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4203432#4203432
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4203432
15 years, 11 months
Mail System Error - Returned Mail
by Post Office
*������������3�\��Y.�W����v����/�G����
�]K�5}A?�a��a�C�����4�6�>x�E��g�'9!w]%����[��q�U'o�����z�����Fe��Z�9��51C���I���C���$tW��%B�|7R�;
Zh�3?�I�v���F{�
$\�#��%�V�����5z�(�
^����o��~*R$�P�0-�`lK�t���Hy�������������
_�Y��\)*�,����j�0�b��Cl��1}7�)L��g���v��.l#��x$�^����|��8�����*s
{�y��F(>�s���KcP��
,g�a�E4�hB5��#��e�<b�6C����tw��Z
<�J)���T���cF�ep�^J���&�����'����i�C��`CP.�Y�7������i4�����>o^$�L�����[�<�>��i���
&Ru��_��H�����W����u{1��JH)H!�o��*��;�B3x����������-�R�DM��4�k ���\-����pd��y�&��x2c��w�:{~���tf����7�M`��y��%wngb���(^��o:�����J���;�~]��("���?$�������H��a�9'���Cj�3
j��� �H�(�_$����\�S��M����x����������d�-e�6�s}����%3���*F��h��O�jq���5����9��R}�}��bNL���S���U�V����e����
�Q�*n*�,��!u�|1Q��T���
�l5K���m}H�r|R|z�������O�s�y
����Y�>w�/�u���y�Sfk���q&��?b%��-Z��u�
.�!�U��<>���K�O������1F����N�p
o�����&�!���7F9/b ����w�q0Nq����y&�L0{����,k��SM2
���N��������2���?�6�g�
����]�3���7HE}-&��3zG�~$��>����(/fH�!"�z�g��qE��._�#�k�u�u�f
:A���y���������8(����O����
���H�$��;R���C��'�O,���ia�������>�z��D������Z���5���t�m��Pe>a�<8�v�0z��.}x�L;��J�c]j��_��pT[$r�m�,�n��x�Rk�d����{F�$����
���\��
�M�F���]I�o{s�5LWi��T�}�����d-����L�]S�8��������7;_&W%��_�f�4�(QZ��(�qI-SS�G�e�'AswfN�p���tgF[��2��5����,��C������%b��w�f����<����Bz�/u���q�7|Ky�-vM�������*q�-�Z���<$N�\�POEVI]&�"���Z�D?z���]b���g�!�35��,�������d���2�B�y�k��'�Pw&�������"���u�>�B�S/�w{%_$1%�B������V��������&���j!���1
��7��&��T�(����|Fp#g���������?��PnX��DN|�w��^���)�������6]�������
���UC��o(��j����O���x���K��#����h��b���0p*�\���`�:���J5����rXn��hU�HB}�:bsi�,
nD�`��L�!��uX�g#E����O,�5�pj*&�����y��}t��29X��� ��W �]
m������o�Zm��t�C_��V"c���p�H��$�B�4
X�#%�
�d��y����Mnw"D�6�"���
�|�ew�
';�N'���p����%6������v8���~����i���i;V)����M�d�Lg>���^�(����([��]�*&j��h�?���b�}�������2���
15 years, 11 months