JAX-WS and Spring: XML error

View: New views
20 Messages — Rating Filter:   Alert me  
< Prev | 1 - 2 | Next >

JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

I'm trying to integrate JAX-WS/Metro with Spring, using the latest jaxws-spring (1.8) JAR. Eclipse always gives the Spring beans file as invalid, with the error: "White spaces are required between publicId and systemId.".

The JAR is in the classpath and the relevant parts of the beans file are:

<beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:ws="http://jax-ws.dev.java.net/spring/core"
        xmlns:wss="http://jax-ws.dev.java.net/spring/servlet"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
                http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
                http://jax-ws.dev.java.net/spring/core
                http://jax-ws.dev.java.net/spring/core.xsd
                http://jax-ws.dev.java.net/spring/servlet
                http://jax-ws.dev.java.net/spring/servlet.xsd">
(...)
        <wss:binding url="/ws">
                <wss:service>
                        <ws:service bean="#endPoint"/>
                </wss:service>
        </wss:binding>

Does anyone experienced this before? Can anyone please help me? Thank you in advance,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315738

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello again,

I just followed all the steps in this thread:

http://forums.java.net/jive/thread.jspa?messageID=299577񉈹

... and have exactly the same problems. JAX-WS Spring integration simply doesn't work out of the box. Can anyone please help me? Cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315739

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

What version of JAX-WS/Metro and Spring are you using exactly? Could you please post the entire error message you are getting (stack trace and all)? Please attach the exact configuration file that is triggering the error.
[Message sent by forum member 'ritzmann' (ritzmann)]

http://forums.java.net/jive/thread.jspa?messageID=315741

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi ritzmann, thank you for your answer. The versions are:

Metro: 1.4
jaxws-spring: 1.8
xbean-spring: 3.4.3
Spring: 2.5.5

I managed to progress a bit more now. The examples in https://jax-ws-commons.dev.java.net/spring/ induce the reader in errors, mainly because the http:... schemas no longer exist; you have to use the https:... ones. I still have to see how this will behave in our production servers, given the fact that they don't have Internet access and it will be impossible to play with the local certificate store.

So, my current problem is with the bindings section in the bean definition file. The following:

        <wss:binding url="/ws">
                <wss:service>
                        <ws:service bean="#endPoint"/>
                </wss:service>
        </wss:binding>

... produces the error:

Unable to locate Spring NamespaceHandler for element 'wss:binding' of schema namespace 'http://jax-
 ws.dev.java.net/spring/servlet'

I didn't have much success fixing this one yet... Can you help me please? Thank you again, cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315748

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It's quite possible that the examples under jax-ws-commons contain typos, I don't recall anymore. Take a look at chapter 19 of the Metro guide, it has examples that are verified and known to work: https://metro.dev.java.net/guide/

If that still doesn't work, please attach the complete configuration file.
[Message sent by forum member 'ritzmann' (ritzmann)]

http://forums.java.net/jive/thread.jspa?messageID=315751

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thank you again ritzmann,

My setup seems to be exactly the one in the guide. Apart from using Tomcat 5 instead of NetBeans, I don't see any significant difference. I tried to deploy the application and got the following error:

2008-11-10 11:39:06,899  [main] ERROR org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/myapp] - Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 67 in XML document from ServletContext resource [/WEB-INF/applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'wss:binding'.
        at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:404)
(...)

Line 67 is the binding section I posted before. I send web.xml and applicationContext.xml in attachment (just obfuscated some names for corporate reasons). Thank you very much for your time and dedication, cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315753

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

That is very odd. The applicationContext.xml validates just fine in my XML editor and I can't spot any typos. It is very strange that the http addresses don't work anymore. I need to check if the schemas are corrupt somehow. On the other hand, the validation would have failed then. The easiest thing would be if you could write a complete compilable, deployable project that demonstrates the error so that I could try and reproduce it here. It should be fairly quick to write that. I will have time to look into it later this week.
[Message sent by forum member 'ritzmann' (ritzmann)]

http://forums.java.net/jive/thread.jspa?messageID=315756

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi again ritzmann, thank you.

I've built a small example that shows the error. You can find it attached along with the full error stack trace. In order to successfully build it, you just need to add Spring and Metro's libraries to the lib/ directory (I removed them for bandwidth sake!). The removed files are:

webservices-api-1.4.jar
webservices-extra-1.4.jar
webservices-extra-api-1.4.jar
webservices-rt-1.4.jar
spring-2.5.5.jar
jaxws-spring-1.8.jar
xbean-spring-3.4.3.jar
servlet-api-2.4.jar

My example was built with Ant 1.6.5 and JDK 1.5.0_10. Tomcat version is 5.5.26. I'm using Eclipse Ganymede (3.4) with Spring IDE 2.2.0.

Thank you very much,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315771

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by Fabian Ritzmann-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 10. Nov 2008, at 14:02, metro@... wrote:

> The applicationContext.xml validates just fine in my XML editor and  
> I can't spot any typos. It is very strange that the http addresses  
> don't work anymore. I need to check if the schemas are corrupt  
> somehow.

I just tried if I can access the schemas under the http address with  
my web browser and it worked fine. There is an HTTP 301 redirect  
involved, maybe that confuses your system? But I can't explain why  
that would work with my Spring installation. Do you have a proxy that  
might get into the way?

Fabian

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Fabian,

Yes, I'm behind a proxy. I don't know how the Java HTTP client and the proxy behave... But I would assume that a redirect is something that might not go well between both! That problem was fixed anyway, by using the HTTPS links. Did you manage to see the error with the binding? That one is the only that is still keeping me from bringing the web service up with Spring.

Thank you, cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=315784

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi  Fabian!

Did you have some time to run the example? I still didn't manage to fix this. Thank you, cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=316545

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I am afraid I cannot reproduce your problem. I added the JARs that you listed below + webservices-tools.jar. I am not 100% sure if you need webservices-tools.jar but it might well be that some WSDL generation code is depending on it. I removed all webservices jars from my Tomcat 5.5.26 shared/lib and common/endorsed directories. Then I built the war and copied it to the Tomcat webapps dir and it deployed just fine. I can access the web service under http://localhost:8080/wstest/ws and retrieve the WSDL under http://localhost:8080/wstest/ws?wsdl.

I guess that means that either something is wrong with your Tomcat installation or some network related issue. Try downloading the schemas manually and then point the schemaLocation at the local files.
[Message sent by forum member 'ritzmann' (ritzmann)]

http://forums.java.net/jive/thread.jspa?messageID=316741

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by metro-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Fabian, thank you for the time you're dedicating to this issue.

I'm afraid I can duplicate the problem in every scenario I try. I even asked a friend, that works in a different company (different country!), with a completely difference development environment. My instructions to him were:

1. Download test from http://forums.java.net/jive/servlet/JiveServlet/download/46-53175-315771-6254/WSTest.zip and unzip;
2. Download Tomcat from http://apache.mirror.anlx.net/tomcat/tomcat-5/v5.5.27/bin/apache-tomcat-5.5.27.zip and unzip;
3. Download Spring from http://s3.amazonaws.com/dist.springframework.org/release/SPR/spring-framework-2.5.5.zip and unzip. Create a lib directory in the test and copy the file spring.jar to it;
4. Download Metro from https://metro.dev.java.net/1.4/metro-1_4.jar. Install and copy the files webservices-api.jar, webservices-extra.jar, webservices-extra-api.jar and webservices-rt.jar to the test lib directory;
5. Download jaxws-spring from https://maven2-repository.dev.java.net/source/browse/*checkout*/maven2-repository/trunk/www/repository/org/jvnet/jax-ws-commons/spring/jaxws-spring/1.8/jaxws-spring-1.8.jar?rev=3913. Copy it to the test lib directory;
6. Download xbean-spring from http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/xbean/xbean-spring/3.4.3/xbean-spring-3.4.3.jar. Copy it to the test lib directory.
7. Invoke the command "ant" in the test root directory. A file wstest.war should be generated to the dist directory. Copy it to tomcat's webapp directory;
8. Start Tomcat with bin\startup.bat.

As I told you, he got the exact same error I get. In attachment you can find the output of his Tomcat's console. If you want, I can send you a complete Tomcat zip, with the test installed (it's approximately 37 MB).

Thank you again, cheers,

AP
[Message sent by forum member 'a_pinto' (a_pinto)]

http://forums.java.net/jive/thread.jspa?messageID=316752

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by Sreekanth-7 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I just download the zip file you sent to the list and added the jars and
used your build file to create the war file.I deployed the application
into my tomcat 5.5

After downloading metro, unzip and use the following to install metro to
your tomcat.

You should see something like this:

C:\Users\TOSHIBA1\space\servers\MetroDownloads\metro>ant -f
metro-on-tomcat.xml install
Buildfile: metro-on-tomcat.xml

uninstall:

update-catalina-props:

install:
     [echo] Installing WSIT 1.4 FCS for
C:\Users\TOSHIBA1\space\servers\apache-tomcat-5.5.26 ...
     [copy] Copying 4 files to
C:\Users\TOSHIBA1\space\servers\apache-tomcat-5.5.26\shared\lib
     [copy] Copying 1 file to
C:\Users\TOSHIBA1\space\servers\apache-tomcat-5.5.26\common\endorsed

install-api-jdk5:
     [copy] Copying 1 file to
C:\Users\TOSHIBA1\space\servers\apache-tomcat-5.5.26\shared\lib

install-api-jdk6:

install-api:
     [echo] ... installation complete.

BUILD SUCCESSFUL
Total time: 1 second
C:\Users\TOSHIBA1\space\servers\MetroDownloads\metro>

I could access the wsdl file at http://localhost:9999/wstest/ws?wsdl (my
tomcat is running on port 9999)

Thanks,
Sreekanth

metro@... wrote:

> Hi Fabian, thank you for the time you're dedicating to this issue.
>
> I'm afraid I can duplicate the problem in every scenario I try. I even asked a friend, that works in a different company (different country!), with a completely difference development environment. My instructions to him were:
>
> 1. Download test from http://forums.java.net/jive/servlet/JiveServlet/download/46-53175-315771-6254/WSTest.zip and unzip;
> 2. Download Tomcat from http://apache.mirror.anlx.net/tomcat/tomcat-5/v5.5.27/bin/apache-tomcat-5.5.27.zip and unzip;
> 3. Download Spring from http://s3.amazonaws.com/dist.springframework.org/release/SPR/spring-framework-2.5.5.zip and unzip. Create a lib directory in the test and copy the file spring.jar to it;
> 4. Download Metro from https://metro.dev.java.net/1.4/metro-1_4.jar. Install and copy the files webservices-api.jar, webservices-extra.jar, webservices-extra-api.jar and webservices-rt.jar to the test lib directory;
> 5. Download jaxws-spring from https://maven2-repository.dev.java.net/source/browse/*checkout*/maven2-repository/trunk/www/repository/org/jvnet/jax-ws-commons/spring/jaxws-spring/1.8/jaxws-spring-1.8.jar?rev=3913. Copy it to the test lib directory;
> 6. Download xbean-spring from http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/xbean/xbean-spring/3.4.3/xbean-spring-3.4.3.jar. Copy it to the test lib directory.
> 7. Invoke the command "ant" in the test root directory. A file wstest.war should be generated to the dist directory. Copy it to tomcat's webapp directory;
> 8. Start Tomcat with bin\startup.bat.
>
> As I told you, he got the exact same error I get. In attachment you can find the output of his Tomcat's console. If you want, I can send you a complete Tomcat zip, with the test installed (it's approximately 37 MB).
>
> Thank you again, cheers,
>
> AP
> [Message sent by forum member 'a_pinto' (a_pinto)]
>
> http://forums.java.net/jive/thread.jspa?messageID=316752
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>  

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by Fabian Ritzmann-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 14. Nov 2008, at 13:50, Sreekanth wrote:

> I just download the zip file you sent to the list and added the jars  
> and used your build file to create the war file.I deployed the  
> application into my tomcat 5.5

As it stands, it's two successful deployments vs two failed ones. ;-)

Sreekanth, what version of Windows are you running and what Java  
version?

Fabian

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by Sreekanth-7 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Fabian ,

It's Windows Vista Business edition(Version 6.0 Build 6001 :SP1) and
Java 1.6.0_06

Thanks,
Sreekanth

Fabian Ritzmann wrote:

> On 14. Nov 2008, at 13:50, Sreekanth wrote:
>
>> I just download the zip file you sent to the list and added the jars
>> and used your build file to create the war file.I deployed the
>> application into my tomcat 5.5
>
> As it stands, it's two successful deployments vs two failed ones. ;-)
>
> Sreekanth, what version of Windows are you running and what Java version?
>
> Fabian
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by Fabian Ritzmann-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 14. Nov 2008, at 14:57, Sreekanth wrote:

> It's Windows Vista Business edition(Version 6.0 Build 6001 :SP1) and  
> Java 1.6.0_06

Thanks for your help. I tried with 1.5.0_16 and 1.6.0_07 on Mac OS X  
10.5 and both worked fine.

Fabian


> Fabian Ritzmann wrote:
>> On 14. Nov 2008, at 13:50, Sreekanth wrote:
>>
>>> I just download the zip file you sent to the list and added the  
>>> jars and used your build file to create the war file.I deployed  
>>> the application into my tomcat 5.5
>>
>> As it stands, it's two successful deployments vs two failed ones. ;-)
>>
>> Sreekanth, what version of Windows are you running and what Java  
>> version?
>>
>> Fabian
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by PSI :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Guys:

I am getting following error: Unable to locate Spring NamespaceHandler for XML schema namespace [http://jax-ws.dev.java.net/spring/servlet].....does this ever worked with Spring?

My configuration:

tomcat-5.5.27
jdk-1.5_18
spring-2.5.6-SCE01
metro_1.5
jax-ws-spring-1.8.jar
xbean-spring-3.4.3.jar


Spring config header...

<?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:p="http://www.springframework.org/schema/p"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:ws="http://jax-ws.dev.java.net/spring/core"
        xmlns:wss="http://jax-ws.dev.java.net/spring/servlet"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd 
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd 
        http://jax-ws.dev.java.net/spring/core https://jax-ws.dev.java.net/spring/core.xsd
        http://jax-ws.dev.java.net/spring/servlet https://jax-ws.dev.java.net/spring/servlet.xsd">

        <wss:binding url="/ws">
                <wss:service>
                        <ws:service bean="#webService" />
                </wss:service>
        </wss:binding>    <!-- this bean implements web service methods -->
        <bean id="webService" class="com.ws.service.impl.SearchDelegate" />
</beans>



Fabian Ritzmann-3 wrote:
On 14. Nov 2008, at 14:57, Sreekanth wrote:

> It's Windows Vista Business edition(Version 6.0 Build 6001 :SP1) and  
> Java 1.6.0_06

Thanks for your help. I tried with 1.5.0_16 and 1.6.0_07 on Mac OS X  
10.5 and both worked fine.

Fabian


> Fabian Ritzmann wrote:
>> On 14. Nov 2008, at 13:50, Sreekanth wrote:
>>
>>> I just download the zip file you sent to the list and added the  
>>> jars and used your build file to create the war file.I deployed  
>>> the application into my tomcat 5.5
>>
>> As it stands, it's two successful deployments vs two failed ones. ;-)
>>
>> Sreekanth, what version of Windows are you running and what Java  
>> version?
>>
>> Fabian
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@metro.dev.java.net
For additional commands, e-mail: users-help@metro.dev.java.net

Re: JAX-WS and Spring: XML error

by Andreas Loew :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> I am getting following error: Unable to locate Spring NamespaceHandler for
> XML schema namespace [http://jax-ws.dev.java.net/spring/servlet].....does
> this ever worked with Spring?

Am I correctly assuming that you are using Eclipse and/or might have
other issues in accessing an HTTPS-based URL from your environment?

If yes, then see the issue description from francklucas in this thread:

http://forums.java.net/jive/thread.jspa?threadID=53672

for the likely solution.

HTH & best regards,

Andreas

--
Andreas Loew
Senior Java Architect
Sun Microsystems (Germany)

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: JAX-WS and Spring: XML error

by PSI :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks for the reply,

Well, i did tried that option with eclipse, and secondly, it is not advised to have schema location directing to external website.

Actually, it is inside jaxws-spring.jar, META/schemas.spring specifies the location, which is inside JAR file.
When i start tomcat it throws errors... and yes i am using MyEclipse 7.1, and i am aware of eclipse not validating this spring config- which i am ignoring at this point.

But still couldn;t got this working with tomcat, but i did got somehow CXF working....an alternative....

Thanks,
Anil G



Andreas Loew wrote:
> I am getting following error: Unable to locate Spring NamespaceHandler for
> XML schema namespace [http://jax-ws.dev.java.net/spring/servlet].....does
> this ever worked with Spring?

Am I correctly assuming that you are using Eclipse and/or might have
other issues in accessing an HTTPS-based URL from your environment?

If yes, then see the issue description from francklucas in this thread:

http://forums.java.net/jive/thread.jspa?threadID=53672

for the likely solution.

HTH & best regards,

Andreas

--
Andreas Loew
Senior Java Architect
Sun Microsystems (Germany)

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@metro.dev.java.net
For additional commands, e-mail: users-help@metro.dev.java.net
< Prev | 1 - 2 | Next >