Author: jocaba
Date: Fri Dec 17 00:30:10 2010
New Revision: 1050256
URL: http://svn.apache.org/viewvc?rev=1050256&view=rev
Log:
[NPANDAY-334] Update Integration Tests in relation with the UAC & PAB removal
enhancements Updated webreference sample test.
Added:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/
- copied from r1042946,
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/Web
References/
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.cs
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.map
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.wsdl
Removed:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/Web
References/
Modified:
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayITClassLibWithWebRefInstallTest.java
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/pom.xml
Modified:
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayITClassLibWithWebRefInstallTest.java
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayITClassLibWithWebRefInstallTest.java?rev=1050256&r1=1050255&r2=1050256&view=diff
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayITClassLibWithWebRefInstallTest.java
(original)
+++
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayITClassLibWithWebRefInstallTest.java
Fri Dec 17 00:30:10 2010
@@ -39,7 +39,7 @@ public class NPandayITClassLibWithWebRef
File testDir = ResourceExtractor.simpleExtractResources( getClass(),
"/ClassLibraryWithWebReference" );
Verifier verifier = getVerifier( testDir );
verifier.executeGoal( "install" );
- String generatedClass = "ClassLibraryWithWebReference/Web
References/com.amazon.soap/AmazonSearch.cs";
+ String generatedClass =
"ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs";
verifier.assertFilePresent( new File( testDir, generatedClass
).getAbsolutePath() );
verifier.assertFilePresent( new File( testDir,
"ClassLibraryWithWebReference/" +
getAssemblyFile( "ClassLibraryWithWebReference", "1.0.0", "dll" )
).getAbsolutePath() );
Added:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.cs
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.cs?rev=1050256&view=auto
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.cs
(added)
+++
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.cs
Fri Dec 17 00:30:10 2010
@@ -0,0 +1,156 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:2.0.50727.4952
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+//
+// This source code was auto-generated by Microsoft.VSDesigner, Version
2.0.50727.4952.
+//
+#pragma warning disable 1591
+
+namespace ClassLibrary1.net.webservicex.www {
+ using System.Diagnostics;
+ using System.Web.Services;
+ using System.ComponentModel;
+ using System.Web.Services.Protocols;
+ using System;
+ using System.Xml.Serialization;
+
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services",
"2.0.50727.4927")]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ [System.Web.Services.WebServiceBindingAttribute(Name="SendSMSWorldSoap",
Namespace="http://www.webserviceX.NET")]
+ public partial class SendSMSWorld :
System.Web.Services.Protocols.SoapHttpClientProtocol {
+
+ private System.Threading.SendOrPostCallback sendSMSOperationCompleted;
+
+ private bool useDefaultCredentialsSetExplicitly;
+
+ /// <remarks/>
+ public SendSMSWorld() {
+ this.Url =
global::ClassLibrary1.Properties.Settings.Default.ClassLibrary1_net_webservicex_www_SendSMSWorld;
+ if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
+ this.UseDefaultCredentials = true;
+ this.useDefaultCredentialsSetExplicitly = false;
+ }
+ else {
+ this.useDefaultCredentialsSetExplicitly = true;
+ }
+ }
+
+ public new string Url {
+ get {
+ return base.Url;
+ }
+ set {
+ if ((((this.IsLocalFileSystemWebService(base.Url) == true)
+ && (this.useDefaultCredentialsSetExplicitly ==
false))
+ && (this.IsLocalFileSystemWebService(value) ==
false))) {
+ base.UseDefaultCredentials = false;
+ }
+ base.Url = value;
+ }
+ }
+
+ public new bool UseDefaultCredentials {
+ get {
+ return base.UseDefaultCredentials;
+ }
+ set {
+ base.UseDefaultCredentials = value;
+ this.useDefaultCredentialsSetExplicitly = true;
+ }
+ }
+
+ /// <remarks/>
+ public event sendSMSCompletedEventHandler sendSMSCompleted;
+
+ /// <remarks/>
+
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.webserviceX.NET/sendSMS",
RequestNamespace="http://www.webserviceX.NET",
ResponseNamespace="http://www.webserviceX.NET",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
+ public string sendSMS(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message) {
+ object[] results = this.Invoke("sendSMS", new object[] {
+ FromEmailAddress,
+ CountryCode,
+ MobileNumber,
+ Message});
+ return ((string)(results[0]));
+ }
+
+ /// <remarks/>
+ public void sendSMSAsync(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message) {
+ this.sendSMSAsync(FromEmailAddress, CountryCode, MobileNumber,
Message, null);
+ }
+
+ /// <remarks/>
+ public void sendSMSAsync(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message, object userState) {
+ if ((this.sendSMSOperationCompleted == null)) {
+ this.sendSMSOperationCompleted = new
System.Threading.SendOrPostCallback(this.OnsendSMSOperationCompleted);
+ }
+ this.InvokeAsync("sendSMS", new object[] {
+ FromEmailAddress,
+ CountryCode,
+ MobileNumber,
+ Message}, this.sendSMSOperationCompleted, userState);
+ }
+
+ private void OnsendSMSOperationCompleted(object arg) {
+ if ((this.sendSMSCompleted != null)) {
+ System.Web.Services.Protocols.InvokeCompletedEventArgs
invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
+ this.sendSMSCompleted(this, new
sendSMSCompletedEventArgs(invokeArgs.Results, invokeArgs.Error,
invokeArgs.Cancelled, invokeArgs.UserState));
+ }
+ }
+
+ /// <remarks/>
+ public new void CancelAsync(object userState) {
+ base.CancelAsync(userState);
+ }
+
+ private bool IsLocalFileSystemWebService(string url) {
+ if (((url == null)
+ || (url == string.Empty))) {
+ return false;
+ }
+ System.Uri wsUri = new System.Uri(url);
+ if (((wsUri.Port >= 1024)
+ && (string.Compare(wsUri.Host, "localHost",
System.StringComparison.OrdinalIgnoreCase) == 0))) {
+ return true;
+ }
+ return false;
+ }
+ }
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services",
"2.0.50727.4927")]
+ public delegate void sendSMSCompletedEventHandler(object sender,
sendSMSCompletedEventArgs e);
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services",
"2.0.50727.4927")]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ public partial class sendSMSCompletedEventArgs :
System.ComponentModel.AsyncCompletedEventArgs {
+
+ private object[] results;
+
+ internal sendSMSCompletedEventArgs(object[] results, System.Exception
exception, bool cancelled, object userState) :
+ base(exception, cancelled, userState) {
+ this.results = results;
+ }
+
+ /// <remarks/>
+ public string Result {
+ get {
+ this.RaiseExceptionIfNecessary();
+ return ((string)(this.results[0]));
+ }
+ }
+ }
+}
+
+#pragma warning restore 1591
\ No newline at end of file
Added:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.map
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.map?rev=1050256&view=auto
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.map
(added)
+++
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/Reference.map
Fri Dec 17 00:30:10 2010
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<DiscoveryClientResultsFile
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <Results>
+ <DiscoveryClientResult
referenceType="System.Web.Services.Discovery.ContractReference"
url="http://www.webservicex.net/sendsmsworld.asmx?WSDL"
filename="sendsmsworld.wsdl" />
+ </Results>
+</DiscoveryClientResultsFile>
\ No newline at end of file
Added:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs?rev=1050256&view=auto
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs
(added)
+++
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.cs
Fri Dec 17 00:30:10 2010
@@ -0,0 +1,121 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:2.0.50727.4952
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+//
+// This source code was auto-generated by wsdl, Version=2.0.50727.3038.
+//
+namespace net.webservicex.www {
+ using System.Xml.Serialization;
+ using System.Web.Services;
+ using System.ComponentModel;
+ using System.Web.Services.Protocols;
+ using System;
+ using System.Diagnostics;
+
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ [System.Web.Services.WebServiceBindingAttribute(Name="SendSMSWorldSoap",
Namespace="http://www.webserviceX.NET")]
+ public partial class SendSMSWorld :
System.Web.Services.Protocols.SoapHttpClientProtocol {
+
+ private System.Threading.SendOrPostCallback sendSMSOperationCompleted;
+
+ /// <remarks/>
+ public SendSMSWorld() {
+ this.Url = "http://www.webservicex.net/sendsmsworld.asmx";
+ }
+
+ /// <remarks/>
+ public event sendSMSCompletedEventHandler sendSMSCompleted;
+
+ /// <remarks/>
+
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.webserviceX.NET/sendSMS",
RequestNamespace="http://www.webserviceX.NET",
ResponseNamespace="http://www.webserviceX.NET",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
+ public string sendSMS(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message) {
+ object[] results = this.Invoke("sendSMS", new object[] {
+ FromEmailAddress,
+ CountryCode,
+ MobileNumber,
+ Message});
+ return ((string)(results[0]));
+ }
+
+ /// <remarks/>
+ public System.IAsyncResult BeginsendSMS(string FromEmailAddress,
string CountryCode, string MobileNumber, string Message, System.AsyncCallback
callback, object asyncState) {
+ return this.BeginInvoke("sendSMS", new object[] {
+ FromEmailAddress,
+ CountryCode,
+ MobileNumber,
+ Message}, callback, asyncState);
+ }
+
+ /// <remarks/>
+ public string EndsendSMS(System.IAsyncResult asyncResult) {
+ object[] results = this.EndInvoke(asyncResult);
+ return ((string)(results[0]));
+ }
+
+ /// <remarks/>
+ public void sendSMSAsync(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message) {
+ this.sendSMSAsync(FromEmailAddress, CountryCode, MobileNumber,
Message, null);
+ }
+
+ /// <remarks/>
+ public void sendSMSAsync(string FromEmailAddress, string CountryCode,
string MobileNumber, string Message, object userState) {
+ if ((this.sendSMSOperationCompleted == null)) {
+ this.sendSMSOperationCompleted = new
System.Threading.SendOrPostCallback(this.OnsendSMSOperationCompleted);
+ }
+ this.InvokeAsync("sendSMS", new object[] {
+ FromEmailAddress,
+ CountryCode,
+ MobileNumber,
+ Message}, this.sendSMSOperationCompleted, userState);
+ }
+
+ private void OnsendSMSOperationCompleted(object arg) {
+ if ((this.sendSMSCompleted != null)) {
+ System.Web.Services.Protocols.InvokeCompletedEventArgs
invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
+ this.sendSMSCompleted(this, new
sendSMSCompletedEventArgs(invokeArgs.Results, invokeArgs.Error,
invokeArgs.Cancelled, invokeArgs.UserState));
+ }
+ }
+
+ /// <remarks/>
+ public new void CancelAsync(object userState) {
+ base.CancelAsync(userState);
+ }
+ }
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
+ public delegate void sendSMSCompletedEventHandler(object sender,
sendSMSCompletedEventArgs e);
+
+ /// <remarks/>
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
+ public partial class sendSMSCompletedEventArgs :
System.ComponentModel.AsyncCompletedEventArgs {
+
+ private object[] results;
+
+ internal sendSMSCompletedEventArgs(object[] results, System.Exception
exception, bool cancelled, object userState) :
+ base(exception, cancelled, userState) {
+ this.results = results;
+ }
+
+ /// <remarks/>
+ public string Result {
+ get {
+ this.RaiseExceptionIfNecessary();
+ return ((string)(this.results[0]));
+ }
+ }
+ }
+}
Added:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.wsdl
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.wsdl?rev=1050256&view=auto
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.wsdl
(added)
+++
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/WebReferences/net.webservicex.www/sendsmsworld.wsdl
Fri Dec 17 00:30:10 2010
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="utf-8"?>
+<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:tns="http://www.webserviceX.NET"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
targetNamespace="http://www.webserviceX.NET"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+ <wsdl:types>
+ <s:schema elementFormDefault="qualified"
targetNamespace="http://www.webserviceX.NET">
+ <s:element name="sendSMS">
+ <s:complexType>
+ <s:sequence>
+ <s:element minOccurs="0" maxOccurs="1" name="FromEmailAddress"
type="s:string" />
+ <s:element minOccurs="0" maxOccurs="1" name="CountryCode"
type="s:string" />
+ <s:element minOccurs="0" maxOccurs="1" name="MobileNumber"
type="s:string" />
+ <s:element minOccurs="0" maxOccurs="1" name="Message"
type="s:string" />
+ </s:sequence>
+ </s:complexType>
+ </s:element>
+ <s:element name="sendSMSResponse">
+ <s:complexType>
+ <s:sequence>
+ <s:element minOccurs="0" maxOccurs="1" name="sendSMSResult"
type="s:string" />
+ </s:sequence>
+ </s:complexType>
+ </s:element>
+ <s:element name="string" nillable="true" type="s:string" />
+ </s:schema>
+ </wsdl:types>
+ <wsdl:message name="sendSMSSoapIn">
+ <wsdl:part name="parameters" element="tns:sendSMS" />
+ </wsdl:message>
+ <wsdl:message name="sendSMSSoapOut">
+ <wsdl:part name="parameters" element="tns:sendSMSResponse" />
+ </wsdl:message>
+ <wsdl:message name="sendSMSHttpGetIn">
+ <wsdl:part name="FromEmailAddress" type="s:string" />
+ <wsdl:part name="CountryCode" type="s:string" />
+ <wsdl:part name="MobileNumber" type="s:string" />
+ <wsdl:part name="Message" type="s:string" />
+ </wsdl:message>
+ <wsdl:message name="sendSMSHttpGetOut">
+ <wsdl:part name="Body" element="tns:string" />
+ </wsdl:message>
+ <wsdl:message name="sendSMSHttpPostIn">
+ <wsdl:part name="FromEmailAddress" type="s:string" />
+ <wsdl:part name="CountryCode" type="s:string" />
+ <wsdl:part name="MobileNumber" type="s:string" />
+ <wsdl:part name="Message" type="s:string" />
+ </wsdl:message>
+ <wsdl:message name="sendSMSHttpPostOut">
+ <wsdl:part name="Body" element="tns:string" />
+ </wsdl:message>
+ <wsdl:portType name="SendSMSWorldSoap">
+ <wsdl:operation name="sendSMS">
+ <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Send
unlimited free SMS to following countries.<br><b>Note:</b>If
your country code 091,Please enter as 91 and if your mobile number
098XXXXX,Please enter as 98XXXX <br><table cellSpacing=0 cellPadding=5
border=0 border-collapse: collapse bordercolor=#111111><tr> <td
width=50% ><font size=2 ><b>This SMS covers following countries
and&nbsp; networks.</b></td> </tr>
<tr><td > <b>Austria -</b><font face=Arial
size=-1> Mobilkom<b><br> Bulgaria - </b>Mobiltel
<b><br>Croatia -</b> Cronet <b><br>Germany
-</b> E-Plus,Mannesman D2 <b><br>Israel - </b>Pelephone
<b><br>Lithuania -</b> Omnitel
<b><br>Maldives - </b>Dhiraagu <b><br>Norway -
</b>NetCom,TeleNor <b><br> Swit
zerland - </b>Bluewin <b><br>USA - </b>Ameritech
Cellular services ,Cellular One, Cingular <b><br>Brazil -
</b>ATL express,Telemig Cellular <b><br>Canada -</b>
Bell Mobility, Clearnet, Rogers AT&amp;T Wireless ,Telus
<b><br>France - </b>Itineris <b><br>India -
</b>Essar Cell Phone,RPG Cellular <b><br>Japan -
</b>NTT Docomo <b> <br>Malaysia - </b>Celcom
<b><br>New Zealand - </b>Messagetrack
<b><br>Spain -</b> MoviStar <b><br>Ukraine -
</b>Golden Telecom, UMC <b><br>USA - </b>Comcast
Cellular Communications,Voicestream Wireless Corp. </td></tr>
</table></wsdl:documentation>
+ <wsdl:input message="tns:sendSMSSoapIn" />
+ <wsdl:output message="tns:sendSMSSoapOut" />
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:portType name="SendSMSWorldHttpGet">
+ <wsdl:operation name="sendSMS">
+ <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Send
unlimited free SMS to following countries.<br><b>Note:</b>If
your country code 091,Please enter as 91 and if your mobile number
098XXXXX,Please enter as 98XXXX <br><table cellSpacing=0 cellPadding=5
border=0 border-collapse: collapse bordercolor=#111111><tr> <td
width=50% ><font size=2 ><b>This SMS covers following countries
and&nbsp; networks.</b></td> </tr>
<tr><td > <b>Austria -</b><font face=Arial
size=-1> Mobilkom<b><br> Bulgaria - </b>Mobiltel
<b><br>Croatia -</b> Cronet <b><br>Germany
-</b> E-Plus,Mannesman D2 <b><br>Israel - </b>Pelephone
<b><br>Lithuania -</b> Omnitel
<b><br>Maldives - </b>Dhiraagu <b><br>Norway -
</b>NetCom,TeleNor <b><br> Swit
zerland - </b>Bluewin <b><br>USA - </b>Ameritech
Cellular services ,Cellular One, Cingular <b><br>Brazil -
</b>ATL express,Telemig Cellular <b><br>Canada -</b>
Bell Mobility, Clearnet, Rogers AT&amp;T Wireless ,Telus
<b><br>France - </b>Itineris <b><br>India -
</b>Essar Cell Phone,RPG Cellular <b><br>Japan -
</b>NTT Docomo <b> <br>Malaysia - </b>Celcom
<b><br>New Zealand - </b>Messagetrack
<b><br>Spain -</b> MoviStar <b><br>Ukraine -
</b>Golden Telecom, UMC <b><br>USA - </b>Comcast
Cellular Communications,Voicestream Wireless Corp. </td></tr>
</table></wsdl:documentation>
+ <wsdl:input message="tns:sendSMSHttpGetIn" />
+ <wsdl:output message="tns:sendSMSHttpGetOut" />
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:portType name="SendSMSWorldHttpPost">
+ <wsdl:operation name="sendSMS">
+ <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Send
unlimited free SMS to following countries.<br><b>Note:</b>If
your country code 091,Please enter as 91 and if your mobile number
098XXXXX,Please enter as 98XXXX <br><table cellSpacing=0 cellPadding=5
border=0 border-collapse: collapse bordercolor=#111111><tr> <td
width=50% ><font size=2 ><b>This SMS covers following countries
and&nbsp; networks.</b></td> </tr>
<tr><td > <b>Austria -</b><font face=Arial
size=-1> Mobilkom<b><br> Bulgaria - </b>Mobiltel
<b><br>Croatia -</b> Cronet <b><br>Germany
-</b> E-Plus,Mannesman D2 <b><br>Israel - </b>Pelephone
<b><br>Lithuania -</b> Omnitel
<b><br>Maldives - </b>Dhiraagu <b><br>Norway -
</b>NetCom,TeleNor <b><br> Swit
zerland - </b>Bluewin <b><br>USA - </b>Ameritech
Cellular services ,Cellular One, Cingular <b><br>Brazil -
</b>ATL express,Telemig Cellular <b><br>Canada -</b>
Bell Mobility, Clearnet, Rogers AT&amp;T Wireless ,Telus
<b><br>France - </b>Itineris <b><br>India -
</b>Essar Cell Phone,RPG Cellular <b><br>Japan -
</b>NTT Docomo <b> <br>Malaysia - </b>Celcom
<b><br>New Zealand - </b>Messagetrack
<b><br>Spain -</b> MoviStar <b><br>Ukraine -
</b>Golden Telecom, UMC <b><br>USA - </b>Comcast
Cellular Communications,Voicestream Wireless Corp. </td></tr>
</table></wsdl:documentation>
+ <wsdl:input message="tns:sendSMSHttpPostIn" />
+ <wsdl:output message="tns:sendSMSHttpPostOut" />
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="SendSMSWorldSoap" type="tns:SendSMSWorldSoap">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
+ <wsdl:operation name="sendSMS">
+ <soap:operation soapAction="http://www.webserviceX.NET/sendSMS"
style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:binding name="SendSMSWorldSoap12" type="tns:SendSMSWorldSoap">
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
+ <wsdl:operation name="sendSMS">
+ <soap12:operation soapAction="http://www.webserviceX.NET/sendSMS"
style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap12:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:binding name="SendSMSWorldHttpGet" type="tns:SendSMSWorldHttpGet">
+ <http:binding verb="GET" />
+ <wsdl:operation name="sendSMS">
+ <http:operation location="/sendSMS" />
+ <wsdl:input>
+ <http:urlEncoded />
+ </wsdl:input>
+ <wsdl:output>
+ <mime:mimeXml part="Body" />
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:binding name="SendSMSWorldHttpPost" type="tns:SendSMSWorldHttpPost">
+ <http:binding verb="POST" />
+ <wsdl:operation name="sendSMS">
+ <http:operation location="/sendSMS" />
+ <wsdl:input>
+ <mime:content type="application/x-www-form-urlencoded" />
+ </wsdl:input>
+ <wsdl:output>
+ <mime:mimeXml part="Body" />
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:service name="SendSMSWorld">
+ <wsdl:port name="SendSMSWorldSoap" binding="tns:SendSMSWorldSoap">
+ <soap:address location="http://www.webservicex.net/sendsmsworld.asmx" />
+ </wsdl:port>
+ <wsdl:port name="SendSMSWorldSoap12" binding="tns:SendSMSWorldSoap12">
+ <soap12:address location="http://www.webservicex.net/sendsmsworld.asmx"
/>
+ </wsdl:port>
+ <wsdl:port name="SendSMSWorldHttpGet" binding="tns:SendSMSWorldHttpGet">
+ <http:address location="http://www.webservicex.net/sendsmsworld.asmx" />
+ </wsdl:port>
+ <wsdl:port name="SendSMSWorldHttpPost" binding="tns:SendSMSWorldHttpPost">
+ <http:address location="http://www.webservicex.net/sendsmsworld.asmx" />
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file
Modified:
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/pom.xml?rev=1050256&r1=1050255&r2=1050256&view=diff
==============================================================================
---
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/pom.xml
(original)
+++
incubator/npanday/npanday-its/trunk/src/test/resources/ClassLibraryWithWebReference/ClassLibraryWithWebReference/pom.xml
Fri Dec 17 00:30:10 2010
@@ -41,12 +41,12 @@
<configuration>
<webreferences>
<webreference>
- <namespace>com.amazon.soap</namespace>
- <path>Web References/com.amazon.soap/AmazonSearch.wsdl</path>
- <output>Web References/com.amazon.soap</output>
+ <namespace>net.webservicex.www</namespace>
+ <path>WebReferences/net.webservicex.www/sendsmsworld.wsdl</path>
+ <output>WebReferences/net.webservicex.www/</output>
</webreference>
</webreferences>
- </configuration>
+ </configuration>
</plugin>
</plugins>
</build>