Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java_weekendowa_20221008
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patryk Czarnik
java_weekendowa_20221008
Commits
2052de65
Commit
2052de65
authored
Dec 10, 2022
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hello world w SOAP
parent
93495183
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
pom.xml
PC33-SoapSerwer/pom.xml
+22
-0
PierwszySerwis.java
PC33-SoapSerwer/src/main/java/hello/PierwszySerwis.java
+12
-0
No files found.
PC33-SoapSerwer/pom.xml
View file @
2052de65
...
@@ -23,4 +23,26 @@
...
@@ -23,4 +23,26 @@
</plugin>
</plugin>
</plugins>
</plugins>
</build>
</build>
<dependencies>
<!-- 3 zależności nie byłyby potrzebne w Javie 8.
Technologie JAX-WS oraz JAXB były częścią Java Standard Edition w wersjach od 6 do 10.
W Java 11 usunięto je ze Standard Edition i od tej pory trzeba dołączać jako biblioteki.
-->
<dependency>
<groupId>
javax.jws
</groupId>
<artifactId>
javax.jws-api
</artifactId>
<version>
1.1
</version>
</dependency>
<dependency>
<groupId>
javax.xml.ws
</groupId>
<artifactId>
jaxws-api
</artifactId>
<version>
2.3.1
</version>
</dependency>
<dependency>
<groupId>
javax.xml.bind
</groupId>
<artifactId>
jaxb-api
</artifactId>
<version>
2.3.1
</version>
</dependency>
</dependencies>
</project>
</project>
PC33-SoapSerwer/src/main/java/hello/PierwszySerwis.java
0 → 100644
View file @
2052de65
package
hello
;
import
javax.jws.WebService
;
@WebService
public
class
PierwszySerwis
{
public
String
witaj
(
String
imie
)
{
return
"Witaj "
+
imie
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment