E10 Assemblies C#

Ok found it you have to go through the WCF Service since everything in 10 is now WCF you create binding etc..

its… not as simple as it used to be… I'll see if I can throw an example together.



Jose C Gomez

Software Engineer


T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 11:13 AM, Jose Gomez <jose@...> wrote:
This works for me, though you raise a good question ... not sure why you can't do it without config... I am sure there is a work around. I'll poke around some more.

Session  _session = new Session("manager","Autumn1",Session.LicenseType.Default,@"E:\Epicor Installs\E10Fr\Client\config\ERP100600.sysconfig");


Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...
http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 10:55 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <p></p><div style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div><span>When creating a new Session, what is used for the URL? I coped the value from the URL field in the admin console.<br>


I am trying this but get an error saying "Config file missing." What file is it looking for? Thanks in advance.


Session epiSession = new Session("manager", "manager", "net.tcp://E10Svr/Epicor10Test/", Session.LicenseType.Default)


From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>

Sent:
Thursday, June 5, 2014 9:48 AM

Subject: Re: [Vantage] E10 Assemblies C#



Ice.Lib.Framework from the Ice.Core.Session dll


Jose C Gomez

Software Engineer


T: 904.469.1524 mobile

E: jose@...

http://www.josecgomez.com
     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 9:42 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <div style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div><span>Thanks Jose, worked great.</span></div><div style="color:rgb(0,0,0);font-size:10.6667px;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;background-color:transparent;font-style:normal;">


What Namespace/Class is WCFServiceSupport in?



From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:19 AM

Subject: Re: [Vantage] E10 Assemblies C#




      Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...

http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <div>Hi,<br clear="none"><br clear="none">Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br clear="none"><br clear="none">I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br clear="none">


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div style="color:#fff;min-height:0;"></div>





</div>
 


<div style="color:#fff;min-height:0;"></div>





</div><div><div>
 


<div style="color:#fff;min-height:0;"></div>


Hi,

Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.

I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:

JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


      Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...
http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <p>Hi,<br><br>Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br><br>I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br>


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div style="color:#fff;min-height:0;"></div>

Just got this help from Epicor, I don’t have it finished yet though…

 

E9:

Dim objUD05 As New Epicor.Mfg.BO.UD05(MainController.Session.ConnectionPool)

 

E10:

Dim adapterUD05 As UD05Adapter = New UD05Adapter(Me.oTrans)

 

For my case I also needed Assemblies:

 

Ice.Adapters.UD05

Ice.Contracts.BO.UD05

 

Brenda

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Thursday, June 05, 2014 8:21 AM
To: vantage@yahoogroups.com
Subject: [Vantage] E10 Assemblies C#

 

 

Hi,

Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.

I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:

JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted

 

Thanks Jose, worked great.

What Namespace/Class is WCFServiceSupport in?


From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>
To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:19 AM
Subject: Re: [Vantage] E10 Assemblies C#

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503 --

#ygrps-yiv-1845937960yiv2388180503 .ygrps-yiv-1845937960yiv2388180503ygrp-photo-title{
clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503ygrp-photo{
background-position:center;background-repeat:no-repeat;background-color:white;border:1px solid black;height:62px;width:62px;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503photo-title
a,
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503photo-title a:active,
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503photo-title a:hover,
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503attach-table div.ygrps-yiv-1845937960yiv2388180503attach-row {
clear:both;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503attach-table div.ygrps-yiv-1845937960yiv2388180503attach-row div {
float:left;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 p {
clear:both;padding:15px 0 3px 0;overflow:hidden;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503ygrp-file {
width:30px;}
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503attach-table div.ygrps-yiv-1845937960yiv2388180503attach-row div div a {
text-decoration:none;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503attach-table div.ygrps-yiv-1845937960yiv2388180503attach-row div div span {
font-weight:normal;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 div.ygrps-yiv-1845937960yiv2388180503ygrp-file-title {
font-weight:bold;}
#ygrps-yiv-1845937960
#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503
#ygrps-yiv-1845937960yiv2388180503ygrp-mkp {
border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp hr {
border:1px solid #d8d8d8;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp #ygrps-yiv-1845937960yiv2388180503hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp #ygrps-yiv-1845937960yiv2388180503ads {
margin-bottom:10px;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp .ygrps-yiv-1845937960yiv2388180503ad {
padding:0 0;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp .ygrps-yiv-1845937960yiv2388180503ad p {
margin:0;}

#ygrps-yiv-1845937960 #ygrps-yiv-1845937960yiv2388180503 #ygrps-yiv-1845937960yiv2388180503ygrp-mkp .ygrps-yiv-1845937960yiv2388180503ad a {
color:#0000ff;text-decoration:none;}
#ygrps-yiv-1845937960



            Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

 
<div style="" class="ygrps-yiv-1845937960">
  
  
  <div style="" class="ygrps-yiv-1845937960">Hi,<br style="" class="ygrps-yiv-1845937960" clear="none"><br style="" class="ygrps-yiv-1845937960" clear="none">Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br style="" class="ygrps-yiv-1845937960" clear="none"><br style="" class="ygrps-yiv-1845937960" clear="none">I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br style="" class="ygrps-yiv-1845937960" clear="none">


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div class="ygrps-yiv-1845937960" style="color:#fff;min-height:0;"></div>





Ice.Lib.Framework from the Ice.Core.Session dll


Jose C Gomez

Software Engineer


T: 904.469.1524 mobile

E: jose@…

http://www.josecgomez.com
     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 9:42 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <p></p><div style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div><span>Thanks Jose, worked great.</span></div><div style="color:rgb(0,0,0);font-size:10.6667px;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;background-color:transparent;font-style:normal;">


What Namespace/Class is WCFServiceSupport in?



From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:19 AM

Subject: Re: [Vantage] E10 Assemblies C#




      Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...

http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <div>Hi,<br clear="none"><br clear="none">Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br clear="none"><br clear="none">I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br clear="none">


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div style="color:#fff;min-height:0;"></div>





</div>
 


<div style="color:#fff;min-height:0;"></div>

When creating a new Session, what is used for the URL? I coped the value from the URL field in the admin console.

I am trying this but get an error saying "Config file missing." What file is it looking for? Thanks in advance.

Session epiSession = new Session("manager", "manager", "net.tcp://E10Svr/Epicor10Test/", Session.LicenseType.Default)

From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>
To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:48 AM
Subject: Re: [Vantage] E10 Assemblies C#

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261 --

#ygrps-yiv-1833801873yiv7506366261 .ygrps-yiv-1833801873yiv7506366261ygrp-photo-title{
clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261ygrp-photo{
background-position:center;background-repeat:no-repeat;background-color:white;border:1px solid black;height:62px;width:62px;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261photo-title
a,
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261photo-title a:active,
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261photo-title a:hover,
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261attach-table div.ygrps-yiv-1833801873yiv7506366261attach-row {
clear:both;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261attach-table div.ygrps-yiv-1833801873yiv7506366261attach-row div {
float:left;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 p {
clear:both;padding:15px 0 3px 0;overflow:hidden;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261ygrp-file {
width:30px;}
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261attach-table div.ygrps-yiv-1833801873yiv7506366261attach-row div div a {
text-decoration:none;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261attach-table div.ygrps-yiv-1833801873yiv7506366261attach-row div div span {
font-weight:normal;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 div.ygrps-yiv-1833801873yiv7506366261ygrp-file-title {
font-weight:bold;}
#ygrps-yiv-1833801873
#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261
#ygrps-yiv-1833801873yiv7506366261ygrp-mkp {
border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp hr {
border:1px solid #d8d8d8;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp #ygrps-yiv-1833801873yiv7506366261hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp #ygrps-yiv-1833801873yiv7506366261ads {
margin-bottom:10px;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp .ygrps-yiv-1833801873yiv7506366261ad {
padding:0 0;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp .ygrps-yiv-1833801873yiv7506366261ad p {
margin:0;}

#ygrps-yiv-1833801873 #ygrps-yiv-1833801873yiv7506366261 #ygrps-yiv-1833801873yiv7506366261ygrp-mkp .ygrps-yiv-1833801873yiv7506366261ad a {
color:#0000ff;text-decoration:none;}
#ygrps-yiv-1833801873



Ice.Lib.Framework from the Ice.Core.Session dll


Jose C Gomez

Software Engineer


T: 904.469.1524 mobile


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 9:42 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

 
<div style="" class="ygrps-yiv-1833801873">
  
  
  <div class="ygrps-yiv-1833801873" style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div style="" class="ygrps-yiv-1833801873"><span style="" class="ygrps-yiv-1833801873">Thanks Jose, worked great.</span></div><div class="ygrps-yiv-1833801873" style="color:rgb(0,0,0);font-size:10.6667px;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;background-color:transparent;font-style:normal;">


What Namespace/Class is WCFServiceSupport in?



From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:19 AM

Subject: Re: [Vantage] E10 Assemblies C#




            Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

 
<div style="" class="ygrps-yiv-1833801873">
  
  
  <div style="" class="ygrps-yiv-1833801873">Hi,<br style="" class="ygrps-yiv-1833801873" clear="none"><br style="" class="ygrps-yiv-1833801873" clear="none">Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br style="" class="ygrps-yiv-1833801873" clear="none"><br style="" class="ygrps-yiv-1833801873" clear="none">I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br style="" class="ygrps-yiv-1833801873" clear="none">


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div class="ygrps-yiv-1833801873" style="color:#fff;min-height:0;"></div>





</div>
 


<div class="ygrps-yiv-1833801873" style="color:#fff;min-height:0;"></div>





This works for me, though you raise a good question ... not sure why you can't do it without config... I am sure there is a work around. I'll poke around some more.

Session  _session = new Session("manager","Autumn1",Session.LicenseType.Default,@"E:\Epicor Installs\E10Fr\Client\config\ERP100600.sysconfig");


Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...
http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 10:55 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <p></p><div style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div><span>When creating a new Session, what is used for the URL? I coped the value from the URL field in the admin console.<br>


I am trying this but get an error saying "Config file missing." What file is it looking for? Thanks in advance.


Session epiSession = new Session("manager", "manager", "net.tcp://E10Svr/Epicor10Test/", Session.LicenseType.Default)


From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>

Sent:
Thursday, June 5, 2014 9:48 AM

Subject: Re: [Vantage] E10 Assemblies C#



Ice.Lib.Framework from the Ice.Core.Session dll


Jose C Gomez

Software Engineer


T: 904.469.1524 mobile

E: jose@...

http://www.josecgomez.com
     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 9:42 AM, Ted Koch tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <div style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;"><div><span>Thanks Jose, worked great.</span></div><div style="color:rgb(0,0,0);font-size:10.6667px;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;background-color:transparent;font-style:normal;">


What Namespace/Class is WCFServiceSupport in?



From: "Jose Gomez jose@... [vantage]" <vantage@yahoogroups.com>

To: Vantage <vantage@yahoogroups.com>
Sent: Thursday, June 5, 2014 9:19 AM

Subject: Re: [Vantage] E10 Assemblies C#




      Erp.Proxy.BO.JobEntryImpl _job = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath);



Jose C Gomez
Software Engineer



T: 904.469.1524 mobile

E: jose@...

http://www.josecgomez.com

     Â


Quis custodiet ipsos custodes?


On Thu, Jun 5, 2014 at 8:21 AM, tkoch77@... [vantage] <vantage@yahoogroups.com> wrote:

Â
<div>
  
  
  <div>Hi,<br clear="none"><br clear="none">Does anyone have any examples of how to use the new E10 assemblies, they have changed everything around.<br clear="none"><br clear="none">I used to be able to reference the three DLLs to the JobEntry BO for example and then instantiate like this:<br clear="none">


JobEntry _job = new JobEntry(((Session)oTrans.Session).ConnectionPool);

What would be the equivalent in E10?

Thanks!

Ted


</div>
 


<div style="color:#fff;min-height:0;"></div>





</div>
 


<div style="color:#fff;min-height:0;"></div>





</div><div><div class="ygrps-yiv-676951445h5">
 


<div style="color:#fff;min-height:0;"></div>