Development and Test Environment
These examples have been tested on a machine with JDK 1.8 version and developed at Eclipse IDE for Java EE Developers (Oxygen 2). Download the installation here and choose Eclipse IDE for Java EE Developers to install it on your computer.
Creating a Java Project in Eclipse
This chapter explains the steps creating a new Java project.
Run “Eclipse”.
Go to “File” menu.
Select "New" - “Java Project”.
Enter a project name "CWS" and click the “Finish” button.
A new project will be created with the given name.
Setting a Web Service Client up
This chapter explains the steps setting up a web service client in your new Java project.
Click mouse right button on the project name under the Package Explorer.
Click the [New] - [Other ...].
Enter “Web Service” at wizards input box.
Select “Web Service Client“, then click “Next” button.
Enter http://e3.sap.cubemaster.net/calculation.svc?singlewsdl to the “Service definition” input box.
Define the “Develop client” as shown in the screen shot.
Then click the “Finish” button.
New packages and classes will be created automatically.




Adding a Main Class Package and Class
Click the mouse right button on “scr” package.
Click the “Package” on popup menu.
Enter Package name “org.main” at Name input box.Go to “org.main” package and then click the mouse right button.
Click the [New]-[Class].
Enter class name at name input box.
Check automatically method .
Select public static void main(String[] args).
Then click “Finish” button.
Main class will be generated automatically as screen shot.
Firstly, import all packages(Package Name org.tempuri.*,org.datacotract.schemas.*).
Write a try-catch statement in the main method.
Editing the Main Class Package and Class
Main class will be generated automatically as screen shot.
package org.main;
import org.tempuri.*;
import java.io.ByteArrayInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.axis.encoding.Base64;
import org.datacontract.schemas._2004._07.CubeMasterWebService.*;
public class LoadBuildingSample {
public static void main(String[] args) {
try {
} catch (Exception e) {
// TODO Auto-generated catch block
}
}
}
Import all packages (Package Name org.tempuri.*,org.datacotract.schemas.*).
Write a try-catch statement in the main method.
Add new statements to define the shipment information for the calculation. Define “Account”, “Shipment”, and “Options”. Define two cargoes. Define “Container” and “Shipment” rules.
Add new statements to send the shipment information to the CubeMaster service servers.
Add a try-catch statements to look up the results by seeing if “getStatus()” returns “OK”.
Add new statements to produce an image in a try-catch statement from the results.
Add cleanup statements.
package org.main;
import org.tempuri.*;
import java.io.ByteArrayInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.axis.encoding.Base64;
import org.datacontract.schemas._2004._07.CubeMasterWebService.*;
public class LoadBuildingSample {
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
ICalculationProxy iCalculationProxy = new ICalculationProxy();
//Define account information
//Please replace with the information of your account
Account account = new Account();
account.setUserID("chang@logen.co.kr");
account.setPassword("****");
account.setCompany("Logen Solutions");
//Define options
Options options = new Options();
options.setCalculationSaved(true);
options.setGraphicsCreated(true);
options.setGraphicsImageWidth((short) 300);
options.setGraphicsImageDepth((short) 300);
options.setThumbnailsCreated(true);
options.setThumbnailsImageWidth((short) 300);
options.setThumbnailsImageDepth((short) 300);
options.setUOM(1);//1=mm+Kg, 0=inch+lbs, 2=Cm+Kg
//Define shipment
Shipment shipment = iCalculationProxy.getShipment();
shipment.setTitle("New Shipment Sample for Vehicle Load v2");
shipment.setDescription("in Java Eclipse");
//Define two cargoes
Cargo[] Cargoes = new Cargo[3];
Cargoes[0] = new Cargo();
Cargoes[0].setName("First Cargo");
Cargoes[0].setLength(500);//mm
Cargoes[0].setWidth(500);//mm
Cargoes[0].setHeight(500);//mm
Cargoes[0].setQty((long) 40);
Cargoes[0].setSequence(1);
Cargoes[0].setGroupName("B");
Cargoes[0].setWeight(47.12);//kg
Cargoes[0].setColorKnownName("BLUE");
Cargoes[0].setFloorStackSupportsOthers(true);
Cargoes[1] = new Cargo();
Cargoes[1].setName("Second Cargo");
Cargoes[1].setLength(700);//mm
Cargoes[1].setWidth(800);//mm
Cargoes[1].setHeight(700);//mm
Cargoes[1].setQty((long) 156);
Cargoes[1].setSequence(2);
Cargoes[1].setGroupName("A");
Cargoes[1].setWeight(50.00);//kg
Cargoes[1].setColorKnownName("RED");
Cargoes[1].setFloorStackSupportsOthers(true);
Cargoes[2] = new Cargo();
Cargoes[2].setName("Third Cargo");
Cargoes[2].setLength(600);//mm
Cargoes[2].setWidth(550);//mm
Cargoes[2].setHeight(860);//mm
Cargoes[2].setQty((long)45);
Cargoes[2].setSequence(2);
Cargoes[2].setGroupName("A");
Cargoes[2].setWeight(12.00);//kg
Cargoes[2].setOrientationsAllowed(63);
Cargoes[2].setColorKnownName("YELLOW");
//Cargoes[2].setColorHexaCode("#FF00FF");
Cargoes[2].setFloorStackSupportsOthers(false);
shipment.setCargoes(Cargoes);
//Define containers
Container[] EmptyContainers = new Container[2];
EmptyContainers[0] = new Container();
EmptyContainers[0].setContainerType(2);//2=SeaContainer
EmptyContainers[0].setName("20FT Dry");
EmptyContainers[0].setLength((double) 5890);//mm
EmptyContainers[0].setWidth((double) 2330);//mm
EmptyContainers[0].setHeight((double) 2380);//mm
EmptyContainers[0].setMaxWeight((double) 5000);//kg
EmptyContainers[1] = new Container();
EmptyContainers[1].setContainerType(2);//2=SeaContainer
EmptyContainers[1].setName("40FT Dry");
EmptyContainers[1].setLength((double) 12050);//mm
EmptyContainers[1].setWidth((double) 2330);//mm
EmptyContainers[1].setHeight((double) 2380);//mm
EmptyContainers[1].setMaxWeight((double) 7000);//kg
shipment.setContainers(EmptyContainers);
//Define Rules
shipment.getRules().setIsWeightLimited(true);
shipment.getRules().setIsSequenceUsed(false);
shipment.getRules().setIsGroupUsed(false);
shipment.getRules().setIsSafeStackingUsed(true);
shipment.getRules().setMinSupportRate((double) 60);
shipment.getRules().setStackingRule(5);
shipment.getRules().setFillDirection(1);
//Run the calculation
LoadPlan loadPlan = iCalculationProxy.run(shipment, account, options);
//Show the return
System.out.println(loadPlan.getStatus());
//Show an error code if any
System.out.println(loadPlan.getCalculationError());
if(loadPlan.getStatus().equals("OK")) {
//Access the results
System.out.println("# of Containers =" + loadPlan.getFilledContainers().length);
InputStream is = null;
OutputStream os = null;
//Show all filled containers
try {
for (FilledContainer container : loadPlan.getFilledContainers()) {
//show the name of the container
System.out.println(container.getName());
System.out.println(container.getLength());
} // End of foreach - FilledContainer
} catch (Exception e) {
// TODO: handle exception
} finally { //Resource Cleanup
if(is != null) {
try {
is.close();
os.close();
} catch(IOException e) {
e.printStackTrace();
}
}
} // end of try-catch statement .. for Show all filled containers
} //LoadPlan.Status == "OK"
System.exit(0);
} catch (Exception e) {
// TODO: handle exception
}
}
}
토닥이 서비스는 대한민국 여성 고객을 위한 프리미엄 마사지 서비스입니다. 토닥이
i really hate it when my sebaceous gland are producing too much oil, it really makes my life miserable** NPB중계
An impressive share, I just now with all this onto a colleague who had been doing little analysis about this. And he in truth bought me breakfast due to the fact I discovered it for him.. smile. So i want to reword that: Thnx with the treat! But yeah Thnkx for spending some time to talk about this, I feel strongly regarding this and love reading much more about this topic. If possible, as you grow expertise, do you mind updating your site with an increase of details? It truly is highly useful for me. Large thumb up because of this article! KBO중계
토닥이와 함께 하는 여성전용 마사지를 소개합니다, 토닥이는 다양한 서비스와 여성전용 힐링공간을 압세워 다양한 서비스를 대한민국에서 보여주고 있습니다. 토닥이
You’re setting yourself up for greatness tourist guide to hot air balloon ride over luxor egypt
Thanks for your writing. I would like to say a health insurance broker also works for the benefit of the actual coordinators of any group insurance policies. The health insurance broker is given a directory of benefits sought by an individual or a group coordinator. What any broker can is try to find individuals and also coordinators which best complement those requirements. Then he gifts his advice and if the two of you agree, the particular broker formulates a legal contract between the two parties. Kayabola
I’m impressed, I have to admit. Genuinely rarely will i encounter a weblog that’s both educative and entertaining, and let me tell you, you’ve hit the nail to the head. Your idea is outstanding; the catch is an issue that inadequate consumers are speaking intelligently about. I am very happy i always stumbled across this around my search for some thing about it. situs bola365
Impressive work, try adding more depth to the background new zealand transit visa
Prince of Persia is the best, i really like the lead actor and also the princess, the princess is very pretty,. agen togel
seafoods are great because they are really tasty, i think that almost all seafoods are super duper tasty., bandar slot
very good post, i surely love this excellent website, keep on it slot gacor
This post post made me think. I will write something about this on my blog. Have a nice day!Ritatrend
you have a great weblog here! do you need to have invite posts in my small blog? office furniture
Well-written article. It's incredibly supportive for anyone who uses it, including me. I can't stop reading your posts. Thanks for the valuable help. كيف تسافر إلى نيوزيلندا في 10 أيام
Your recent post on Surgical Associates of Southern TX was fantastic! It’s clear that you put a lot of thought and effort into it, making it an invaluable resource for the <a href="https://www.surgicalstx.com/services/appendicitis-surgery-in-houston-usa/">appendix specialist near me</a> industry in Houston. Your blog is always a go-to for insightful content, and I can’t wait to see what you share next. Keep up the great work!
I have been meaning to post something like this on my blog and you have given me an idea. Cheers. poker online
Hello! I wish to offer a large thumbs up for that fantastic information you’ve here about this post. I am returning to your blog post to get more soon. situs slot
It’s difficult to get knowledgeable individuals on this topic, however you seem like there’s more you’re discussing! Thanks Australian travel guide
I enjoy just taking a break from studying and visiting your blog. I just wish you posted more regularly. situs slot
I’m impressed, I have to admit. Really rarely can i encounter a weblog that’s both educative and entertaining, and let me tell you, you might have hit the nail to the head. Your idea is outstanding; the problem is something not enough folks are speaking intelligently about. I am delighted i found this around my look for something in regards to this. toto slot
Wow that was unusual. I just wrote an very long comment but after I clicked submit my comment didn’t appear. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say fantastic blog! 除甲醛
Thank you for your own hard work on this website. Ellie enjoys conducting investigation and it is obvious why. All of us learn all of the compelling mode you produce simple tricks through this blog and as well cause participation from other ones about this area of interest then our daughter is now starting to learn a lot of things. Take advantage of the rest of the new year. You have been conducting a very good job.Supreme Hoodie
I appreciate you sharing this interesting article, and I'm glad I found your page through Google. Not just the material, but the entire website is excellent. visa for bolivia
Hello! I merely would choose to make a enormous thumbs up for that excellent information you may have here for this post. I’ll be returning to your blog for much more soon. Bolabosku
Read carefully the complete short article. There is certainly some definitely insightful data here. thanks. “The soul is the captain and ruler of the life of morals.” by Sallust.. 除蟑螂
You have mentioned very interesting details ! ps decent web site . agen togel
I want assembling utile info, this post has got me even more info! . situs togel
The design of ventsedgemakes it a pleasure to use.
The passion behind bulleyes.blog’s content is evident.
Every visit to hardcorebuzz is worth it!
Thank you, I have recently been searching for info about this topic for a while and yours is the best I’ve discovered till now. However, what in regards to the bottom line? Are you certain about the supply? koitoto slot
Mahjong Solitaire, the online version of Mahjong, gains wide popularity recently. The online version of the classic Chinese game is a matching game that uses the Mahjong tiles. Online Mahjong games can be found in many online gaming sites in variety of layouts and versions. situs poker
Hi there, just became aware of your blog through Google, and found that it’s really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. Lots of people will be benefited from your writing. Cheers! 카지노보증
I keep listening to the news update lecture about receiving free online grant applications so I have been looking around for the best site to get one. Could you advise me please, where could i get some? 메이저리그분석
I am typically in order to running a blog and that i actually appreciate your content. The actual article has actually peaks my personal interest. I am going to save your web site and gaze after checking for brand spanking new data. https://boktv11.com
Everyone should consider the 랜덤추첨기 for their next event
The workshops listed on the 대외활동 사이트 are top-notch
I love the thrill of using 꽁머니 on new games.
There are innumerable blogs in the world of the internet. But trust me, this site contains every single detail that makes it exceptional. I'll return time and time again. 네팔 시민을 위한 캄보디아 비자
Discover the world-class education at Seoul Scholars International’s 국제학교
블랙툰 is my go-to site for discovering new webtoons
발산노래방 offers an incredible karaoke experience with its top-notch audio system and vast song selection. A must-visit for karaoke lovers!
툰코 has become my favorite way to enjoy webtoons
Enjoying free webtoons is so easy with 웹툰 무료보기
Finding great webtoons on 웹툰 미리보기 has been so easy. I love the site’s layout
The 웹툰 다시보기 webtoon site is great for keeping up with all the new releases
Daily episodes and diverse genres make 뉴토끼 a webtoon fan’s paradise
Can’t stop reading the latest romance series on 블랙툰
비툰’s daily updates are perfect for keeping up with ongoing webtoons. Love it
The webtoons on 툰코 주소 are always so engaging and well-drawn
블랙툰 대체 is great, but expanding your horizons with different webtoon sites can enhance your overall reading enjoyment.
블랙툰 has the best webtoons I’ve ever read. Highly recommend checking it out
Really enjoying the interactive community on 툰코. Great way to connect with other fans
The 뉴토끼 webtoon site is fantastic for finding fresh content daily
블랙툰 has an excellent range of action-packed stories that are both thrilling and engaging. It’s a top choice for action fans.
The Jawa 42 Bobber is a cruiser bike, a motorcycle that perfectly blends classic design with modern performance. Its sleek, stripped-down aesthetic and powerful engine make every ride a statement of style and freedom. The Jawa 42 Bobber offers an unmatched riding experience. Ride the Jawa 42 Bobber and enjoy the long road trip. If you need Jawa Bobber 42 accessories you can visit Sans Classic Parts, which provides the best quality accessories at a reasonable price.
you should take vocal lessons if there is a need for you to sound like Taylor Swift or Josh Groban,. 슬롯사이트
Nothing beats the convenience of 웹툰 다시보기 on Blacktoon. It’s my go-to platform for all my favorite webtoons.
A visit to 강남 룸싸롱 is not complete without trying their state-of-the-art karaoke systems. The sound quality is phenomenal!
v
Checking 웹툰 미리보기 has become a daily habit. It makes the waiting period for new episodes so much more fun.
웹툰 미리보기 has made discovering new webtoons a breeze. The previews are detailed and help me select the best series to follow.
The 웹툰 미리보기 on TOONKOR is a fantastic feature that helps me find new webtoons. The previews are always detailed and informative.
Milky Way Casino
Duplicity is a nice movie,i like the story and also the actors., anabolen kopen ideal
It’s really a great and useful piece of information. I am happy that you shared this useful information with us. Please keep us up to date like this. Thanks for sharing. ombak88 slot
오피’s platform simplifies the search for high-quality relaxation services, making it straightforward to book a peaceful retreat.
When I originally commented I clicked the -Notify me when new comments are added- checkbox and already whenever a comment is added I am four emails with the exact same comment. Will there be by any means you may eliminate me from that service? Thanks!<a href="https://www.procolored.com/collections/dtf-printer">dtf printer</a>
Engaging with fellow readers on toonkor is a great way to discuss favorite series.
Implementing strategies like 소액결제현금화 can enhance financial flexibility and operational efficiency.
You have brought up a very superb points , thankyou for the post. dewatogel
PVD coating services in the USA are portrayed by their high-level gear, stringent quality control measures, and aptitude in material science and surface engineering. These offices are prepared to deal with both limited scope and huge scope creation, delivering reliable and excellent coatings that meet the demanding prerequisites of current industrial applications. Whether it's improving the presentation of auto parts, enhancing the strength of cutting devices or extending the life expectancy of clinical inserts, PVD coating services assume a pivotal part in driving innovation and greatness across different areas in the USA. pvd coating services in usa
Reliable auto transport by JW Logistic Inc. guarantees your vehicle is conveyed securely and on time, offering inner serenity with each move. Their expert administrations ensure a smooth and trustworthy transportation experience.
Ace Property Service offers complete termite and pest inspection services to safeguard your property from undesirable invasions. Our accomplished group utilizes progressed procedures and cutting-edge gear to recognize and distinguish pests early, forestalling likely harm to your home or business. We give exhaustive inspections, definite reports, and successful treatment plans customized to your requirements. Trust Ace Property Service to guarantee a without-pest climate, defending your venture and peace of brain.
If you need fast cash, check out credit instant. I used their credit instant service and was really impressed. Applied online and got approved instantly. The money was on my card in no time. Perfect for those unexpected expenses. Highly recommend this service for quick and easy access to funds!
I love 꽁머니 promotions! They make betting more exciting and give me the chance to win big without risking my own money.
Just binge-watched 나의 사랑스러운 요괴 여자친구 and it's amazing! The blend of romance and comedy is perfect.
Always leave 밤떡 feeling inspired and enlightened by the discussions.
Respect boundaries in 오피, ensuring a safe and enjoyable experience for patrons who seek solace and fulfillment.
골드핑거 is a must-watch for anyone who appreciates great storytelling.
Engaging with like-minded individuals and expanding my horizons on 대밤.
This 안마 establishment truly prioritizes customer satisfaction.
Discover the ancient art of "일본마사지" and unlock its therapeutic benefits for stress relief, improved circulation, and overall well-being.
Love how 펀초이스 connects me with Busan's vibrant community. Always find great recommendations and insights here.
Love using 부산비비기 for finding hidden gems in Busan - a must-have for residents and visitors alike!
The professionalism at 오피모아 ensures a top-notch massage experience every visit.
탑걸주소 offers a vast array of Japanese entertainment, making it a go-to platform for fans of anime, dramas, and movies.
I rely on 달리머넷 for honest feedback on relaxation treatments.
The community aspect of 대밤 enhances the user experience.
Don't compromise on safety when torrenting. Choose verified 토렌트 sites and implement security measures like VPNs for peace of mind.
커뮤니티 platforms foster meaningful connections and friendships, transcending geographical boundaries and cultural differences.
Finding it hard to tear myself away from the latest chapter of my favorite 웹툰. The suspense is killing me!
영화및드라마 rewatch sites revolutionize how we consume media, providing a seamless streaming experience for movie and drama enthusiasts alike.
Sports fans worldwide rely on 스포츠중계 platforms for live coverage of their favorite matches, tournaments, and events.
Organizing my research has never been easier thanks to 링크모음 sites.
The layout of 웹툰모아 is clean and intuitive. Makes for a seamless browsing experience.
누누tv's extensive library of content keeps me coming back for more. The ad-free experience is just the cherry on top.
Insightful commentary on 오피가이드 empowerment initiatives.
Love the variety of treatments offered at 오피가이드, there's something for everyone seeking relaxation and wellness.
The soothing ambiance and expert therapists at 오피가이드 make it my go-to spot for relaxation.