[JBoss Tools] - 403 Error in Eclipse jBPM Process deployment
by Steve Larsen
Steve Larsen [http://community.jboss.org/people/slarsen] created the discussion
"403 Error in Eclipse jBPM Process deployment"
To view the discussion, visit: http://community.jboss.org/message/542894#542894
--------------------------------------------------------------
Using jBoss Tools 3.x in Eclipse and trying to deploy a process par was running into authentication issues (403 error). Trying all things on the interent for the Server Deployer (e.g. jbpm-console/upload and jbpm-console/app/upload among a veriety of other suggestions) failed to correct. Then found an obscure JIRA comment regarding trying to deploy in authenticated environment required a different servlet (gpd-deployer/upload). Tried this and it worked.
I'm a newbie and do not yet know all the terms or dependencies of the entire JBoss Tools and certainly do not have an understanding of the various "jar" files associated with different components of the Eclipse plug-ins (makes my head spin trying to follow some forum threads on "make sure x.jar is in xx directory...") but for what it's worth, I thought it interesting that this is not documented anywhere (I presume because from what I've read that it is assumed that you are working in an unauthenticated environment so there is no need to use credentials when deploying).
Perhaps this can help someone else in the same situation (or someone in the know can respond with the "official" way if this is not correct).
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542894#542894]
Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
15 years, 11 months
Re: [jboss-user] [JBoss Web Services] - wsconsume generates JAXBelement<String> instead of just String for xs:string
by Felix Friedrich
Felix Friedrich [http://community.jboss.org/people/felix-friedrich] replied to the discussion
"wsconsume generates JAXBelement<String> instead of just String for xs:string"
To view the discussion, visit: http://community.jboss.org/message/542883#542883
--------------------------------------------------------------
Hej hej,
in some cases your solution solved my problem. But I still have some cases where the JAXBElement occures in the Java code.
This definition in the WSDL...
<element name="Name" type="tv:NameType"/>
<complexType name="NameType">
<sequence minOccurs="1" maxOccurs="unbounded">
<element name="begin" type="xsd:time" minOccurs="1" maxOccurs="1"/>
<element name="end" type="xsd:time" minOccurs="1" maxOccurs="1"/>
</sequence>
<attribute name="begin" type="tv:AnotherType" use="required"/>
<attribute name="end" type="tv:AnotherType" use="optional"/>
</complexType>
... will be this Java code:
@XmlElementRefs({
@XmlElementRef(name = "begin", namespace = "http://...", type = JAXBElement.class),
@XmlElementRef(name = "end", namespace = "http://...", type = JAXBElement.class)
})
protected List<JAXBElement<XMLGregorianCalendar>> beginAndEnd;
@XmlAttribute(required = true)
protected AnotherType begin;
@XmlAttribute
protected AnotherType end;
I do not know why there is still this occurence of the JAXBElement and it is not very nice to use in the code. Any suggestions/explanations?
Thanks,
F.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542883#542883]
Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
15 years, 11 months
Re: [jboss-user] [JBoss Web Services CXF] - jBoss 5 and CXF 2.2.7
by Alessio Soldano
Alessio Soldano [http://community.jboss.org/people/alessio.soldano%40jboss.com] replied to the discussion
"jBoss 5 and CXF 2.2.7"
To view the discussion, visit: http://community.jboss.org/message/542851#542851
--------------------------------------------------------------
As to what customizations JBossWS-CXF adds on top of vanilla Apache CXF, I'd say those are basically of two kinds:
* proper integration with JBoss AS (seamless support for EJB3 endpoints, JSR 109 v.1.2 impl [*], webserviceref injection in ejb3, JAAS integration [*] ...)
* JBoss WebService Framework (WSF) additions (support for JAXBIntroductions, common address rewrite, common jbossws management, common jbossws jaxws tooling, common jbossws api for using JSR-261, ...)
[*] completed in JBossWS 3.3.0, which should be released by the end of May 2010
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542851#542851]
Start a new discussion in JBoss Web Services CXF at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
15 years, 11 months