You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org> on 2006/05/16 15:50:06 UTC

[jira] Created: (AXIS2-742) RPCMessageReceiver and javabeans array

RPCMessageReceiver and javabeans array
--------------------------------------

         Key: AXIS2-742
         URL: http://issues.apache.org/jira/browse/AXIS2-742
     Project: Apache Axis 2.0 (Axis2)
        Type: Bug

  Components: wsdl  
    Versions: 1.0    
 Environment: JDK1.4.2 Tomcat5 WindowsXP
    Reporter: Kinichiro Inoguchi


I'm testing RPCMessageReceiver with java class 
that receives array of javabeans and returns array of javabeans.

	package test;
	public class ArrayJavaBeans {
		public testServiceOut [] testService(testServiceIn []
inParam) {
			testServiceOut [] outParam = new testServiceOut[inParam.length];
			return outParam;
		}
	}

After deploy this service, I tried to generate proxy code from .NET, 
but I got errors like these;

The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
- Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
  - Invalid URI: The format of the URI could not be determined.
- Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
  - The document format is not recognized.
- Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.

It seems something wrong with WSDL generated by Axis2.

Does anyone know about this problem ?
Is there any way to avoid this trouble ?

I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-742?page=comments#action_12415319 ] 

Kinichiro Inoguchi commented on AXIS2-742:
------------------------------------------

I could verify that .NET could generate proxy code from your WSDL.
Thanks.

BTW, I didn't mention yet, is prefix "urn:" is valid in your WSDL ?
<soap:operation style="document" soapAction="urn:testService" /> 

There is no namespace for prefix "urn" in ArrayJavaBeans_new.wsdl.


> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans2.wsdl, ArrayJavaBeans3.wsdl, ArrayJavaBeans4.wsdl, ArrayJavaBeans_new.wsdl, ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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


[jira] Updated: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Deepal Jayasinghe updated AXIS2-742:
------------------------------------

    Attachment: ArrayJavaBeans_new.wsdl

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans2.wsdl, ArrayJavaBeans3.wsdl, ArrayJavaBeans4.wsdl, ArrayJavaBeans_new.wsdl, ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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


[jira] Resolved: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]
     
Deepal Jayasinghe resolved AXIS2-742:
-------------------------------------

    Resolution: Fixed

Fixed in current SVN , I have attached the generated wsdl file too

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans2.wsdl, ArrayJavaBeans3.wsdl, ArrayJavaBeans4.wsdl, ArrayJavaBeans_new.wsdl, ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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


[jira] Updated: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Kinichiro Inoguchi updated AXIS2-742:
-------------------------------------

    Attachment: ArrayJavaBeans_src.zip

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>  Attachments: ArrayJavaBeans_src.zip
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Kinichiro Inoguchi updated AXIS2-742:
-------------------------------------

    Attachment: ArrayJavaBeans3.wsdl
                ArrayJavaBeans4.wsdl

I added namespace directive in services.xml, 
and verified generated WSDL.

1) add targetNamespace to <service>

like this;
<service name="ArrayJavaBeans" targetNamespace="http://aaa.bbb.ccc">

generated WSDL is ArrayJavaBeans3.wsdl.
It seems targetNamespace of schema is set to "http:///".

2) add <schema> with 1)

like this;
<service name="ArrayJavaBeans" targetNamespace="http://aaa.bbb.ccc">
    <schema schemaNamespace="http://aaa.bbb.ccc"/>

generated WSDL is ArrayJavaBeans4.wsdl.
targetNamespace of schema is set to "http://aaa.bbb.ccc".
But, xmlns:stn_3="http:///xsd" is also defined.

Both of 1) and 2), .NET failed to generate proxy code.

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans2.wsdl, ArrayJavaBeans3.wsdl, ArrayJavaBeans4.wsdl, ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Kinichiro Inoguchi updated AXIS2-742:
-------------------------------------

    Attachment: ArrayJavaBeans2.wsdl

I modified WSDL file a little bit, then I could generate proxy code by .NET.

I replaced all 'http:///' to 'http://ws.apache.org/axis2'.
Maybe some difference of namespace convention between axis2 and .NET will cause this interop problem.

I attached modified WSDL as 'ArrayJavaBeans2.wsdl'.

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans2.wsdl, ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Deepal Jayasinghe reassigned AXIS2-742:
---------------------------------------

    Assign To: Deepal Jayasinghe

> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans_src.zip
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-742) RPCMessageReceiver and javabeans array

Posted by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-742?page=all ]

Kinichiro Inoguchi updated AXIS2-742:
-------------------------------------

    Attachment: Service1.wsdl

I created same kind of web service with VB.NET to compare WSDL generated by .NET and axis2.

.NET generated WSDL seems to generate "ArrayOf<class-name>" element when in/out params are array.

+++Service1.asmx.vb+++
    <System.Web.Services.WebMethod()> _
    Public Function testService(ByVal inParam As serviceIn()) As serviceOut()
        Dim outParam As serviceOut()
        testService = outParam
    End Function

+++serviceIn.vb+++
Public Class serviceIn
    Public val1 As String
    Public val2 As Integer
    Public val3 As Double
End Class

+++serviceOut.vb+++
Public Class serviceOut
        Public ret1 As String
    Public ret2 As Integer
    Public ret3 As Double
End Class


> RPCMessageReceiver and javabeans array
> --------------------------------------
>
>          Key: AXIS2-742
>          URL: http://issues.apache.org/jira/browse/AXIS2-742
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>   Components: wsdl
>     Versions: 1.0
>  Environment: JDK1.4.2 Tomcat5 WindowsXP
>     Reporter: Kinichiro Inoguchi
>     Assignee: Deepal Jayasinghe
>  Attachments: ArrayJavaBeans_src.zip, Service1.wsdl
>
> I'm testing RPCMessageReceiver with java class 
> that receives array of javabeans and returns array of javabeans.
> 	package test;
> 	public class ArrayJavaBeans {
> 		public testServiceOut [] testService(testServiceIn []
> inParam) {
> 			testServiceOut [] outParam = new testServiceOut[inParam.length];
> 			return outParam;
> 		}
> 	}
> After deploy this service, I tried to generate proxy code from .NET, 
> but I got errors like these;
> The document at the url http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl was not recognized as a known document type. The error message from each known type may help you fix the problem:
> - Report from 'WSDL Document' is 'There is an error in XML document (1, 490).'.
>   - Invalid URI: The format of the URI could not be determined.
> - Report from 'DISCO Document' is 'Discovery document at the URL http://localhost:8080/axis2/services/ArrayJavaBeans?wsdl could not be found.'.
>   - The document format is not recognized.
> - Report from 'XML Schema' is 'Expected Schema root. Make sure that the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. An error occurred at , (1, 2).'.
> It seems something wrong with WSDL generated by Axis2.
> Does anyone know about this problem ?
> Is there any way to avoid this trouble ?
> I attached sourcecode, services.xml and generated wsdl.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira