You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by "Vijayaratha Vijayasingam (JIRA)" <ji...@apache.org> on 2012/07/11 22:07:36 UTC

[jira] [Created] (SYNAPSE-889) Null pointer exception is thrown, if xpath expression doesn't match with the property

Vijayaratha Vijayasingam created SYNAPSE-889:
------------------------------------------------

             Summary: Null pointer exception is thrown, if xpath expression doesn't match with the property
                 Key: SYNAPSE-889
                 URL: https://issues.apache.org/jira/browse/SYNAPSE-889
             Project: Synapse
          Issue Type: Bug
          Components: Core
    Affects Versions: NIGHTLY
            Reporter: Vijayaratha Vijayasingam
            Priority: Critical
             Fix For: FUTURE


If  property mediator's name is different from the xpath expression provided in rewrite rule, which throws NPE, since resulted xpath is null..

exception;
java.lang.NullPointerException
at java.lang.String.concat(String.java:2017)
at org.apache.synapse.mediators.transform.url.RewriteAction.execute(RewriteAction.java:90)
at org.apache.synapse.mediators.transform.url.RewriteRule.rewrite(RewriteRule.java:84) 

conf: 
<inSequence>
         <property name="protocolParam" value="s" scope="default" />
         <rewrite>
            <rewriterule>
               <condition>
                  <equal xmlns="" type="url" source="protocol" value="http" />
               </condition>
               <action xpath="get-property('protocolParam123')" type="append" fragment="protocol" />             
            </rewriterule>
         </rewrite>         
         <send />
      </inSequence>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] [Updated] (SYNAPSE-889) Null pointer exception is thrown, if xpath expression doesn't match with the property

Posted by "Vijayaratha Vijayasingam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vijayaratha Vijayasingam updated SYNAPSE-889:
---------------------------------------------

    Attachment: rewrite.patch
    
> Null pointer exception is thrown, if xpath expression doesn't match with the property
> -------------------------------------------------------------------------------------
>
>                 Key: SYNAPSE-889
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-889
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: NIGHTLY
>            Reporter: Vijayaratha Vijayasingam
>            Priority: Critical
>             Fix For: FUTURE
>
>         Attachments: rewrite.patch
>
>
> If  property mediator's name is different from the xpath expression provided in rewrite rule, which throws NPE, since resulted xpath is null..
> exception;
> java.lang.NullPointerException
> at java.lang.String.concat(String.java:2017)
> at org.apache.synapse.mediators.transform.url.RewriteAction.execute(RewriteAction.java:90)
> at org.apache.synapse.mediators.transform.url.RewriteRule.rewrite(RewriteRule.java:84) 
> conf: 
> <inSequence>
>          <property name="protocolParam" value="s" scope="default" />
>          <rewrite>
>             <rewriterule>
>                <condition>
>                   <equal xmlns="" type="url" source="protocol" value="http" />
>                </condition>
>                <action xpath="get-property('protocolParam123')" type="append" fragment="protocol" />             
>             </rewriterule>
>          </rewrite>         
>          <send />
>       </inSequence>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] [Commented] (SYNAPSE-889) Null pointer exception is thrown, if xpath expression doesn't match with the property

Posted by "Vijayaratha Vijayasingam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SYNAPSE-889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13411923#comment-13411923 ] 

Vijayaratha Vijayasingam commented on SYNAPSE-889:
--------------------------------------------------

Attached a patch to avoid NPE..

fix;
If the resulted xpath evaluation returns null, lets assign an empty string ,so we will get "URISyntaxException"

Please go through the patch and commit...
                
> Null pointer exception is thrown, if xpath expression doesn't match with the property
> -------------------------------------------------------------------------------------
>
>                 Key: SYNAPSE-889
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-889
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: NIGHTLY
>            Reporter: Vijayaratha Vijayasingam
>            Priority: Critical
>             Fix For: FUTURE
>
>         Attachments: rewrite.patch
>
>
> If  property mediator's name is different from the xpath expression provided in rewrite rule, which throws NPE, since resulted xpath is null..
> exception;
> java.lang.NullPointerException
> at java.lang.String.concat(String.java:2017)
> at org.apache.synapse.mediators.transform.url.RewriteAction.execute(RewriteAction.java:90)
> at org.apache.synapse.mediators.transform.url.RewriteRule.rewrite(RewriteRule.java:84) 
> conf: 
> <inSequence>
>          <property name="protocolParam" value="s" scope="default" />
>          <rewrite>
>             <rewriterule>
>                <condition>
>                   <equal xmlns="" type="url" source="protocol" value="http" />
>                </condition>
>                <action xpath="get-property('protocolParam123')" type="append" fragment="protocol" />             
>             </rewriterule>
>          </rewrite>         
>          <send />
>       </inSequence>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org