You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Weikuo Liaw (JIRA)" <ji...@apache.org> on 2008/04/10 23:58:07 UTC

[jira] Commented: (CXF-1448) Aegis + SAAJ leads to namespace complaint.

    [ https://issues.apache.org/jira/browse/CXF-1448?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587798#action_12587798 ] 

Weikuo Liaw commented on CXF-1448:
----------------------------------

I still get
  java.lang.IllegalArgumentException: The uri may not be theempty string.
in WebLogic. And I found

The fix is not checking for empty namespace in writeStartElement. It is better to replace
    if (namespace != null) {
by
    if (namespace != null && namespace.length > 0) {


> Aegis + SAAJ leads to namespace complaint.
> ------------------------------------------
>
>                 Key: CXF-1448
>                 URL: https://issues.apache.org/jira/browse/CXF-1448
>             Project: CXF
>          Issue Type: Bug
>          Components: Aegis Databinding
>    Affects Versions: 2.0.4
>         Environment: I am running WebLogic 9.2.2 on Windows XP
>            Reporter: Ben McCann
>            Assignee: Daniel Kulp
>             Fix For: 2.0.5
>
>         Attachments: AuthService.java, AuthServiceImpl.java, AuthServiceImpl.java, cxf.xml, Employee.java, Employee.java, jboss.log, junit.log, stackTrace.log, stackTraceAegisWSSecurity.log, stackTraceWithSetCommentedOut.log
>
>
> Hi,
> I am getting "Error initializing parameters for operation" from Aegis.  I set it up through Spring.  My classes mostly just use String, so I'm not sure what the problem is.
> Thanks,
> Ben 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.