You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by bord <bo...@iscp.telcordia.com> on 2010/09/08 03:26:27 UTC

how does java2ws chose the port# for service

i imagine the subject is a simple beginner question but i cannot find the
answer.
when i use java2ws the port number gets assigned to 9090.
i checked the entire samples directory and in build.xml i encountered 9000
for port number.

i would like to think that the documentation for CXF mentions this but that
i'm too new to CXF to be able to find it.

cheers
bord
-- 
View this message in context: http://cxf.547215.n5.nabble.com/how-does-java2ws-chose-the-port-for-service-tp2807298p2807298.html
Sent from the cxf-user mailing list archive at Nabble.com.

RE: how does java2ws chose the port# for service

Posted by bord <bo...@iscp.telcordia.com>.
thanks Dan for suggestion:

>The only way to override it is to use the -address flag on the java2ws
command
line.

I tried this and it works. I may have to start looking at the code on my own
more :)

bord


-- 
View this message in context: http://cxf.547215.n5.nabble.com/how-does-java2ws-chose-the-port-for-service-tp2807298p2808355.html
Sent from the cxf-user mailing list archive at Nabble.com.

RE: how does java2ws chose the port# for service

Posted by Villoud Pierre Julien <pi...@atosorigin.com>.
Found the solution with maven :

Pom.xml :

<executions>
        <execution>
                <id>process-classes</id>
                <phase>process-classes</phase>
                <configuration>
                        ...
                        <argline>-address YOUR_URL</argline>
...
                </configuration>
                <goals>
                        <goal>java2ws</goal>
                </goals>
        </execution>
</executions>

-----Message d'origine-----
De : Daniel Kulp [mailto:dkulp@apache.org]
Envoyé : mercredi 8 septembre 2010 05:27
À : users@cxf.apache.org
Cc : bord
Objet : Re: how does java2ws chose the port# for service

On Tuesday 07 September 2010 9:26:27 pm bord wrote:
> i imagine the subject is a simple beginner question but i cannot find the
> answer.
> when i use java2ws the port number gets assigned to 9090.
> i checked the entire samples directory and in build.xml i encountered 9000
> for port number.
>
> i would like to think that the documentation for CXF mentions this but that
> i'm too new to CXF to be able to find it.
>
> cheers
> bord

Seems to be burned into the code:

public static final String DEFAULT_ADDRESS = "http://localhost:9090";


String address = ToolConstants.DEFAULT_ADDRESS + "/"
   + endpointInfo.getName().getLocalPart();

The only way to override it is to use the -address flag on the java2ws command
line.

--
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog



Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité du groupe Atos Origin ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos Origin group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.


RE: how does java2ws chose the port# for service

Posted by Villoud Pierre Julien <pi...@atosorigin.com>.
Hi,

I did not see this post before so i sent a message asking the same question... Sorry about that !

Is it possible to configure the address with the maven java2ws plugin ? I did not see any options regarding this parameter.

Thanks in advance

Pierre-Julien

-----Message d'origine-----
De : Daniel Kulp [mailto:dkulp@apache.org]
Envoyé : mercredi 8 septembre 2010 05:27
À : users@cxf.apache.org
Cc : bord
Objet : Re: how does java2ws chose the port# for service

On Tuesday 07 September 2010 9:26:27 pm bord wrote:
> i imagine the subject is a simple beginner question but i cannot find the
> answer.
> when i use java2ws the port number gets assigned to 9090.
> i checked the entire samples directory and in build.xml i encountered 9000
> for port number.
>
> i would like to think that the documentation for CXF mentions this but that
> i'm too new to CXF to be able to find it.
>
> cheers
> bord

Seems to be burned into the code:

public static final String DEFAULT_ADDRESS = "http://localhost:9090";


String address = ToolConstants.DEFAULT_ADDRESS + "/"
   + endpointInfo.getName().getLocalPart();

The only way to override it is to use the -address flag on the java2ws command
line.

--
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog



Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité du groupe Atos Origin ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos Origin group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.


Re: how does java2ws chose the port# for service

Posted by Daniel Kulp <dk...@apache.org>.
On Tuesday 07 September 2010 9:26:27 pm bord wrote:
> i imagine the subject is a simple beginner question but i cannot find the
> answer.
> when i use java2ws the port number gets assigned to 9090.
> i checked the entire samples directory and in build.xml i encountered 9000
> for port number.
> 
> i would like to think that the documentation for CXF mentions this but that
> i'm too new to CXF to be able to find it.
> 
> cheers
> bord 

Seems to be burned into the code:

public static final String DEFAULT_ADDRESS = "http://localhost:9090";


String address = ToolConstants.DEFAULT_ADDRESS + "/" 
   + endpointInfo.getName().getLocalPart();

The only way to override it is to use the -address flag on the java2ws command 
line.

-- 
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog