weblogic

webservice calling another webservice

自作多情 提交于 2019-12-25 09:26:32
问题 Does anyone know how to call one webservice from another webservice? Is it even possible? I am using weblogic but it doesnt really go into details with regards to how the WSDLs would change from the invoking web service to the second one. Any tips on how I would call one form another would be appreicated. thanks Mark 回答1: I can't speak for web logic, but for Web services, and of course it is possible to call Web services from Web services. The WSDL does not change at all since it only

Initializing CDI Bean Name Ambiguous

余生长醉 提交于 2019-12-25 09:05:24
问题 I have a web application running on JSF 2.2 over WebLogic Application server. I have a simple java class and trying to initialize it as an ApplicationScoped object using CDI. The below code works fine and gets deployed. import javax.enterprise.context.ApplicationScoped; @ApplicationScoped public class AppContext { public AppContext() { } } However when I try to initialize the object with @Named annotation, it fails to deploy what so ever import javax.enterprise.context.ApplicationScoped;

wldeploy on all files in deployment folder

隐身守侯 提交于 2019-12-25 07:37:38
问题 I am trying to automate my web logic deployment for my local dev environment. I currently an using a master ant build file that compiles ~60 projects and copies the related ear,war, jar files to a deployment folder off of the root. Right now we install these one by one vie the wl console. I am trying to automate this using wldeploy in the master build file. I would like to be able to feed this task a list of files to deploy sequentially. Ant-contrib has something similar but it appears to

docx4j with weblogic Bad [Content_Types].xml Exception

爱⌒轻易说出口 提交于 2019-12-25 06:38:00
问题 how to solve this Exception when I use docx4j with weblogic to open docx file. follow is my code: WordprocessingMLPackage templatePackage = WordprocessingMLPackage .load(getDocxInputTream()); Exception is : 2013-04-03 18:10:29 ERROR ContentTypeManager:698 - java.lang.NullPointerException org.docx4j.openpackaging.exceptions.InvalidFormatException: Bad [Content_Types].xml at org.docx4j.openpackaging.contenttype.ContentTypeManager.parseContentTypesFile(ContentTypeManager.java:699) at org.docx4j

Lock and Edit Button is Weblogic 12C admin console is not responding ,

 ̄綄美尐妖づ 提交于 2019-12-25 05:35:07
问题 Lock and Edit Button is Weblogic 12C admin console is not responding , when I click it it just keeps loading and nothing happens , I have tried Different Browsers with different cache settings nothing works. I want to make changes to the console . Is there any resolution? This is a strange issue I could not find answers for this anywhere 回答1: Take a thread dump at the AdminServer JVM at the time it "hangs". To see what hangs exactly. If you are running inside an virtual Linux VM adding Java

How can i set current date using expression builder in oracle adf?

房东的猫 提交于 2019-12-25 05:09:08
问题 How can i set current date using expression builder in oracle adf? i am using jdeveloper 11.1.1.3.0 and using Input Date(ADF faces.common.component) 回答1: The expression builder is used to build EL expressions that reference a method or a value property. Its not meant to set a value but to make it available for editing. One option would be to use a method expression to invoke an action on a manage bean that then sets the value. However, in JSF 1.2 you cannot pass arguments to an EL method and

ELResolver cannot handle a null base Object - Weblogic 10.3.x, Facelets 1.1.14, RichFaces 3.3.2

岁酱吖の 提交于 2019-12-25 04:47:04
问题 I'm having trouble using RichFaces 3.3.2 and Facelets 1.1.14 under Weblogic 10.3.4 and 10.3.5 (aka 11g). I have an xhtml file with the expression #{empty messages} , and on the console I get the following exception: SEVERE: Error Rendering View[/index.xhtml] javax.el.ELException: //media/DADOS/data/java/wl1034/user_projects/domains/wlrep1034/autodeploy/SimpleJSFa/index.xhtml: ELResolver cannot handle a null base Object with identifier 'messages' at com.sun.facelets.compiler.TextInstruction

What is the full WSDL endpoint url

五迷三道 提交于 2019-12-25 04:23:16
问题 I have a wsdl content which shows the Service element like below. <service name="CheckIn"> <port name="CheckInSoap" binding="s0:CheckInSoap"> <soap:address location="http://10.50.130.93:16200/_dav/cs/idcplg" /> </port> </service> I want to the access the WSDL url like http://ip:port/../..?wsdl from the server 10.50.130.93 . I have tried the url http://10.50.130.93:16200/_dav/cs/idcplg?wsdl and http://10.50.130.93:16200/_dav/cs/idcplg/CheckIn?wsdl . But both them doesn't show the WSDL content

Gradle custom ear

佐手、 提交于 2019-12-25 03:08:52
问题 I would like to deploy my project with below structure: --MyPrj.ear --APP-INF --classes --lib --META-INF --application.xml --weblogic-application.xml --WEB_MAIN --assets --WEB-INF --conf --web.xml --weblogic.xml And here is my ear configuration ear { appDirName 'APP-INF/src' libDirName 'APP-INF/lib' deploymentDescriptor { applicationName = "MyPRJ" displayName = "My Project" description = "My Project" } } 来源: https://stackoverflow.com/questions/31978589/gradle-custom-ear

set contextpath for EJB3 webservice on Weblogic 11g

喜你入骨 提交于 2019-12-25 02:42:44
问题 I build a web service with ejb3 and maven (EAR File),code First, JAXWS, Without WSDL and without WAR, only ejb , with Eclipse, the service works in JBOSS but now i need put the service in Weblogic 11g . With JBOSS i have the annotation @WebContext(contextRoot="/wsManCa7", urlPattern="/manCA7WS") But on Weblogic not, I found this link http://erikwramner.wordpress.com/2012/03/26/ejb3-web-service-context-path-in-weblogic-11g/ to create weblogic-webservices.xml and webservices.xml I put the files