|
Lines 1-12
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2004 IBM Corporation and others. |
2 |
* Copyright (c) 2004, 2006 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
| 6 |
* http://www.eclipse.org/legal/epl-v10.html |
6 |
* http://www.eclipse.org/legal/epl-v10.html |
| 7 |
* |
7 |
* |
| 8 |
* Contributors: |
8 |
* Contributors: |
| 9 |
* IBM Corporation - initial API and implementation |
9 |
* IBM Corporation - initial API and implementation |
|
|
10 |
* yyyymmdd bug Email and other contact information |
| 11 |
* -------- -------- ----------------------------------------------------------- |
| 12 |
* 20060221 119111 rsinha@ca.ibm.com - Rupam Kuehner |
| 10 |
*******************************************************************************/ |
13 |
*******************************************************************************/ |
| 11 |
package org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton; |
14 |
package org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton; |
| 12 |
|
15 |
|
|
Lines 51-58
Link Here
|
| 51 |
javaWSDLParam.setJavaOutput(javaOutput); |
54 |
javaWSDLParam.setJavaOutput(javaOutput); |
| 52 |
|
55 |
|
| 53 |
|
56 |
|
| 54 |
|
57 |
String projectURL = null; |
| 55 |
String projectURL = ServerUtils.getEncodedWebComponentURL(serverProject, serviceServerTypeID_); |
58 |
if (serviceServerTypeID_ != null && serviceServerTypeID_.length()>0) |
|
|
59 |
{ |
| 60 |
projectURL = ServerUtils.getEncodedWebComponentURL(serverProject, serviceServerTypeID_); |
| 61 |
} |
| 62 |
else |
| 63 |
{ |
| 64 |
projectURL = "http://tempuri.org/"; |
| 65 |
} |
| 56 |
|
66 |
|
| 57 |
if (projectURL == null) { |
67 |
if (projectURL == null) { |
| 58 |
status = StatusUtils.errorStatus(NLS.bind(AxisCreationUIMessages.MSG_ERROR_PROJECT_URL, new String[] { serverProject.toString()})); |
68 |
status = StatusUtils.errorStatus(NLS.bind(AxisCreationUIMessages.MSG_ERROR_PROJECT_URL, new String[] { serverProject.toString()})); |
|
Lines 130-133
Link Here
|
| 130 |
public void setServiceServerTypeID(String serviceServerTypeID) { |
140 |
public void setServiceServerTypeID(String serviceServerTypeID) { |
| 131 |
this.serviceServerTypeID_ = serviceServerTypeID; |
141 |
this.serviceServerTypeID_ = serviceServerTypeID; |
| 132 |
} |
142 |
} |
| 133 |
} |
143 |
} |